diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..ef2a030 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "plugin-platform"] + path = plugin-platform + url = https://github.com/pplupo/doublecmd_plugins + branch = plugin-platform diff --git a/build.sh b/build.sh index 78deeb2..4c8597e 100755 --- a/build.sh +++ b/build.sh @@ -72,6 +72,13 @@ install -m 644 wdx/mediainfo/luajit/*.lua release/wdx/mediainfo/ install -m 644 wdx/translitwdx/translitwdx.lua release/wdx/translitwdx/ install -m 644 wdx/translitwdx/readme.txt release/wdx/translitwdx/ +# jsonview +mkdir -p release/wlx/jsonview +make -C wlx/jsonview/src clean all +install -m 644 wlx/jsonview/jsonview_qt6.wlx release/wlx/jsonview/ +cp -r wlx/jsonview/langs release/wlx/jsonview/ +install -m 644 wlx/jsonview/*.md release/wlx/jsonview/ +install -m 644 wlx/jsonview/*.png release/wlx/jsonview/ # logview mkdir -p release/wlx/logview mkdir -p wlx/logview/build diff --git a/plugin-platform b/plugin-platform new file mode 160000 index 0000000..96e6e79 --- /dev/null +++ b/plugin-platform @@ -0,0 +1 @@ +Subproject commit 96e6e79503b829c99124bf3d6023580c6d74ce76 diff --git a/plugman/.gitignore b/plugman/.gitignore new file mode 100644 index 0000000..b6fd779 --- /dev/null +++ b/plugman/.gitignore @@ -0,0 +1,12 @@ +lib/ +backup/ +*.o +*.ppu +*.compiled +*.exe +*.res +plugman +link*.res +*.lps +test/test_core +test/test_core.o diff --git a/plugman/README.md b/plugman/README.md new file mode 100644 index 0000000..9fcd4a3 --- /dev/null +++ b/plugman/README.md @@ -0,0 +1,42 @@ +# Double Commander Plugin Manager + +Standalone Lazarus/Qt6 plugin manager for [Double Commander](https://doublecmd.sourceforge.io/). + +## Features + +- **Install** — extract archives, copy plugin binaries, register in `doublecmd.xml` +- **Uninstall** — remove XML nodes and plugin directories +- **Enable / Disable** — relocate nodes to `` (with JSON reconciliation) +- **Ordering** — reorder plugin priority in XML +- **Tweak** — WCX `` bitmask and WLX/WDX `` editing +- **Updates** — URL binding, HTTP HEAD polling, backup/rollback +- **Restart** — graceful DC shutdown before config writes + +Metadata (URLs, ETags, rollback state) is stored in `~/.config/doublecmd/plugman.json`. + +## Build + +Requirements: Lazarus 3.x / FPC 3.2+, `libQt6Pas`, OpenSSL. + +```bash +cd doublecmd_plugman +lazbuild --build-mode=Release --widgetset=qt6 plugman.lpi +``` + +Run `./plugman`. + +## Configuration + +Settings are stored in `~/.config/doublecmd/plugman.ini`. Override: + +- Config directory (where `doublecmd.xml` lives) +- Commander path / executable +- External editor for plugin `.ini`/`.conf` files + +## JSON schema + +See `default/plugman.json` for the template. + +## Platform + +Primary target: **Linux / Qt6 / Wayland**. diff --git a/plugman/default/plugman.json b/plugman/default/plugman.json new file mode 100644 index 0000000..c2e6ffb --- /dev/null +++ b/plugman/default/plugman.json @@ -0,0 +1,5 @@ +{ + "schema_version": 1, + "last_updated": "2026-06-16T00:00:00Z", + "plugins": [] +} diff --git a/plugman/plugman.lpi b/plugman/plugman.lpi new file mode 100644 index 0000000..2ab45b1 --- /dev/null +++ b/plugman/plugman.lpi @@ -0,0 +1,178 @@ + + + + + + + + + + + + + <Scaled Value="True"/> + <ResourceType Value="res"/> + </General> + <BuildModes Count="2"> + <Item1 Name="Debug" Default="True"/> + <Item2 Name="Release"> + <CompilerOptions> + <Version Value="11"/> + <Target> + <Filename Value="plugman"/> + </Target> + <SearchPaths> + <OtherUnitFiles Value="src;src/core;src/ops;src/update;src/ui"/> + <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)-$(LCLWidgetType)"/> + </SearchPaths> + <CodeGeneration> + <SmartLinkUnit Value="True"/> + <Optimizations> + <OptimizationLevel Value="3"/> + </Optimizations> + </CodeGeneration> + <Linking> + <Debugging> + <GenerateDebugInfo Value="False"/> + </Debugging> + </Linking> + <LCLWidgetType Value="qt6"/> + </CompilerOptions> + </Item2> + </BuildModes> + <RequiredPackages Count="1"> + <Item1> + <PackageName Value="LCL"/> + </Item1> + </RequiredPackages> + <Units Count="21"> + <Unit0> + <Filename Value="plugman.lpr"/> + <IsPartOfProject Value="True"/> + </Unit0> + <Unit1> + <Filename Value="src/uMainForm.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="frmMain"/> + <HasResources Value="True"/> + <ResourceBaseClass Value="Form"/> + <UnitName Value="uMainForm"/> + </Unit1> + <Unit2> + <Filename Value="src/core/uPluginTypes.pas"/> + <IsPartOfProject Value="True"/> + </Unit2> + <Unit3> + <Filename Value="src/core/uDcPaths.pas"/> + <IsPartOfProject Value="True"/> + </Unit3> + <Unit4> + <Filename Value="src/core/uPlugmanJson.pas"/> + <IsPartOfProject Value="True"/> + </Unit4> + <Unit5> + <Filename Value="src/core/uDcXml.pas"/> + <IsPartOfProject Value="True"/> + </Unit5> + <Unit6> + <Filename Value="src/core/uPluginScanner.pas"/> + <IsPartOfProject Value="True"/> + </Unit6> + <Unit7> + <Filename Value="src/ops/uDcRestart.pas"/> + <IsPartOfProject Value="True"/> + </Unit7> + <Unit8> + <Filename Value="src/ops/uPluginInstall.pas"/> + <IsPartOfProject Value="True"/> + </Unit8> + <Unit9> + <Filename Value="src/ops/uPluginUninstall.pas"/> + <IsPartOfProject Value="True"/> + </Unit9> + <Unit10> + <Filename Value="src/ops/uPluginEnable.pas"/> + <IsPartOfProject Value="True"/> + </Unit10> + <Unit11> + <Filename Value="src/ops/uPluginOrder.pas"/> + <IsPartOfProject Value="True"/> + </Unit11> + <Unit12> + <Filename Value="src/ops/uPluginTweak.pas"/> + <IsPartOfProject Value="True"/> + </Unit12> + <Unit13> + <Filename Value="src/update/uHttpCheck.pas"/> + <IsPartOfProject Value="True"/> + </Unit13> + <Unit14> + <Filename Value="src/update/uPluginUpdate.pas"/> + <IsPartOfProject Value="True"/> + </Unit14> + <Unit15> + <Filename Value="src/update/uPluginRollback.pas"/> + <IsPartOfProject Value="True"/> + </Unit15> + <Unit16> + <Filename Value="src/ui/fTweakPacker.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="frmTweakPacker"/> + <HasResources Value="True"/> + <ResourceBaseClass Value="Form"/> + </Unit16> + <Unit17> + <Filename Value="src/ui/fTweakLister.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="frmTweakLister"/> + <HasResources Value="True"/> + <ResourceBaseClass Value="Form"/> + </Unit17> + <Unit18> + <Filename Value="src/ui/fUpdateConfirm.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="frmUpdateConfirm"/> + <HasResources Value="True"/> + <ResourceBaseClass Value="Form"/> + </Unit18> + <Unit19> + <Filename Value="src/ui/fUrlBind.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="frmUrlBind"/> + <HasResources Value="True"/> + <ResourceBaseClass Value="Form"/> + </Unit19> + <Unit20> + <Filename Value="src/ui/fSettings.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="frmSettings"/> + <HasResources Value="True"/> + <ResourceBaseClass Value="Form"/> + </Unit20> + </Units> + </ProjectOptions> + <CompilerOptions> + <Version Value="11"/> + <Target> + <Filename Value="plugman"/> + </Target> + <SearchPaths> + <OtherUnitFiles Value="src;src/core;src/ops;src/update;src/ui"/> + <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)-$(LCLWidgetType)"/> + </SearchPaths> + <Parsing> + <SyntaxOptions> + <SyntaxMode Value="Delphi"/> + <AllowNestedProcVars Value="True"/> + </SyntaxOptions> + </Parsing> + <CodeGeneration> + <TargetCPU Value="x86_64"/> + <TargetOS Value="linux"/> + </CodeGeneration> + <LCLWidgetType Value="qt6"/> + </CompilerOptions> + <Debugging> + <IncludeSystemVars Value="True"/> + </Debugging> +</CONFIG> diff --git a/plugman/plugman.lpr b/plugman/plugman.lpr new file mode 100644 index 0000000..a05c796 --- /dev/null +++ b/plugman/plugman.lpr @@ -0,0 +1,20 @@ +program plugman; + +{$mode objfpc}{$H+} + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + {$ENDIF}{$ENDIF} + Interfaces, + Forms, + uMainForm; + +begin + RequireDerivedFormResource := True; + Application.Scaled := True; + Application.Title := 'Double Commander Plugin Manager'; + Application.Initialize; + Application.CreateForm(TfrmMain, frmMain); + Application.Run; +end. diff --git a/plugman/src/core/uDcPaths.pas b/plugman/src/core/uDcPaths.pas new file mode 100644 index 0000000..1876faf --- /dev/null +++ b/plugman/src/core/uDcPaths.pas @@ -0,0 +1,233 @@ +unit uDcPaths; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, uPluginTypes; + +type + TDcPaths = class + private + FConfigDir: string; + FCommanderPath: string; + FCommanderExe: string; + FEditorCommand: string; + FAutoCheckUpdates: Boolean; + procedure DetectPaths; + function ResolveCommanderExe: string; + public + constructor Create; + procedure LoadSettings(const SettingsFile: string); + procedure SaveSettings(const SettingsFile: string); + function DoubleCmdXmlPath: string; + function PlugmanJsonPath: string; + function PlugmanSettingsPath: string; + function PluginsBaseDir: string; + function PluginDirForType(APluginType: TPluginType): string; + function ExpandDcPath(const Path: string): string; + function MakeDcRelativePath(const AbsPath: string): string; + function MakePluginRelativeDir(const AbsDir: string): string; + function GetResolvedCommanderExe: string; + property ConfigDir: string read FConfigDir write FConfigDir; + property CommanderPath: string read FCommanderPath write FCommanderPath; + property CommanderExe: string read FCommanderExe write FCommanderExe; + property EditorCommand: string read FEditorCommand write FEditorCommand; + property AutoCheckUpdates: Boolean read FAutoCheckUpdates write FAutoCheckUpdates; + end; + +var + DcPaths: TDcPaths; + +implementation + +uses + LazFileUtils, IniFiles, Process; + +const + COMMANDER_PATH_VAR = '%COMMANDER_PATH%'; + +function GetEnvValue(const Name: string): string; +begin + Result := GetEnvironmentVariable(Name); +end; + +function RunWhich(const ExeName: string): string; +var + P: TProcess; + SL: TStringList; +begin + Result := ''; + P := TProcess.Create(nil); + SL := TStringList.Create; + try + P.Executable := '/usr/bin/which'; + P.Parameters.Add(ExeName); + P.Options := [poUsePipes, poWaitOnExit, poNoConsole]; + P.ShowWindow := swoHide; + P.Execute; + SL.LoadFromStream(P.Output); + if SL.Count > 0 then + Result := Trim(SL[0]); + finally + SL.Free; + P.Free; + end; +end; + +function TDcPaths.ResolveCommanderExe: string; +var + EnvPath: string; +begin + if FCommanderExe <> '' then + Exit(ExpandFileName(FCommanderExe)); + EnvPath := RunWhich('doublecmd'); + if EnvPath <> '' then + Exit(EnvPath); + Result := ''; +end; + +procedure TDcPaths.DetectPaths; +var + XdgConfig: string; +begin + XdgConfig := GetEnvValue('XDG_CONFIG_HOME'); + if XdgConfig = '' then + XdgConfig := IncludeTrailingPathDelimiter(GetEnvValue('HOME')) + '.config'; + if FConfigDir = '' then + FConfigDir := IncludeTrailingPathDelimiter(XdgConfig) + 'doublecmd' + PathDelim; + + if FCommanderPath = '' then + begin + FCommanderPath := GetEnvValue('COMMANDER_PATH'); + if FCommanderPath = '' then + begin + FCommanderExe := ResolveCommanderExe; + if FCommanderExe <> '' then + FCommanderPath := ExcludeTrailingPathDelimiter(ExtractFilePath(FCommanderExe)); + end; + end; + + if FEditorCommand = '' then + begin + FEditorCommand := GetEnvValue('EDITOR'); + if FEditorCommand = '' then + FEditorCommand := 'xdg-open'; + end; +end; + +constructor TDcPaths.Create; +begin + inherited Create; + FAutoCheckUpdates := False; + DetectPaths; +end; + +procedure TDcPaths.LoadSettings(const SettingsFile: string); +var + Ini: TIniFile; +begin + if not FileExists(SettingsFile) then Exit; + Ini := TIniFile.Create(SettingsFile); + try + FConfigDir := Ini.ReadString('Paths', 'ConfigDir', FConfigDir); + FCommanderPath := Ini.ReadString('Paths', 'CommanderPath', FCommanderPath); + FCommanderExe := Ini.ReadString('Paths', 'CommanderExe', FCommanderExe); + FEditorCommand := Ini.ReadString('General', 'EditorCommand', FEditorCommand); + FAutoCheckUpdates := Ini.ReadBool('General', 'AutoCheckUpdates', FAutoCheckUpdates); + finally + Ini.Free; + end; + DetectPaths; +end; + +procedure TDcPaths.SaveSettings(const SettingsFile: string); +var + Ini: TIniFile; +begin + ForceDirectories(ExtractFilePath(SettingsFile)); + Ini := TIniFile.Create(SettingsFile); + try + Ini.WriteString('Paths', 'ConfigDir', FConfigDir); + Ini.WriteString('Paths', 'CommanderPath', FCommanderPath); + Ini.WriteString('Paths', 'CommanderExe', FCommanderExe); + Ini.WriteString('General', 'EditorCommand', FEditorCommand); + Ini.WriteBool('General', 'AutoCheckUpdates', FAutoCheckUpdates); + finally + Ini.Free; + end; +end; + +function TDcPaths.DoubleCmdXmlPath: string; +begin + Result := IncludeTrailingPathDelimiter(FConfigDir) + 'doublecmd.xml'; +end; + +function TDcPaths.PlugmanJsonPath: string; +begin + Result := IncludeTrailingPathDelimiter(FConfigDir) + 'plugman.json'; +end; + +function TDcPaths.PlugmanSettingsPath: string; +begin + Result := IncludeTrailingPathDelimiter(FConfigDir) + 'plugman.ini'; +end; + +function TDcPaths.PluginsBaseDir: string; +begin + Result := IncludeTrailingPathDelimiter(FCommanderPath) + 'plugins' + PathDelim; +end; + +function TDcPaths.PluginDirForType(APluginType: TPluginType): string; +begin + Result := PluginsBaseDir + PluginTypeToString(APluginType) + PathDelim; +end; + +function TDcPaths.ExpandDcPath(const Path: string): string; +var + S: string; +begin + S := StringReplace(Path, '$COMMANDER_PATH', FCommanderPath, + [rfReplaceAll, rfIgnoreCase]); + S := StringReplace(S, '%COMMANDER_PATH%', FCommanderPath, + [rfReplaceAll, rfIgnoreCase]); + Result := ExpandFileName(S); +end; + +function TDcPaths.MakeDcRelativePath(const AbsPath: string): string; +var + NormAbs, NormBase: string; +begin + NormAbs := ExpandFileName(AbsPath); + NormBase := ExcludeTrailingPathDelimiter(FCommanderPath); + if CompareText(Copy(NormAbs, 1, Length(NormBase)), NormBase) = 0 then + Result := COMMANDER_PATH_VAR + Copy(NormAbs, Length(NormBase) + 1, MaxInt) + else + Result := NormAbs; +end; + +function TDcPaths.GetResolvedCommanderExe: string; +begin + Result := ResolveCommanderExe; +end; + +function TDcPaths.MakePluginRelativeDir(const AbsDir: string): string; +var + NormAbs, NormBase: string; +begin + NormAbs := IncludeTrailingPathDelimiter(ExpandFileName(AbsDir)); + NormBase := PluginsBaseDir; + if CompareText(Copy(NormAbs, 1, Length(NormBase)), NormBase) = 0 then + Result := Copy(NormAbs, Length(NormBase) + 1, MaxInt) + else + Result := ExtractRelativePath(NormBase, NormAbs); +end; + +initialization + DcPaths := TDcPaths.Create; + +finalization + DcPaths.Free; + +end. diff --git a/plugman/src/core/uDcXml.pas b/plugman/src/core/uDcXml.pas new file mode 100644 index 0000000..074e7bf --- /dev/null +++ b/plugman/src/core/uDcXml.pas @@ -0,0 +1,704 @@ +unit uDcXml; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, DOM, XMLRead, XMLWrite, uPluginTypes; + +type + TPluginXmlEntry = record + PluginType: TPluginType; + Node: TDOMNode; + ParentNode: TDOMNode; + Index: Integer; + Enabled: Boolean; + Name: string; + Path: string; + DetectString: string; + ArchiveExt: string; + Flags: Integer; + IsDisabled: Boolean; + OriginalCategory: string; + end; + + TPluginXmlEntryArray = array of TPluginXmlEntry; + + TDcXmlDocument = class + private + FDoc: TXMLDocument; + FPluginsNode: TDOMNode; + function GetOrCreatePluginsRoot: TDOMNode; + function GetOrCreateSection(APluginType: TPluginType): TDOMNode; + function GetOrCreateDisabledSection: TDOMNode; + function FindChildValue(ANode: TDOMNode; const AName: string): string; + function FindChildInt(ANode: TDOMNode; const AName: string; ADefault: Integer): Integer; + procedure SetChildValue(ANode: TDOMNode; const AName, AValue: string); + procedure SetChildInt(ANode: TDOMNode; const AName: string; AValue: Integer); + function GetAttrBool(ANode: TDOMNode; const AName: string; ADefault: Boolean): Boolean; + procedure SetAttrBool(ANode: TDOMNode; const AName: string; AValue: Boolean); + procedure FillEntry(var Entry: TPluginXmlEntry; ANode: TDOMNode; + APluginType: TPluginType; AParent: TDOMNode; AIndex: Integer; + IsDisabled: Boolean); + public + constructor Create; + destructor Destroy; override; + procedure LoadFromFile(const Path: string); + procedure SaveToFile(const Path: string); + function EnumerateActive(APluginType: TPluginType): TPluginXmlEntryArray; + function EnumerateDisabled: TPluginXmlEntryArray; + function EnumerateAllActive: TPluginXmlEntryArray; + function FindByPath(APluginType: TPluginType; const Path: string): TPluginXmlEntry; + function FindDisabledByPath(const Path: string): TPluginXmlEntry; + function EntryValid(const Entry: TPluginXmlEntry): Boolean; + procedure AppendWlx(const Name, Path, DetectString: string; Enabled: Boolean); + procedure AppendWcx(const ArchiveExt, Path: string; Flags: Integer; Enabled: Boolean); + procedure AppendWdx(const Name, Path, DetectString: string); + procedure AppendWfx(const Name, Path: string; Enabled: Boolean); + procedure RemoveNode(var Entry: TPluginXmlEntry); + procedure MoveNode(var Entry: TPluginXmlEntry; NewIndex: Integer); + procedure DisableNode(var Entry: TPluginXmlEntry); + procedure EnableNode(var Entry: TPluginXmlEntry); + function SerializeNode(ANode: TDOMNode): string; + procedure RestoreDisabledFromSerialized(const SerializedXml, OriginalCategory: string); + procedure RemoveNodesByPathPrefix(const PathPrefix: string); + procedure UpdateWcxFlags(const Path: string; ArchiveExt: string; Flags: Integer); + procedure UpdateWcxExtensions(const Path: string; Extensions: TStrings; Flags: array of Integer); + procedure UpdateDetectString(APluginType: TPluginType; const Path, DetectString: string); + procedure UpdateName(APluginType: TPluginType; const Path, Name: string); + property Document: TXMLDocument read FDoc; + end; + +function LoadDcXml(const Path: string): TDcXmlDocument; + +implementation + +uses + uDcPaths; + +function NodeIndexAmongSameTag(ANode: TDOMNode): Integer; +var + Cur: TDOMNode; +begin + Result := 0; + Cur := ANode.PreviousSibling; + while Cur <> nil do + begin + if (Cur.NodeType = ELEMENT_NODE) and + SameText(Cur.NodeName, ANode.NodeName) then + Inc(Result); + Cur := Cur.PreviousSibling; + end; +end; + +function LoadDcXml(const Path: string): TDcXmlDocument; +begin + Result := TDcXmlDocument.Create; + Result.LoadFromFile(Path); +end; + +constructor TDcXmlDocument.Create; +begin + inherited Create; + FDoc := TXMLDocument.Create; +end; + +destructor TDcXmlDocument.Destroy; +begin + FDoc.Free; + inherited Destroy; +end; + +function TDcXmlDocument.GetOrCreatePluginsRoot: TDOMNode; +var + Root: TDOMNode; +begin + Root := FDoc.DocumentElement; + if Root = nil then + begin + Root := FDoc.CreateElement('DoubleCommander'); + FDoc.AppendChild(Root); + end; + FPluginsNode := Root.FindNode('Plugins'); + if FPluginsNode = nil then + begin + FPluginsNode := FDoc.CreateElement('Plugins'); + Root.AppendChild(FPluginsNode); + end; + Result := FPluginsNode; +end; + +function TDcXmlDocument.GetOrCreateSection(APluginType: TPluginType): TDOMNode; +var + SecName: string; +begin + GetOrCreatePluginsRoot; + SecName := PluginSectionForType(APluginType); + Result := FPluginsNode.FindNode(SecName); + if Result = nil then + begin + Result := FDoc.CreateElement(SecName); + FPluginsNode.AppendChild(Result); + end; +end; + +function TDcXmlDocument.GetOrCreateDisabledSection: TDOMNode; +begin + GetOrCreatePluginsRoot; + Result := FPluginsNode.FindNode('DisabledPlugins'); + if Result = nil then + begin + Result := FDoc.CreateElement('DisabledPlugins'); + FPluginsNode.AppendChild(Result); + end; +end; + +function TDcXmlDocument.FindChildValue(ANode: TDOMNode; const AName: string): string; +var + N: TDOMNode; +begin + Result := ''; + N := ANode.FindNode(AName); + if (N <> nil) and (N.FirstChild <> nil) then + Result := N.TextContent; +end; + +function TDcXmlDocument.FindChildInt(ANode: TDOMNode; const AName: string; + ADefault: Integer): Integer; +var + S: string; +begin + S := FindChildValue(ANode, AName); + if S = '' then + Exit(ADefault); + Result := StrToIntDef(S, ADefault); +end; + +procedure TDcXmlDocument.SetChildValue(ANode: TDOMNode; const AName, AValue: string); +var + N: TDOMNode; +begin + N := ANode.FindNode(AName); + if N = nil then + begin + N := FDoc.CreateElement(AName); + ANode.AppendChild(N); + end; + N.TextContent := AValue; +end; + +procedure TDcXmlDocument.SetChildInt(ANode: TDOMNode; const AName: string; AValue: Integer); +begin + SetChildValue(ANode, AName, IntToStr(AValue)); +end; + +function TDcXmlDocument.GetAttrBool(ANode: TDOMNode; const AName: string; + ADefault: Boolean): Boolean; +var + Attr: TDOMNode; +begin + if ANode.Attributes <> nil then + begin + Attr := ANode.Attributes.GetNamedItem(AName); + if Attr <> nil then + Exit(SameText(Attr.NodeValue, 'true') or (Attr.NodeValue = '1')); + end; + Result := ADefault; +end; + +procedure TDcXmlDocument.SetAttrBool(ANode: TDOMNode; const AName: string; AValue: Boolean); +begin + if not (ANode is TDOMElement) then Exit; + if AValue then + TDOMElement(ANode).SetAttribute(AName, 'True') + else + TDOMElement(ANode).SetAttribute(AName, 'False'); +end; + +procedure TDcXmlDocument.FillEntry(var Entry: TPluginXmlEntry; ANode: TDOMNode; + APluginType: TPluginType; AParent: TDOMNode; AIndex: Integer; IsDisabled: Boolean); +begin + Entry.PluginType := APluginType; + Entry.Node := ANode; + Entry.ParentNode := AParent; + Entry.Index := AIndex; + Entry.IsDisabled := IsDisabled; + Entry.OriginalCategory := ''; + Entry.Name := ''; + Entry.Path := ''; + Entry.DetectString := ''; + Entry.ArchiveExt := ''; + Entry.Flags := 0; + Entry.Enabled := True; + if IsDisabled then + begin + if ANode is TDOMElement then + Entry.OriginalCategory := TDOMElement(ANode).GetAttribute('OriginalCategory'); + end; + case APluginType of + ptWLX: + begin + Entry.Enabled := GetAttrBool(ANode, 'Enabled', True); + Entry.Name := FindChildValue(ANode, 'Name'); + Entry.Path := FindChildValue(ANode, 'Path'); + Entry.DetectString := FindChildValue(ANode, 'DetectString'); + end; + ptWCX: + begin + Entry.Enabled := GetAttrBool(ANode, 'Enabled', True); + Entry.ArchiveExt := FindChildValue(ANode, 'ArchiveExt'); + Entry.Path := FindChildValue(ANode, 'Path'); + Entry.Flags := FindChildInt(ANode, 'Flags', 0); + Entry.Name := ExtractFileName(Entry.Path); + end; + ptWDX: + begin + Entry.Name := FindChildValue(ANode, 'Name'); + Entry.Path := FindChildValue(ANode, 'Path'); + Entry.DetectString := FindChildValue(ANode, 'DetectString'); + end; + ptWFX: + begin + Entry.Enabled := GetAttrBool(ANode, 'Enabled', True); + Entry.Name := FindChildValue(ANode, 'Name'); + Entry.Path := FindChildValue(ANode, 'Path'); + end; + end; +end; + +procedure TDcXmlDocument.LoadFromFile(const Path: string); +begin + if FileExists(Path) then + ReadXMLFile(FDoc, Path) + else + begin + FDoc.Free; + FDoc := TXMLDocument.Create; + GetOrCreatePluginsRoot; + end; +end; + +procedure TDcXmlDocument.SaveToFile(const Path: string); +var + TmpPath: string; +begin + ForceDirectories(ExtractFilePath(Path)); + TmpPath := Path + '.tmp'; + WriteXMLFile(FDoc, TmpPath); + if FileExists(Path) then + DeleteFile(Path); + RenameFile(TmpPath, Path); +end; + +function TDcXmlDocument.EnumerateActive(APluginType: TPluginType): TPluginXmlEntryArray; +var + Sec, N: TDOMNode; + Entry: TPluginXmlEntry; + Idx: Integer; +begin + Result := nil; + GetOrCreatePluginsRoot; + Sec := FPluginsNode.FindNode(PluginSectionForType(APluginType)); + if Sec = nil then Exit; + N := Sec.FirstChild; + Idx := 0; + while N <> nil do + begin + if (N.NodeType = ELEMENT_NODE) and + SameText(N.NodeName, PluginNodeForType(APluginType)) then + begin + FillEntry(Entry, N, APluginType, Sec, Idx, False); + SetLength(Result, Length(Result) + 1); + Result[High(Result)] := Entry; + Inc(Idx); + end; + N := N.NextSibling; + end; +end; + +function TDcXmlDocument.EnumerateDisabled: TPluginXmlEntryArray; +var + Sec, N: TDOMNode; + Entry: TPluginXmlEntry; + Cat: string; + Pt: TPluginType; + Idx: Integer; +begin + Result := nil; + GetOrCreatePluginsRoot; + Sec := FPluginsNode.FindNode('DisabledPlugins'); + if Sec = nil then Exit; + N := Sec.FirstChild; + Idx := 0; + while N <> nil do + begin + if N.NodeType = ELEMENT_NODE then + begin + Cat := ''; + if N is TDOMElement then + Cat := TDOMElement(N).GetAttribute('OriginalCategory'); + for Pt := Low(TPluginType) to High(TPluginType) do + if SameText(Cat, PluginSectionForType(Pt)) or + SameText(N.NodeName, PluginNodeForType(Pt)) then + begin + FillEntry(Entry, N, Pt, Sec, Idx, True); + if Entry.OriginalCategory = '' then + Entry.OriginalCategory := Cat; + SetLength(Result, Length(Result) + 1); + Result[High(Result)] := Entry; + Inc(Idx); + Break; + end; + end; + N := N.NextSibling; + end; +end; + +function TDcXmlDocument.EnumerateAllActive: TPluginXmlEntryArray; +var + Pt: TPluginType; + Part: TPluginXmlEntryArray; + I: Integer; +begin + Result := nil; + for Pt := Low(TPluginType) to High(TPluginType) do + begin + Part := EnumerateActive(Pt); + for I := 0 to High(Part) do + begin + SetLength(Result, Length(Result) + 1); + Result[High(Result)] := Part[I]; + end; + end; +end; + +function TDcXmlDocument.EntryValid(const Entry: TPluginXmlEntry): Boolean; +begin + Result := Entry.Node <> nil; +end; + +function TDcXmlDocument.FindByPath(APluginType: TPluginType; const Path: string): TPluginXmlEntry; +var + Entries: TPluginXmlEntryArray; + I: Integer; + Expanded, EPath: string; +begin + FillChar(Result, SizeOf(Result), 0); + Expanded := DcPaths.ExpandDcPath(Path); + Entries := EnumerateActive(APluginType); + for I := 0 to High(Entries) do + begin + EPath := DcPaths.ExpandDcPath(Entries[I].Path); + if SameText(EPath, Expanded) or SameText(Entries[I].Path, Path) then + Exit(Entries[I]); + end; +end; + +function TDcXmlDocument.FindDisabledByPath(const Path: string): TPluginXmlEntry; +var + Entries: TPluginXmlEntryArray; + I: Integer; + Expanded, EPath: string; +begin + FillChar(Result, SizeOf(Result), 0); + Expanded := DcPaths.ExpandDcPath(Path); + Entries := EnumerateDisabled; + for I := 0 to High(Entries) do + begin + EPath := DcPaths.ExpandDcPath(Entries[I].Path); + if SameText(EPath, Expanded) or SameText(Entries[I].Path, Path) then + Exit(Entries[I]); + end; +end; + +procedure TDcXmlDocument.AppendWlx(const Name, Path, DetectString: string; Enabled: Boolean); +var + Sec, N: TDOMNode; +begin + Sec := GetOrCreateSection(ptWLX); + N := FDoc.CreateElement('WlxPlugin'); + SetAttrBool(N, 'Enabled', Enabled); + SetChildValue(N, 'Name', Name); + SetChildValue(N, 'Path', Path); + SetChildValue(N, 'DetectString', DetectString); + Sec.AppendChild(N); +end; + +procedure TDcXmlDocument.AppendWcx(const ArchiveExt, Path: string; Flags: Integer; + Enabled: Boolean); +var + Sec, N: TDOMNode; +begin + Sec := GetOrCreateSection(ptWCX); + N := FDoc.CreateElement('WcxPlugin'); + SetAttrBool(N, 'Enabled', Enabled); + SetChildValue(N, 'ArchiveExt', ArchiveExt); + SetChildValue(N, 'Path', Path); + SetChildInt(N, 'Flags', Flags); + Sec.AppendChild(N); +end; + +procedure TDcXmlDocument.AppendWdx(const Name, Path, DetectString: string); +var + Sec, N: TDOMNode; +begin + Sec := GetOrCreateSection(ptWDX); + N := FDoc.CreateElement('WdxPlugin'); + SetChildValue(N, 'Name', Name); + SetChildValue(N, 'Path', Path); + SetChildValue(N, 'DetectString', DetectString); + Sec.AppendChild(N); +end; + +procedure TDcXmlDocument.AppendWfx(const Name, Path: string; Enabled: Boolean); +var + Sec, N: TDOMNode; +begin + Sec := GetOrCreateSection(ptWFX); + N := FDoc.CreateElement('WfxPlugin'); + SetAttrBool(N, 'Enabled', Enabled); + SetChildValue(N, 'Name', Name); + SetChildValue(N, 'Path', Path); + Sec.AppendChild(N); +end; + +procedure TDcXmlDocument.RemoveNode(var Entry: TPluginXmlEntry); +begin + if Entry.Node = nil then Exit; + Entry.ParentNode.RemoveChild(Entry.Node); + Entry.Node := nil; +end; + +procedure TDcXmlDocument.MoveNode(var Entry: TPluginXmlEntry; NewIndex: Integer); +var + Sec, Ref: TDOMNode; + CurIdx: Integer; +begin + if Entry.Node = nil then Exit; + Sec := Entry.ParentNode; + CurIdx := NodeIndexAmongSameTag(Entry.Node); + if CurIdx = NewIndex then Exit; + Sec.RemoveChild(Entry.Node); + Ref := Sec.FirstChild; + while (Ref <> nil) and (NewIndex > 0) do + begin + if (Ref.NodeType = ELEMENT_NODE) and + SameText(Ref.NodeName, Entry.Node.NodeName) then + begin + Dec(NewIndex); + if NewIndex = 0 then Break; + end; + Ref := Ref.NextSibling; + end; + if Ref <> nil then + Sec.InsertBefore(Entry.Node, Ref) + else + Sec.AppendChild(Entry.Node); + Entry.Index := NodeIndexAmongSameTag(Entry.Node); +end; + +function TDcXmlDocument.SerializeNode(ANode: TDOMNode): string; +var + Doc: TXMLDocument; + SS: TStringStream; +begin + Result := ''; + if ANode = nil then Exit; + Doc := TXMLDocument.Create; + SS := TStringStream.Create(''); + try + Doc.AppendChild(Doc.ImportNode(ANode, True)); + WriteXMLFile(Doc, SS); + Result := SS.DataString; + finally + SS.Free; + Doc.Free; + end; +end; + +procedure TDcXmlDocument.DisableNode(var Entry: TPluginXmlEntry); +var + DisabledSec, Clone: TDOMNode; + XmlText: string; +begin + if Entry.Node = nil then Exit; + DisabledSec := GetOrCreateDisabledSection; + Clone := Entry.Node.CloneNode(True); + if Clone is TDOMElement then + TDOMElement(Clone).SetAttribute('OriginalCategory', PluginSectionForType(Entry.PluginType)); + DisabledSec.AppendChild(Clone); + RemoveNode(Entry); + Entry.IsDisabled := True; + Entry.OriginalCategory := PluginSectionForType(Entry.PluginType); + XmlText := SerializeNode(Clone); + Entry.Node := Clone; + Entry.ParentNode := DisabledSec; +end; + +procedure TDcXmlDocument.EnableNode(var Entry: TPluginXmlEntry); +var + ActiveSec, Clone: TDOMNode; + Cat: string; + Pt: TPluginType; +begin + if Entry.Node = nil then Exit; + Cat := Entry.OriginalCategory; + if Cat = '' then + begin + if Entry.Node is TDOMElement then + Cat := TDOMElement(Entry.Node).GetAttribute('OriginalCategory'); + end; + Pt := Entry.PluginType; + if Cat <> '' then + begin + for Pt := Low(TPluginType) to High(TPluginType) do + if SameText(Cat, PluginSectionForType(Pt)) then Break; + end; + ActiveSec := GetOrCreateSection(Pt); + Clone := Entry.Node.CloneNode(True); + if Clone is TDOMElement then + TDOMElement(Clone).RemoveAttribute('OriginalCategory'); + ActiveSec.AppendChild(Clone); + RemoveNode(Entry); + Entry.IsDisabled := False; + Entry.Node := Clone; + Entry.ParentNode := ActiveSec; + Entry.PluginType := Pt; +end; + +procedure TDcXmlDocument.RestoreDisabledFromSerialized(const SerializedXml, + OriginalCategory: string); +var + Parser: TXMLDocument; + N, DisabledSec: TDOMNode; + SS: TStringStream; +begin + if SerializedXml = '' then Exit; + Parser := TXMLDocument.Create; + SS := TStringStream.Create(SerializedXml); + try + ReadXMLFragment(Parser, SS); + if Parser.DocumentElement <> nil then + begin + DisabledSec := GetOrCreateDisabledSection; + N := Parser.DocumentElement.CloneNode(True); + if N is TDOMElement then + TDOMElement(N).SetAttribute('OriginalCategory', OriginalCategory); + DisabledSec.AppendChild(N); + end; + finally + SS.Free; + Parser.Free; + end; +end; + +procedure TDcXmlDocument.RemoveNodesByPathPrefix(const PathPrefix: string); +var + All: TPluginXmlEntryArray; + I: Integer; + EPath, Prefix: string; + E: TPluginXmlEntry; +begin + Prefix := DcPaths.ExpandDcPath(PathPrefix); + All := EnumerateAllActive; + for I := 0 to High(All) do + begin + EPath := DcPaths.ExpandDcPath(All[I].Path); + if (Pos(Prefix, EPath) = 1) or SameText(EPath, Prefix) then + begin + E := All[I]; + RemoveNode(E); + end; + end; + All := EnumerateDisabled; + for I := 0 to High(All) do + begin + EPath := DcPaths.ExpandDcPath(All[I].Path); + if Pos(Prefix, EPath) = 1 then + begin + E := All[I]; + RemoveNode(E); + end; + end; +end; + +procedure TDcXmlDocument.UpdateWcxFlags(const Path: string; ArchiveExt: string; + Flags: Integer); +var + Entries: TPluginXmlEntryArray; + I: Integer; +begin + Entries := EnumerateActive(ptWCX); + for I := 0 to High(Entries) do + if SameText(DcPaths.ExpandDcPath(Entries[I].Path), DcPaths.ExpandDcPath(Path)) and + SameText(Entries[I].ArchiveExt, ArchiveExt) then + SetChildInt(Entries[I].Node, 'Flags', Flags); +end; + +procedure TDcXmlDocument.UpdateWcxExtensions(const Path: string; Extensions: TStrings; Flags: array of Integer); +var + Entries: TPluginXmlEntryArray; + I, J: Integer; + Sec: TDOMNode; + Found: Boolean; + ExpandedTarget: string; + ExtStr: string; +begin + ExpandedTarget := DcPaths.ExpandDcPath(Path); + Entries := EnumerateActive(ptWCX); + Sec := GetOrCreateSection(ptWCX); + + for I := 0 to High(Entries) do + begin + if SameText(DcPaths.ExpandDcPath(Entries[I].Path), ExpandedTarget) then + begin + Found := False; + for J := 0 to Extensions.Count - 1 do + begin + if SameText(Entries[I].ArchiveExt, Extensions[J]) then + begin + SetChildInt(Entries[I].Node, 'Flags', Flags[J]); + Found := True; + Extensions[J] := ''; + Break; + end; + end; + + if not Found then + RemoveNode(Entries[I]); + end; + end; + + for J := 0 to Extensions.Count - 1 do + begin + ExtStr := Trim(Extensions[J]); + if ExtStr <> '' then + AppendWcx(ExtStr, Path, Flags[J], True); + end; +end; + +procedure TDcXmlDocument.UpdateDetectString(APluginType: TPluginType; + const Path, DetectString: string); +var + Entries: TPluginXmlEntryArray; + I: Integer; +begin + Entries := EnumerateActive(APluginType); + for I := 0 to High(Entries) do + if SameText(DcPaths.ExpandDcPath(Entries[I].Path), DcPaths.ExpandDcPath(Path)) then + SetChildValue(Entries[I].Node, 'DetectString', DetectString); +end; + +procedure TDcXmlDocument.UpdateName(APluginType: TPluginType; const Path, Name: string); +var + Entries: TPluginXmlEntryArray; + I: Integer; +begin + Entries := EnumerateActive(APluginType); + for I := 0 to High(Entries) do + if SameText(DcPaths.ExpandDcPath(Entries[I].Path), DcPaths.ExpandDcPath(Path)) then + SetChildValue(Entries[I].Node, 'Name', Name); +end; + +end. diff --git a/plugman/src/core/uPluginScanner.pas b/plugman/src/core/uPluginScanner.pas new file mode 100644 index 0000000..aa17d0d --- /dev/null +++ b/plugman/src/core/uPluginScanner.pas @@ -0,0 +1,234 @@ +unit uPluginScanner; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, uPluginTypes; + +type + TBinaryType = (btUnknown, btElf32, btElf64, btPe32, btPe64); + + TScannedPlugin = record + PluginType: TPluginType; + FilePath: string; + SuggestedName: string; + SuggestedDetectString: string; + Valid: Boolean; + end; + + TScannedPluginArray = array of TScannedPlugin; + + TPluginScanner = class + public + class function GetPluginBinaryType(const FileName: string): TBinaryType; + class function IsValidPluginBinary(const FileName: string): Boolean; + class function DetectPluginType(const FileName: string): TPluginType; + class function ExtractArchive(const ArchivePath, DestDir: string): Boolean; + class function ScanDirectory(const Dir: string): TScannedPluginArray; + class function ScanArchive(const ArchivePath: string; + out ExtractDir: string): TScannedPluginArray; + class function SuggestDetectString(const FileName: string): string; + end; + +implementation + +uses + Process, LazFileUtils; + +{$IFDEF CPU64} +const + TargetBinary: TBinaryType = btElf64; +{$ELSE} +const + TargetBinary: TBinaryType = btElf32; +{$ENDIF} + +class function TPluginScanner.GetPluginBinaryType(const FileName: string): TBinaryType; +var + FS: TFileStream; + W: Word; + D: DWord; + B: Byte; +begin + Result := btUnknown; + if not FileExists(FileName) then Exit; + FS := TFileStream.Create(FileName, fmOpenRead or fmShareDenyNone); + try + if FS.Size < 4 then Exit; + FS.Read(W, SizeOf(W)); + if W = $5A4D then + begin + FS.Seek(60, soBeginning); + FS.Read(D, SizeOf(D)); + FS.Seek(D, soBeginning); + FS.Read(D, SizeOf(D)); + if D = $4550 then + begin + FS.Seek(20, soCurrent); + FS.Read(W, SizeOf(W)); + case W of + $10B: Exit(btPe32); + $20B: Exit(btPe64); + end; + end; + end; + FS.Seek(0, soBeginning); + FS.Read(D, SizeOf(D)); + if D = $464C457F then + begin + FS.Read(B, SizeOf(B)); + case B of + 1: Exit(btElf32); + 2: Exit(btElf64); + end; + end; + finally + FS.Free; + end; +end; + +class function TPluginScanner.IsValidPluginBinary(const FileName: string): Boolean; +begin + Result := GetPluginBinaryType(FileName) = TargetBinary; +end; + +class function TPluginScanner.DetectPluginType(const FileName: string): TPluginType; +var + Ext: string; +begin + Ext := LowerCase(ExtractFileExt(FileName)); + if (Ext = '.wcx') or (Ext = '.wcx64') then Exit(ptWCX); + if (Ext = '.wdx') or (Ext = '.wdx64') then Exit(ptWDX); + if (Ext = '.wfx') or (Ext = '.wfx64') then Exit(ptWFX); + if (Ext = '.wlx') or (Ext = '.wlx64') then Exit(ptWLX); + if (Ext = '.so') then + begin + if Pos('wlx', LowerCase(FileName)) > 0 then Exit(ptWLX); + if Pos('wcx', LowerCase(FileName)) > 0 then Exit(ptWCX); + if Pos('wdx', LowerCase(FileName)) > 0 then Exit(ptWDX); + if Pos('wfx', LowerCase(FileName)) > 0 then Exit(ptWFX); + end; + raise Exception.CreateFmt('Unknown plugin extension: %s', [FileName]); +end; + +class function TPluginScanner.SuggestDetectString(const FileName: string): string; +var + Base, Ext: string; +begin + Base := ExtractFileName(FileName); + Ext := UpperCase(ExtractFileExt(Base)); + if Ext <> '' then + Delete(Ext, 1, 1); + if Ext <> '' then + Result := 'EXT="' + Ext + '"' + else + Result := ''; +end; + +class function TPluginScanner.ExtractArchive(const ArchivePath, DestDir: string): Boolean; +var + Ext: string; + P: TProcess; +begin + Result := False; + ForceDirectories(DestDir); + Ext := LowerCase(ExtractFileExt(ArchivePath)); + if Ext = '.zip' then + begin + P := TProcess.Create(nil); + try + P.Executable := '/usr/bin/unzip'; + P.Parameters.Add('-o'); + P.Parameters.Add(ArchivePath); + P.Parameters.Add('-d'); + P.Parameters.Add(DestDir); + P.Options := [poWaitOnExit, poNoConsole]; + P.ShowWindow := swoHide; + P.Execute; + Result := P.ExitStatus = 0; + finally + P.Free; + end; + Exit; + end; + if (Ext = '.gz') or (Ext = '.tgz') or (Ext = '.tar') or + (Copy(LowerCase(ArchivePath), Length(ArchivePath) - 6, 7) = '.tar.gz') then + begin + P := TProcess.Create(nil); + try + P.Executable := '/bin/tar'; + P.Parameters.Add('-xf'); + P.Parameters.Add(ArchivePath); + P.Parameters.Add('-C'); + P.Parameters.Add(DestDir); + P.Options := [poWaitOnExit, poNoConsole]; + P.ShowWindow := swoHide; + P.Execute; + Result := P.ExitStatus = 0; + finally + P.Free; + end; + Exit; + end; + raise Exception.CreateFmt('Unsupported archive format: %s', [ArchivePath]); +end; + +class function TPluginScanner.ScanDirectory(const Dir: string): TScannedPluginArray; + + procedure ScanFile(const AFile: string); + var + Item: TScannedPlugin; + Pt: TPluginType; + begin + try + Pt := DetectPluginType(AFile); + except + Exit; + end; + Item.PluginType := Pt; + Item.FilePath := AFile; + Item.SuggestedName := ExtractFileNameWithoutExt(AFile); + Item.SuggestedDetectString := SuggestDetectString(AFile); + Item.Valid := IsValidPluginBinary(AFile); + SetLength(Result, Length(Result) + 1); + Result[High(Result)] := Item; + end; + + procedure Walk(const BaseDir: string); + var + SR: TSearchRec; + Path: string; + begin + if FindFirst(IncludeTrailingPathDelimiter(BaseDir) + '*', faAnyFile, SR) = 0 then + try + repeat + if (SR.Name = '.') or (SR.Name = '..') then Continue; + Path := IncludeTrailingPathDelimiter(BaseDir) + SR.Name; + if (SR.Attr and faDirectory) <> 0 then + Walk(Path) + else + ScanFile(Path); + until FindNext(SR) <> 0; + finally + FindClose(SR); + end; + end; + +begin + Result := nil; + Walk(Dir); +end; + +class function TPluginScanner.ScanArchive(const ArchivePath: string; + out ExtractDir: string): TScannedPluginArray; +begin + ExtractDir := IncludeTrailingPathDelimiter(GetTempDir) + + 'plugman_' + IntToStr(GetProcessID) + PathDelim; + if not ExtractArchive(ArchivePath, ExtractDir) then + raise Exception.Create('Failed to extract archive.'); + Result := ScanDirectory(ExtractDir); +end; + +end. diff --git a/plugman/src/core/uPluginTypes.pas b/plugman/src/core/uPluginTypes.pas new file mode 100644 index 0000000..9917dc4 --- /dev/null +++ b/plugman/src/core/uPluginTypes.pas @@ -0,0 +1,87 @@ +unit uPluginTypes; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils; + +type + TPluginType = (ptWCX, ptWDX, ptWFX, ptWLX); + +const + PluginTypeNames: array[TPluginType] of string = ('wcx', 'wdx', 'wfx', 'wlx'); + PluginSectionNames: array[TPluginType] of string = + ('WcxPlugins', 'WdxPlugins', 'WfxPlugins', 'WlxPlugins'); + PluginNodeNames: array[TPluginType] of string = + ('WcxPlugin', 'WdxPlugin', 'WfxPlugin', 'WlxPlugin'); + + WcxMask = '*.wcx;*.wcx64'; + WdxMask = '*.wdx;*.wdx64'; + WfxMask = '*.wfx;*.wfx64'; + WlxMask = '*.wlx;*.wlx64'; + + { WCX capability flags (from WcxPlugin SDK) } + PK_CAPS_NEW = 1; + PK_CAPS_MODIFY = 2; + PK_CAPS_MULTIPLE = 4; + PK_CAPS_DELETE = 8; + PK_CAPS_OPTIONS = 16; + PK_CAPS_MEMPACK = 32; + PK_CAPS_BY_CONTENT = 64; + PK_CAPS_SEARCHTEXT = 128; + PK_CAPS_HIDE = 256; + PK_CAPS_ENCRYPT = 512; + + PK_CAP_NAMES: array[0..9] of record + Flag: Integer; + Name: string; + end = ( + (Flag: PK_CAPS_NEW; Name: 'Create new archives'), + (Flag: PK_CAPS_MODIFY; Name: 'Modify existing archives'), + (Flag: PK_CAPS_MULTIPLE; Name: 'Multiple files per archive'), + (Flag: PK_CAPS_DELETE; Name: 'Delete files'), + (Flag: PK_CAPS_OPTIONS; Name: 'Options dialog'), + (Flag: PK_CAPS_MEMPACK; Name: 'Pack in memory'), + (Flag: PK_CAPS_BY_CONTENT; Name: 'Detect by content'), + (Flag: PK_CAPS_SEARCHTEXT; Name: 'Search text in archives'), + (Flag: PK_CAPS_HIDE; Name: 'Hide packer icon'), + (Flag: PK_CAPS_ENCRYPT; Name: 'Encryption support') + ); + +function PluginTypeFromString(const S: string): TPluginType; +function PluginTypeToString(APluginType: TPluginType): string; +function PluginSectionForType(APluginType: TPluginType): string; +function PluginNodeForType(APluginType: TPluginType): string; + +implementation + +function PluginTypeFromString(const S: string): TPluginType; +var + L: string; +begin + L := LowerCase(S); + if L = 'wcx' then Exit(ptWCX); + if L = 'wdx' then Exit(ptWDX); + if L = 'wfx' then Exit(ptWFX); + if L = 'wlx' then Exit(ptWLX); + raise Exception.CreateFmt('Unknown plugin type: %s', [S]); +end; + +function PluginTypeToString(APluginType: TPluginType): string; +begin + Result := PluginTypeNames[APluginType]; +end; + +function PluginSectionForType(APluginType: TPluginType): string; +begin + Result := PluginSectionNames[APluginType]; +end; + +function PluginNodeForType(APluginType: TPluginType): string; +begin + Result := PluginNodeNames[APluginType]; +end; + +end. diff --git a/plugman/src/core/uPlugmanJson.pas b/plugman/src/core/uPlugmanJson.pas new file mode 100644 index 0000000..13a7b51 --- /dev/null +++ b/plugman/src/core/uPlugmanJson.pas @@ -0,0 +1,475 @@ +unit uPlugmanJson; + +{$mode objfpc}{$H+} +{$modeswitch advancedrecords} + +interface + +uses + Classes, SysUtils, Contnrs, fpjson, jsonparser, uPluginTypes; + +type + THttpCapabilities = record + SupportsHead: Boolean; + ProvidesEtag: Boolean; + ProvidesModified: Boolean; + procedure Clear; + procedure LoadFromJson(AObj: TJSONObject); + procedure SaveToJson(AObj: TJSONObject); + end; + + TStateTracking = record + ETag: string; + LastModified: string; + LocalSize: Int64; + LastChecked: TDateTime; + procedure Clear; + procedure LoadFromJson(AObj: TJSONObject); + procedure SaveToJson(AObj: TJSONObject); + end; + + TRollbackState = record + BackupExists: Boolean; + BackupFilename: string; + BackupTimestamp: TDateTime; + procedure Clear; + procedure LoadFromJson(AObj: TJSONObject); + procedure SaveToJson(AObj: TJSONObject); + end; + + TManagerState = record + Enabled: Boolean; + DisabledCategory: string; + DisabledNodeXml: string; + procedure Clear; + procedure LoadFromJson(AObj: TJSONObject); + procedure SaveToJson(AObj: TJSONObject); + end; + + TPluginRecord = class + public + Id: string; + Name: string; + PluginType: TPluginType; + Filename: string; + RelativeDir: string; + SourceUrl: string; + HttpCaps: THttpCapabilities; + State: TStateTracking; + Rollback: TRollbackState; + ManagerState: TManagerState; + procedure LoadFromJson(AObj: TJSONObject); + procedure SaveToJson(AObj: TJSONObject); + end; + + TPlugmanStore = class + private + FSchemaVersion: Integer; + FLastUpdated: TDateTime; + FPlugins: TObjectList; + public + constructor Create; + destructor Destroy; override; + procedure Clear; + procedure LoadFromFile(const Path: string); + procedure SaveToFile(const Path: string); + function FindById(const Id: string): TPluginRecord; + function FindByRelativeDir(const Dir: string): TPluginRecord; + function FindByFilename(const AName: string): TPluginRecord; + function CreateEntry(const AName: string; APluginType: TPluginType; + const AFilename, ARelativeDir: string): TPluginRecord; + function Add(ARecord: TPluginRecord): Integer; + procedure Remove(ARecord: TPluginRecord); + function GetPlugin(Index: Integer): TPluginRecord; + function GetCount: Integer; + property SchemaVersion: Integer read FSchemaVersion write FSchemaVersion; + property LastUpdated: TDateTime read FLastUpdated write FLastUpdated; + end; + +function NewGuidString: string; +function DateTimeToIso8601Utc(ADateTime: TDateTime): string; +function Iso8601ToDateTime(const S: string): TDateTime; + +var + PlugmanStore: TPlugmanStore; + +implementation + +uses + DateUtils, uuid; + +function NewGuidString: string; +var + G: TGUID; +begin + CreateGUID(G); + Result := LowerCase(GUIDToString(G)); + Result := StringReplace(Result, '{', '', [rfReplaceAll]); + Result := StringReplace(Result, '}', '', [rfReplaceAll]); +end; + +function DateTimeToIso8601Utc(ADateTime: TDateTime): string; +begin + Result := FormatDateTime('yyyy-mm-dd"T"hh:nn:ss"Z"', ADateTime); +end; + +function Iso8601ToDateTime(const S: string): TDateTime; +var + T: string; +begin + if S = '' then + Exit(0); + T := S; + if (Length(T) > 0) and (T[Length(T)] = 'Z') then + Delete(T, Length(T), 1); + Result := ISO8601ToDate(T, False); + if Result = 0 then + Result := StrToDateTimeDef(S, 0); +end; + +{ THttpCapabilities } + +procedure THttpCapabilities.Clear; +begin + SupportsHead := True; + ProvidesEtag := False; + ProvidesModified := False; +end; + +procedure THttpCapabilities.LoadFromJson(AObj: TJSONObject); +begin + Clear; + if AObj = nil then Exit; + SupportsHead := AObj.Get('supports_head', True); + ProvidesEtag := AObj.Get('provides_etag', False); + ProvidesModified := AObj.Get('provides_modified', False); +end; + +procedure THttpCapabilities.SaveToJson(AObj: TJSONObject); +begin + AObj.Add('supports_head', SupportsHead); + AObj.Add('provides_etag', ProvidesEtag); + AObj.Add('provides_modified', ProvidesModified); +end; + +{ TStateTracking } + +procedure TStateTracking.Clear; +begin + ETag := ''; + LastModified := ''; + LocalSize := 0; + LastChecked := 0; +end; + +procedure TStateTracking.LoadFromJson(AObj: TJSONObject); +begin + Clear; + if AObj = nil then Exit; + ETag := AObj.Get('etag', ''); + LastModified := AObj.Get('last_modified', ''); + LocalSize := AObj.Get('local_size', Int64(0)); + LastChecked := Iso8601ToDateTime(AObj.Get('last_checked', '')); +end; + +procedure TStateTracking.SaveToJson(AObj: TJSONObject); +begin + AObj.Add('etag', ETag); + AObj.Add('last_modified', LastModified); + AObj.Add('local_size', LocalSize); + if LastChecked <> 0 then + AObj.Add('last_checked', DateTimeToIso8601Utc(LastChecked)); +end; + +{ TRollbackState } + +procedure TRollbackState.Clear; +begin + BackupExists := False; + BackupFilename := ''; + BackupTimestamp := 0; +end; + +procedure TRollbackState.LoadFromJson(AObj: TJSONObject); +begin + Clear; + if AObj = nil then Exit; + BackupExists := AObj.Get('backup_exists', False); + BackupFilename := AObj.Get('backup_filename', ''); + BackupTimestamp := Iso8601ToDateTime(AObj.Get('backup_timestamp', '')); +end; + +procedure TRollbackState.SaveToJson(AObj: TJSONObject); +begin + AObj.Add('backup_exists', BackupExists); + AObj.Add('backup_filename', BackupFilename); + if BackupTimestamp <> 0 then + AObj.Add('backup_timestamp', DateTimeToIso8601Utc(BackupTimestamp)); +end; + +{ TManagerState } + +procedure TManagerState.Clear; +begin + Enabled := True; + DisabledCategory := ''; + DisabledNodeXml := ''; +end; + +procedure TManagerState.LoadFromJson(AObj: TJSONObject); +begin + Clear; + if AObj = nil then Exit; + Enabled := AObj.Get('enabled', True); + DisabledCategory := AObj.Get('disabled_category', ''); + DisabledNodeXml := AObj.Get('disabled_node_xml', ''); +end; + +procedure TManagerState.SaveToJson(AObj: TJSONObject); +begin + AObj.Add('enabled', Enabled); + if DisabledCategory <> '' then + AObj.Add('disabled_category', DisabledCategory); + if DisabledNodeXml <> '' then + AObj.Add('disabled_node_xml', DisabledNodeXml); +end; + +{ TPluginRecord } + +procedure TPluginRecord.LoadFromJson(AObj: TJSONObject); +var + SrcObj, StateObj, RollbackObj, MgrObj: TJSONObject; +begin + Id := AObj.Get('id', ''); + Name := AObj.Get('name', ''); + PluginType := PluginTypeFromString(AObj.Get('type', 'wlx')); + Filename := AObj.Get('filename', ''); + RelativeDir := AObj.Get('relative_dir', ''); + SourceUrl := ''; + HttpCaps.Clear; + State.Clear; + Rollback.Clear; + ManagerState.Clear; + SrcObj := AObj.Find('source') as TJSONObject; + if SrcObj <> nil then + begin + SourceUrl := SrcObj.Get('url', ''); + HttpCaps.LoadFromJson(SrcObj.Find('http_capabilities') as TJSONObject); + end; + StateObj := AObj.Find('state_tracking') as TJSONObject; + if StateObj <> nil then + State.LoadFromJson(StateObj); + RollbackObj := AObj.Find('rollback') as TJSONObject; + if RollbackObj <> nil then + Rollback.LoadFromJson(RollbackObj); + MgrObj := AObj.Find('manager_state') as TJSONObject; + if MgrObj <> nil then + ManagerState.LoadFromJson(MgrObj); +end; + +procedure TPluginRecord.SaveToJson(AObj: TJSONObject); +var + SrcObj, CapsObj, StateObj, RollbackObj, MgrObj: TJSONObject; +begin + AObj.Add('id', Id); + AObj.Add('name', Name); + AObj.Add('type', PluginTypeToString(PluginType)); + AObj.Add('filename', Filename); + AObj.Add('relative_dir', RelativeDir); + SrcObj := TJSONObject.Create; + SrcObj.Add('url', SourceUrl); + CapsObj := TJSONObject.Create; + HttpCaps.SaveToJson(CapsObj); + SrcObj.Add('http_capabilities', CapsObj); + AObj.Add('source', SrcObj); + StateObj := TJSONObject.Create; + State.SaveToJson(StateObj); + AObj.Add('state_tracking', StateObj); + RollbackObj := TJSONObject.Create; + Rollback.SaveToJson(RollbackObj); + AObj.Add('rollback', RollbackObj); + if not ManagerState.Enabled or (ManagerState.DisabledNodeXml <> '') then + begin + MgrObj := TJSONObject.Create; + ManagerState.SaveToJson(MgrObj); + AObj.Add('manager_state', MgrObj); + end; +end; + +{ TPlugmanStore } + +constructor TPlugmanStore.Create; +begin + inherited Create; + FSchemaVersion := 1; + FPlugins := TObjectList.Create(True); +end; + +destructor TPlugmanStore.Destroy; +begin + FPlugins.Free; + inherited Destroy; +end; + +procedure TPlugmanStore.Clear; +begin + FPlugins.Clear; + FSchemaVersion := 1; + FLastUpdated := 0; +end; + +procedure TPlugmanStore.LoadFromFile(const Path: string); +var + Parser: TJSONParser; + Root, Arr, Item: TJSONData; + I: Integer; + Rec: TPluginRecord; + JsonText: string; +begin + Clear; + if not FileExists(Path) then Exit; + with TStringList.Create do + try + LoadFromFile(Path); + JsonText := Text; + finally + Free; + end; + Parser := TJSONParser.Create(JsonText); + try + Root := Parser.Parse; + if not (Root is TJSONObject) then Exit; + FSchemaVersion := TJSONObject(Root).Get('schema_version', 1); + FLastUpdated := Iso8601ToDateTime(TJSONObject(Root).Get('last_updated', '')); + Arr := TJSONObject(Root).Find('plugins'); + if Arr is TJSONArray then + for I := 0 to TJSONArray(Arr).Count - 1 do + begin + Item := TJSONArray(Arr).Items[I]; + if Item is TJSONObject then + begin + Rec := TPluginRecord.Create; + Rec.LoadFromJson(TJSONObject(Item)); + FPlugins.Add(Rec); + end; + end; + finally + Parser.Free; + end; +end; + +procedure TPlugmanStore.SaveToFile(const Path: string); +var + Root, Arr: TJSONData; + I: Integer; + ItemObj: TJSONObject; + Text: string; + TmpPath: string; +begin + FLastUpdated := Now; + Root := TJSONObject.Create; + try + TJSONObject(Root).Add('schema_version', FSchemaVersion); + TJSONObject(Root).Add('last_updated', DateTimeToIso8601Utc(FLastUpdated)); + Arr := TJSONArray.Create; + for I := 0 to FPlugins.Count - 1 do + begin + ItemObj := TJSONObject.Create; + GetPlugin(I).SaveToJson(ItemObj); + TJSONArray(Arr).Add(ItemObj); + end; + TJSONObject(Root).Add('plugins', Arr); + Text := Root.AsJSON; + finally + Root.Free; + end; + ForceDirectories(ExtractFilePath(Path)); + TmpPath := Path + '.tmp'; + with TStringList.Create do + try + Text := Text; + Add(Text); + SaveToFile(TmpPath); + finally + Free; + end; + if FileExists(Path) then + DeleteFile(Path); + RenameFile(TmpPath, Path); +end; + +function TPlugmanStore.FindById(const Id: string): TPluginRecord; +var + I: Integer; +begin + Result := nil; + for I := 0 to FPlugins.Count - 1 do + if SameText(GetPlugin(I).Id, Id) then + Exit(GetPlugin(I)); +end; + +function TPlugmanStore.FindByRelativeDir(const Dir: string): TPluginRecord; +var + I: Integer; + D: string; +begin + Result := nil; + D := IncludeTrailingPathDelimiter(Dir); + for I := 0 to FPlugins.Count - 1 do + if SameText(IncludeTrailingPathDelimiter(GetPlugin(I).RelativeDir), D) then + Exit(GetPlugin(I)); +end; + +function TPlugmanStore.FindByFilename(const AName: string): TPluginRecord; +var + I: Integer; +begin + Result := nil; + for I := 0 to FPlugins.Count - 1 do + if SameText(GetPlugin(I).Filename, AName) then + Exit(GetPlugin(I)); +end; + +function TPlugmanStore.CreateEntry(const AName: string; APluginType: TPluginType; + const AFilename, ARelativeDir: string): TPluginRecord; +begin + Result := TPluginRecord.Create; + Result.Id := NewGuidString; + Result.Name := AName; + Result.PluginType := APluginType; + Result.Filename := AFilename; + Result.RelativeDir := IncludeTrailingPathDelimiter(ARelativeDir); + Result.HttpCaps.Clear; + Result.State.Clear; + Result.Rollback.Clear; + Result.ManagerState.Clear; + FPlugins.Add(Result); +end; + +function TPlugmanStore.Add(ARecord: TPluginRecord): Integer; +begin + Result := FPlugins.Add(ARecord); +end; + +procedure TPlugmanStore.Remove(ARecord: TPluginRecord); +begin + FPlugins.Remove(ARecord); +end; + +function TPlugmanStore.GetPlugin(Index: Integer): TPluginRecord; +begin + Result := TPluginRecord(FPlugins[Index]); +end; + +function TPlugmanStore.GetCount: Integer; +begin + Result := FPlugins.Count; +end; + +initialization + PlugmanStore := TPlugmanStore.Create; + +finalization + PlugmanStore.Free; + +end. diff --git a/plugman/src/ops/uDcRestart.pas b/plugman/src/ops/uDcRestart.pas new file mode 100644 index 0000000..5713184 --- /dev/null +++ b/plugman/src/ops/uDcRestart.pas @@ -0,0 +1,150 @@ +unit uDcRestart; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils; + +type + TRestartWork = class + public + procedure Execute; virtual; abstract; + end; + +procedure WithDcRestart(Work: TRestartWork; RelaunchAfter: Boolean = True); +function IsDoubleCmdRunning: Boolean; +function GetDoubleCmdPid: Integer; +function TerminateDoubleCmd: Boolean; +procedure LaunchDoubleCmd; + +implementation + +uses + Process, uDcPaths; + +function RunPgrep: string; +var + P: TProcess; + SL: TStringList; +begin + Result := ''; + P := TProcess.Create(nil); + SL := TStringList.Create; + try + P.Executable := '/usr/bin/pgrep'; + P.Parameters.Add('-x'); + P.Parameters.Add('doublecmd'); + P.Options := [poUsePipes, poWaitOnExit, poNoConsole]; + P.ShowWindow := swoHide; + P.Execute; + if P.ExitStatus = 0 then + begin + SL.LoadFromStream(P.Output); + if SL.Count > 0 then + Result := Trim(SL[0]); + end; + finally + SL.Free; + P.Free; + end; +end; + +function IsDoubleCmdRunning: Boolean; +begin + Result := RunPgrep <> ''; +end; + +function GetDoubleCmdPid: Integer; +begin + Result := StrToIntDef(RunPgrep, 0); +end; + +function SendSignal(Pid: Integer; Sig: Integer): Boolean; +var + P: TProcess; +begin + Result := False; + if Pid <= 0 then Exit; + P := TProcess.Create(nil); + try + P.Executable := '/bin/kill'; + P.Parameters.Add('-' + IntToStr(Sig)); + P.Parameters.Add(IntToStr(Pid)); + P.Options := [poWaitOnExit, poNoConsole]; + P.ShowWindow := swoHide; + P.Execute; + Result := P.ExitStatus = 0; + finally + P.Free; + end; +end; + +function TerminateDoubleCmd: Boolean; +var + Pid, WaitMs: Integer; +begin + Result := True; + Pid := GetDoubleCmdPid; + if Pid <= 0 then Exit; + SendSignal(Pid, 15); + WaitMs := 0; + while IsDoubleCmdRunning and (WaitMs < 10000) do + begin + Sleep(200); + Inc(WaitMs, 200); + end; + if IsDoubleCmdRunning then + begin + Pid := GetDoubleCmdPid; + SendSignal(Pid, 9); + Sleep(500); + end; + Result := not IsDoubleCmdRunning; +end; + +procedure LaunchDoubleCmd; +var + P: TProcess; + Exe: string; +begin + Exe := DcPaths.CommanderExe; + if Exe = '' then + Exe := DcPaths.GetResolvedCommanderExe; + if Exe = '' then Exit; + P := TProcess.Create(nil); + try + P.Executable := Exe; + P.Options := [poNoConsole]; + P.Execute; + finally + P.Free; + end; +end; + +procedure WithDcRestart(Work: TRestartWork; RelaunchAfter: Boolean); +var + WasRunning: Boolean; +begin + WasRunning := IsDoubleCmdRunning; + if WasRunning then + begin + if not TerminateDoubleCmd then + raise Exception.Create('Double Commander did not terminate. Operation aborted.'); + end; + try + Work.Execute; + except + on E: Exception do + begin + if WasRunning and RelaunchAfter then + LaunchDoubleCmd; + raise; + end; + end; + if WasRunning and RelaunchAfter then + LaunchDoubleCmd; +end; + +end. diff --git a/plugman/src/ops/uPluginEnable.pas b/plugman/src/ops/uPluginEnable.pas new file mode 100644 index 0000000..1d7c80c --- /dev/null +++ b/plugman/src/ops/uPluginEnable.pas @@ -0,0 +1,201 @@ +unit uPluginEnable; + +{$mode objfpc}{$H+} + +interface + +uses + SysUtils, uPluginTypes, uPlugmanJson, uDcXml; + +procedure DisablePlugin(ARecord: TPluginRecord; var Entry: TPluginXmlEntry); +procedure EnablePlugin(ARecord: TPluginRecord; var Entry: TPluginXmlEntry); +procedure ReconcileDisabledPlugins; + +implementation + +uses + uDcPaths, uDcRestart; + +type + TDisableWork = class(TRestartWork) + private + FRecord: TPluginRecord; + FEntry: TPluginXmlEntry; + FSerialized: string; + public + constructor Create(ARecord: TPluginRecord; var Entry: TPluginXmlEntry); + procedure Execute; override; + property Serialized: string read FSerialized; + property UpdatedEntry: TPluginXmlEntry read FEntry write FEntry; + end; + + TEnableWork = class(TRestartWork) + private + FRecord: TPluginRecord; + FEntry: TPluginXmlEntry; + public + constructor Create(ARecord: TPluginRecord; var Entry: TPluginXmlEntry); + procedure Execute; override; + property UpdatedEntry: TPluginXmlEntry read FEntry write FEntry; + end; + + TReconcileWork = class(TRestartWork) + public + procedure Execute; override; + end; + +constructor TDisableWork.Create(ARecord: TPluginRecord; var Entry: TPluginXmlEntry); +begin + inherited Create; + FRecord := ARecord; + FEntry := Entry; +end; + +procedure TDisableWork.Execute; +var + XmlDoc: TDcXmlDocument; + Entry: TPluginXmlEntry; +begin + Entry := FEntry; + XmlDoc := TDcXmlDocument.Create; + try + XmlDoc.LoadFromFile(DcPaths.DoubleCmdXmlPath); + if not XmlDoc.EntryValid(Entry) then + begin + Entry := XmlDoc.FindByPath(FRecord.PluginType, + '%COMMANDER_PATH%/plugins/' + FRecord.RelativeDir + FRecord.Filename); + end; + if not XmlDoc.EntryValid(Entry) then + raise Exception.Create('Plugin XML node not found.'); + FSerialized := XmlDoc.SerializeNode(Entry.Node); + XmlDoc.DisableNode(Entry); + XmlDoc.SaveToFile(DcPaths.DoubleCmdXmlPath); + FEntry := Entry; + finally + XmlDoc.Free; + end; +end; + +constructor TEnableWork.Create(ARecord: TPluginRecord; var Entry: TPluginXmlEntry); +begin + inherited Create; + FRecord := ARecord; + FEntry := Entry; +end; + +procedure TEnableWork.Execute; +var + XmlDoc: TDcXmlDocument; + Entry: TPluginXmlEntry; +begin + Entry := FEntry; + XmlDoc := TDcXmlDocument.Create; + try + XmlDoc.LoadFromFile(DcPaths.DoubleCmdXmlPath); + if not XmlDoc.EntryValid(Entry) then + Entry := XmlDoc.FindDisabledByPath( + '%COMMANDER_PATH%/plugins/' + FRecord.RelativeDir + FRecord.Filename); + if not XmlDoc.EntryValid(Entry) then + raise Exception.Create('Disabled plugin XML node not found.'); + XmlDoc.EnableNode(Entry); + XmlDoc.SaveToFile(DcPaths.DoubleCmdXmlPath); + FEntry := Entry; + finally + XmlDoc.Free; + end; +end; + +procedure TReconcileWork.Execute; +var + I: Integer; + Rec: TPluginRecord; + XmlDoc: TDcXmlDocument; + Entry: TPluginXmlEntry; +begin + XmlDoc := TDcXmlDocument.Create; + try + XmlDoc.LoadFromFile(DcPaths.DoubleCmdXmlPath); + for I := 0 to PlugmanStore.GetCount - 1 do + begin + Rec := PlugmanStore.GetPlugin(I); + if Rec.ManagerState.Enabled then Continue; + Entry := XmlDoc.FindDisabledByPath( + '%COMMANDER_PATH%/plugins/' + Rec.RelativeDir + Rec.Filename); + if not XmlDoc.EntryValid(Entry) then + begin + Entry := XmlDoc.FindByPath(Rec.PluginType, + '%COMMANDER_PATH%/plugins/' + Rec.RelativeDir + Rec.Filename); + if XmlDoc.EntryValid(Entry) then + begin + XmlDoc.DisableNode(Entry); + Rec.ManagerState.DisabledNodeXml := XmlDoc.SerializeNode(Entry.Node); + end + else if Rec.ManagerState.DisabledNodeXml <> '' then + XmlDoc.RestoreDisabledFromSerialized(Rec.ManagerState.DisabledNodeXml, + Rec.ManagerState.DisabledCategory); + end; + end; + XmlDoc.SaveToFile(DcPaths.DoubleCmdXmlPath); + finally + XmlDoc.Free; + end; +end; + +procedure DisablePlugin(ARecord: TPluginRecord; var Entry: TPluginXmlEntry); +var + Work: TDisableWork; +begin + Work := TDisableWork.Create(ARecord, Entry); + try + WithDcRestart(Work); + Entry := Work.UpdatedEntry; + if ARecord <> nil then + begin + ARecord.ManagerState.Enabled := False; + ARecord.ManagerState.DisabledCategory := + PluginSectionForType(ARecord.PluginType); + ARecord.ManagerState.DisabledNodeXml := Work.Serialized; + end; + finally + Work.Free; + end; + if ARecord <> nil then + PlugmanStore.SaveToFile(DcPaths.PlugmanJsonPath); +end; + +procedure EnablePlugin(ARecord: TPluginRecord; var Entry: TPluginXmlEntry); +var + Work: TEnableWork; +begin + Work := TEnableWork.Create(ARecord, Entry); + try + WithDcRestart(Work); + Entry := Work.UpdatedEntry; + if ARecord <> nil then + begin + ARecord.ManagerState.Enabled := True; + ARecord.ManagerState.DisabledCategory := ''; + ARecord.ManagerState.DisabledNodeXml := ''; + end; + finally + Work.Free; + end; + if ARecord <> nil then + PlugmanStore.SaveToFile(DcPaths.PlugmanJsonPath); +end; + +procedure ReconcileDisabledPlugins; +var + Work: TReconcileWork; +begin + if PlugmanStore.GetCount = 0 then Exit; + if not FileExists(DcPaths.DoubleCmdXmlPath) then Exit; + Work := TReconcileWork.Create; + try + WithDcRestart(Work, False); + finally + Work.Free; + end; +end; + +end. diff --git a/plugman/src/ops/uPluginInstall.pas b/plugman/src/ops/uPluginInstall.pas new file mode 100644 index 0000000..b836a36 --- /dev/null +++ b/plugman/src/ops/uPluginInstall.pas @@ -0,0 +1,163 @@ +unit uPluginInstall; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, uPluginTypes, uPlugmanJson, uDcXml, uPluginScanner; + +type + TInstallRequest = record + ArchivePath: string; + SourceUrl: string; + SelectedIndex: Integer; + WcxExtensions: string; + end; + +function InstallPluginFromArchive(const Request: TInstallRequest): TPluginRecord; +procedure CopyTree(const SourceDir, DestDir: string); + +implementation + +uses + LazFileUtils, FileUtil, uDcPaths, uDcRestart, uHttpCheck; + +type + TInstallWork = class(TRestartWork) + private + FItem: TScannedPlugin; + FPluginName: string; + FDcPath: string; + FWcxExtensions: string; + public + constructor Create(const AItem: TScannedPlugin; const APluginName, ADcPath, + AWcxExtensions: string); + procedure Execute; override; + end; + +constructor TInstallWork.Create(const AItem: TScannedPlugin; const APluginName, + ADcPath, AWcxExtensions: string); +begin + inherited Create; + FItem := AItem; + FPluginName := APluginName; + FDcPath := ADcPath; + FWcxExtensions := AWcxExtensions; +end; + +procedure TInstallWork.Execute; +var + XmlDoc: TDcXmlDocument; + ExtItem: string; +begin + XmlDoc := TDcXmlDocument.Create; + try + XmlDoc.LoadFromFile(DcPaths.DoubleCmdXmlPath); + case FItem.PluginType of + ptWLX: + XmlDoc.AppendWlx(FPluginName, FDcPath, FItem.SuggestedDetectString, True); + ptWDX: + XmlDoc.AppendWdx(FPluginName, FDcPath, FItem.SuggestedDetectString); + ptWFX: + XmlDoc.AppendWfx(FPluginName, FDcPath, True); + ptWCX: + begin + if FWcxExtensions = '' then + XmlDoc.AppendWcx('*', FDcPath, PK_CAPS_NEW or PK_CAPS_MODIFY, True) + else + for ExtItem in FWcxExtensions.Split([';', ',']) do + if Trim(ExtItem) <> '' then + XmlDoc.AppendWcx(Trim(ExtItem), FDcPath, + PK_CAPS_NEW or PK_CAPS_MODIFY, True); + end; + end; + XmlDoc.SaveToFile(DcPaths.DoubleCmdXmlPath); + finally + XmlDoc.Free; + end; +end; + +procedure CopyTree(const SourceDir, DestDir: string); + + procedure CopyFiles(const Src, Dst: string); + var + SR: TSearchRec; + SrcPath, DstPath: string; + begin + ForceDirectories(Dst); + if FindFirst(IncludeTrailingPathDelimiter(Src) + '*', faAnyFile, SR) = 0 then + try + repeat + if (SR.Name = '.') or (SR.Name = '..') then Continue; + SrcPath := IncludeTrailingPathDelimiter(Src) + SR.Name; + DstPath := IncludeTrailingPathDelimiter(Dst) + SR.Name; + if (SR.Attr and faDirectory) <> 0 then + CopyFiles(SrcPath, DstPath) + else + begin + ForceDirectories(ExtractFilePath(DstPath)); + if not CopyFile(SrcPath, DstPath) then + raise Exception.CreateFmt('Copy failed: %s', [SrcPath]); + end; + until FindNext(SR) <> 0; + finally + FindClose(SR); + end; + end; + +begin + CopyFiles(SourceDir, DestDir); +end; + +function InstallPluginFromArchive(const Request: TInstallRequest): TPluginRecord; +var + ExtractDir: string; + Scanned: TScannedPluginArray; + Item: TScannedPlugin; + PluginDir, RelDir, DcPath, PluginName: string; + Rec: TPluginRecord; + Head: THeadResult; + SelIdx: Integer; + Work: TInstallWork; +begin + Scanned := TPluginScanner.ScanArchive(Request.ArchivePath, ExtractDir); + if Length(Scanned) = 0 then + raise Exception.Create('No plugin binaries found in archive.'); + SelIdx := Request.SelectedIndex; + if (SelIdx < 0) or (SelIdx >= Length(Scanned)) then + SelIdx := 0; + Item := Scanned[SelIdx]; + if not Item.Valid then + raise Exception.Create('Plugin binary has incompatible architecture.'); + PluginName := Item.SuggestedName; + RelDir := PluginTypeToString(Item.PluginType) + PathDelim + PluginName + PathDelim; + PluginDir := DcPaths.PluginDirForType(Item.PluginType) + PluginName + PathDelim; + CopyTree(ExtractDir, PluginDir); + DcPath := DcPaths.MakeDcRelativePath( + IncludeTrailingPathDelimiter(PluginDir) + ExtractFileName(Item.FilePath)); + Work := TInstallWork.Create(Item, PluginName, DcPath, Request.WcxExtensions); + try + WithDcRestart(Work); + finally + Work.Free; + end; + Rec := PlugmanStore.CreateEntry(PluginName, Item.PluginType, + ExtractFileName(Item.FilePath), RelDir); + Rec.SourceUrl := Request.SourceUrl; + if Request.SourceUrl <> '' then + begin + Head := ProbeUrl(Request.SourceUrl); + Rec.HttpCaps.SupportsHead := Head.SupportsHead; + Rec.HttpCaps.ProvidesEtag := Head.ETag <> ''; + Rec.HttpCaps.ProvidesModified := Head.LastModified <> ''; + Rec.State.ETag := Head.ETag; + Rec.State.LastModified := Head.LastModified; + Rec.State.LocalSize := Head.ContentLength; + Rec.State.LastChecked := Now; + end; + PlugmanStore.SaveToFile(DcPaths.PlugmanJsonPath); + Result := Rec; +end; + +end. diff --git a/plugman/src/ops/uPluginOrder.pas b/plugman/src/ops/uPluginOrder.pas new file mode 100644 index 0000000..44d5357 --- /dev/null +++ b/plugman/src/ops/uPluginOrder.pas @@ -0,0 +1,75 @@ +unit uPluginOrder; + +{$mode objfpc}{$H+} + +interface + +uses + uDcXml; + +procedure MovePluginUp(var Entry: TPluginXmlEntry); +procedure MovePluginDown(var Entry: TPluginXmlEntry); + +implementation + +uses + uDcPaths, uDcRestart; + +type + TMoveWork = class(TRestartWork) + private + FEntry: TPluginXmlEntry; + FNewIndex: Integer; + public + constructor Create(var Entry: TPluginXmlEntry; NewIndex: Integer); + procedure Execute; override; + property Entry: TPluginXmlEntry read FEntry write FEntry; + end; + +constructor TMoveWork.Create(var Entry: TPluginXmlEntry; NewIndex: Integer); +begin + inherited Create; + FEntry := Entry; + FNewIndex := NewIndex; +end; + +procedure TMoveWork.Execute; +var + XmlDoc: TDcXmlDocument; +begin + XmlDoc := TDcXmlDocument.Create; + try + XmlDoc.LoadFromFile(DcPaths.DoubleCmdXmlPath); + XmlDoc.MoveNode(FEntry, FNewIndex); + XmlDoc.SaveToFile(DcPaths.DoubleCmdXmlPath); + finally + XmlDoc.Free; + end; +end; + +procedure ApplyMove(var Entry: TPluginXmlEntry; NewIndex: Integer); +var + Work: TMoveWork; +begin + if Entry.Index = NewIndex then Exit; + Work := TMoveWork.Create(Entry, NewIndex); + try + WithDcRestart(Work); + Entry := Work.Entry; + finally + Work.Free; + end; +end; + +procedure MovePluginUp(var Entry: TPluginXmlEntry); +begin + if Entry.Index <= 0 then Exit; + ApplyMove(Entry, Entry.Index - 1); +end; + +procedure MovePluginDown(var Entry: TPluginXmlEntry); +begin + ApplyMove(Entry, Entry.Index + 1); +end; + +end. diff --git a/plugman/src/ops/uPluginTweak.pas b/plugman/src/ops/uPluginTweak.pas new file mode 100644 index 0000000..5724356 --- /dev/null +++ b/plugman/src/ops/uPluginTweak.pas @@ -0,0 +1,165 @@ +unit uPluginTweak; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, uPluginTypes, uDcXml; + +procedure ApplyWcxTweak(const Path: string; Extensions: TStrings; Flags: array of Integer); +procedure ApplyListerTweak(APluginType: TPluginType; const Path, Name, DetectString: string); +procedure OpenPluginConfig(const PluginDir: string; const EditorCommand: string); + +implementation + +uses + Process, LazFileUtils, uDcPaths, uDcRestart; + +type + TWcxTweakWork = class(TRestartWork) + private + FPath: string; + FExtensions: TStringList; + FFlags: array of Integer; + public + constructor Create(const Path: string; Extensions: TStrings; + Flags: array of Integer); + destructor Destroy; override; + procedure Execute; override; + end; + + TListerTweakWork = class(TRestartWork) + private + FPluginType: TPluginType; + FPath, FName, FDetectString: string; + public + constructor Create(APluginType: TPluginType; const Path, Name, DetectString: string); + procedure Execute; override; + end; + +constructor TWcxTweakWork.Create(const Path: string; Extensions: TStrings; + Flags: array of Integer); +var + I: Integer; +begin + inherited Create; + FPath := Path; + FExtensions := TStringList.Create; + FExtensions.Assign(Extensions); + SetLength(FFlags, Length(Flags)); + for I := 0 to High(Flags) do + FFlags[I] := Flags[I]; +end; + +destructor TWcxTweakWork.Destroy; +begin + FExtensions.Free; + inherited Destroy; +end; + +procedure TWcxTweakWork.Execute; +var + XmlDoc: TDcXmlDocument; +begin + XmlDoc := TDcXmlDocument.Create; + try + XmlDoc.LoadFromFile(DcPaths.DoubleCmdXmlPath); + XmlDoc.UpdateWcxExtensions(FPath, FExtensions, FFlags); + XmlDoc.SaveToFile(DcPaths.DoubleCmdXmlPath); + finally + XmlDoc.Free; + end; +end; + +constructor TListerTweakWork.Create(APluginType: TPluginType; const Path, Name, + DetectString: string); +begin + inherited Create; + FPluginType := APluginType; + FPath := Path; + FName := Name; + FDetectString := DetectString; +end; + +procedure TListerTweakWork.Execute; +var + XmlDoc: TDcXmlDocument; +begin + XmlDoc := TDcXmlDocument.Create; + try + XmlDoc.LoadFromFile(DcPaths.DoubleCmdXmlPath); + XmlDoc.UpdateDetectString(FPluginType, FPath, FDetectString); + XmlDoc.UpdateName(FPluginType, FPath, FName); + XmlDoc.SaveToFile(DcPaths.DoubleCmdXmlPath); + finally + XmlDoc.Free; + end; +end; + +procedure ApplyWcxTweak(const Path: string; Extensions: TStrings; Flags: array of Integer); +var + Work: TWcxTweakWork; +begin + Work := TWcxTweakWork.Create(Path, Extensions, Flags); + try + WithDcRestart(Work); + finally + Work.Free; + end; +end; + +procedure ApplyListerTweak(APluginType: TPluginType; const Path, Name, DetectString: string); +var + Work: TListerTweakWork; +begin + Work := TListerTweakWork.Create(APluginType, Path, Name, DetectString); + try + WithDcRestart(Work); + finally + Work.Free; + end; +end; + +procedure OpenPluginConfig(const PluginDir: string; const EditorCommand: string); +var + SR: TSearchRec; + ConfigFile, Cmd, Path: string; + P: TProcess; + Parts: TStringArray; +begin + ConfigFile := ''; + Path := IncludeTrailingPathDelimiter(PluginDir); + if FindFirst(Path + '*', faAnyFile, SR) = 0 then + try + repeat + if (SR.Attr and faDirectory) = 0 then + if (LowerCase(ExtractFileExt(SR.Name)) = '.ini') or + (LowerCase(ExtractFileExt(SR.Name)) = '.conf') then + begin + ConfigFile := Path + SR.Name; + Break; + end; + until FindNext(SR) <> 0; + finally + FindClose(SR); + end; + if ConfigFile = '' then + raise Exception.Create('No .ini or .conf file found in plugin directory.'); + Cmd := EditorCommand; + if Cmd = '' then Cmd := 'xdg-open'; + Parts := Cmd.Split([' '], 2); + P := TProcess.Create(nil); + try + P.Executable := Parts[0]; + if Length(Parts) > 1 then + P.Parameters.Add(Parts[1]); + P.Parameters.Add(ConfigFile); + P.Options := [poNoConsole]; + P.Execute; + finally + P.Free; + end; +end; + +end. diff --git a/plugman/src/ops/uPluginUninstall.pas b/plugman/src/ops/uPluginUninstall.pas new file mode 100644 index 0000000..68700eb --- /dev/null +++ b/plugman/src/ops/uPluginUninstall.pas @@ -0,0 +1,75 @@ +unit uPluginUninstall; + +{$mode objfpc}{$H+} + +interface + +uses + SysUtils, uPlugmanJson; + +procedure UninstallPlugin(ARecord: TPluginRecord); + +implementation + +uses + LazFileUtils, FileUtil, uDcPaths, uDcXml, uDcRestart; + +type + TUninstallWork = class(TRestartWork) + private + FRecord: TPluginRecord; + public + constructor Create(ARecord: TPluginRecord); + procedure Execute; override; + end; + +constructor TUninstallWork.Create(ARecord: TPluginRecord); +begin + inherited Create; + FRecord := ARecord; +end; + +procedure TUninstallWork.Execute; +var + XmlDoc: TDcXmlDocument; + AbsDir, Prefix: string; +begin + XmlDoc := TDcXmlDocument.Create; + try + XmlDoc.LoadFromFile(DcPaths.DoubleCmdXmlPath); + Prefix := DcPaths.ExpandDcPath( + '%COMMANDER_PATH%/plugins/' + FRecord.RelativeDir); + XmlDoc.RemoveNodesByPathPrefix(Prefix); + XmlDoc.SaveToFile(DcPaths.DoubleCmdXmlPath); + finally + XmlDoc.Free; + end; + AbsDir := DcPaths.PluginsBaseDir + FRecord.RelativeDir; + if DirectoryExists(AbsDir) then + DeleteDirectory(AbsDir, True); + if FRecord.Rollback.BackupExists then + begin + AbsDir := DcPaths.PluginsBaseDir + FRecord.RelativeDir + + FRecord.Rollback.BackupFilename; + if FileExists(AbsDir) then + DeleteFile(AbsDir); + end; +end; + +procedure UninstallPlugin(ARecord: TPluginRecord); +var + Work: TUninstallWork; +begin + if ARecord = nil then + raise Exception.Create('No plugin selected.'); + Work := TUninstallWork.Create(ARecord); + try + WithDcRestart(Work); + finally + Work.Free; + end; + PlugmanStore.Remove(ARecord); + PlugmanStore.SaveToFile(DcPaths.PlugmanJsonPath); +end; + +end. diff --git a/plugman/src/uMainForm.lfm b/plugman/src/uMainForm.lfm new file mode 100644 index 0000000..20b2cbd --- /dev/null +++ b/plugman/src/uMainForm.lfm @@ -0,0 +1,154 @@ +object frmMain: TfrmMain + Left = 120 + Height = 620 + Top = 80 + Width = 980 + Caption = 'Double Commander Plugin Manager' + ClientHeight = 620 + ClientWidth = 980 + OnCreate = FormCreate + OnShow = FormShow + Position = poScreenCenter + LCLVersion = '4.8.0.0' + object ToolBar: TToolBar + Left = 0 + Height = 30 + Top = 0 + Width = 980 + ButtonHeight = 26 + ButtonWidth = 70 + Caption = 'ToolBar' + ShowCaptions = True + TabOrder = 0 + object btnInstall: TToolButton + Left = 1 + Height = 26 + Top = 0 + Caption = 'Install' + OnClick = btnInstallClick + end + object btnUninstall: TToolButton + Left = 72 + Height = 26 + Top = 0 + Caption = 'Uninstall' + OnClick = btnUninstallClick + end + object btnEnable: TToolButton + Left = 143 + Height = 26 + Top = 0 + Caption = 'Disable' + OnClick = btnEnableClick + end + object btnMoveUp: TToolButton + Left = 214 + Height = 26 + Top = 0 + Caption = 'Up' + OnClick = btnMoveUpClick + end + object btnMoveDown: TToolButton + Left = 285 + Height = 26 + Top = 0 + Caption = 'Down' + OnClick = btnMoveDownClick + end + object btnTweak: TToolButton + Left = 356 + Height = 26 + Top = 0 + Caption = 'Tweak' + OnClick = btnTweakClick + end + object btnBindUrl: TToolButton + Left = 427 + Height = 26 + Top = 0 + Caption = 'Bind URL' + OnClick = btnBindUrlClick + end + object btnCheckUpdate: TToolButton + Left = 498 + Height = 26 + Top = 0 + Caption = 'Update' + OnClick = btnCheckUpdateClick + end + object btnRollback: TToolButton + Left = 569 + Height = 26 + Top = 0 + Caption = 'Rollback' + OnClick = btnRollbackClick + end + object btnRefresh: TToolButton + Left = 640 + Height = 26 + Top = 0 + Caption = 'Refresh' + OnClick = btnRefreshClick + end + object btnSettings: TToolButton + Left = 711 + Height = 26 + Top = 0 + Caption = 'Settings' + OnClick = btnSettingsClick + end + object btnConfigure: TToolButton + Left = 782 + Height = 26 + Top = 0 + Caption = 'Configure' + OnClick = btnConfigureClick + end + end + object lvPlugins: TListView + Left = 0 + Height = 360 + Top = 30 + Width = 980 + Align = alClient + Columns = <> + ReadOnly = True + RowSelect = True + TabOrder = 1 + ViewStyle = vsReport + OnSelectItem = lvPluginsSelectItem + end + object pnlDetail: TPanel + Left = 0 + Height = 200 + Top = 390 + Width = 980 + Align = alBottom + BevelOuter = bvNone + ClientHeight = 200 + ClientWidth = 980 + TabOrder = 2 + object memDetail: TMemo + Left = 0 + Height = 200 + Top = 0 + Width = 980 + Align = alClient + ReadOnly = True + ScrollBars = ssAutoVertical + TabOrder = 0 + end + end + object StatusBar: TStatusBar + Left = 0 + Height = 24 + Top = 596 + Width = 980 + SimplePanel = True + TabOrder = 3 + end + object OpenDialog: TOpenDialog + Left = 880 + Top = 48 + end +end diff --git a/plugman/src/uMainForm.pas b/plugman/src/uMainForm.pas new file mode 100644 index 0000000..dab8afa --- /dev/null +++ b/plugman/src/uMainForm.pas @@ -0,0 +1,514 @@ +unit uMainForm; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, Forms, Controls, ComCtrls, ExtCtrls, StdCtrls, Dialogs, + Menus, uPluginTypes, uPlugmanJson, uDcXml; + +type + TListItemData = class + public + JsonRecord: TPluginRecord; + XmlEntry: TPluginXmlEntry; + UpdateAvailable: Boolean; + end; + + { TfrmMain } + TfrmMain = class(TForm) + ToolBar: TToolBar; + btnInstall: TToolButton; + btnUninstall: TToolButton; + btnEnable: TToolButton; + btnMoveUp: TToolButton; + btnMoveDown: TToolButton; + btnTweak: TToolButton; + btnBindUrl: TToolButton; + btnCheckUpdate: TToolButton; + btnRollback: TToolButton; + btnRefresh: TToolButton; + btnSettings: TToolButton; + btnConfigure: TToolButton; + lvPlugins: TListView; + pnlDetail: TPanel; + memDetail: TMemo; + StatusBar: TStatusBar; + OpenDialog: TOpenDialog; + procedure FormCreate(Sender: TObject); + procedure FormShow(Sender: TObject); + procedure btnInstallClick(Sender: TObject); + procedure btnUninstallClick(Sender: TObject); + procedure btnEnableClick(Sender: TObject); + procedure btnMoveUpClick(Sender: TObject); + procedure btnMoveDownClick(Sender: TObject); + procedure btnTweakClick(Sender: TObject); + procedure btnBindUrlClick(Sender: TObject); + procedure btnCheckUpdateClick(Sender: TObject); + procedure btnRollbackClick(Sender: TObject); + procedure btnRefreshClick(Sender: TObject); + procedure btnSettingsClick(Sender: TObject); + procedure btnConfigureClick(Sender: TObject); + procedure lvPluginsSelectItem(Sender: TObject; Item: TListItem; Selected: Boolean); + private + FXmlDoc: TDcXmlDocument; + procedure InitListColumns; + procedure ReloadAll; + procedure RefreshList; + procedure UpdateDetail; + procedure UpdateButtons; + function SelectedData: TListItemData; + procedure SetStatus(const Msg: string); + public + end; + +var + frmMain: TfrmMain; + +implementation + +{$R *.lfm} + +uses + LazFileUtils, FileUtil, StrUtils, uDcPaths, uPluginInstall, uPluginUninstall, uPluginEnable, + uPluginOrder, uPluginTweak, uPluginUpdate, uPluginRollback, uHttpCheck, + uDcRestart, fTweakPacker, fTweakLister, fUrlBind, fUpdateConfirm, fSettings; + +procedure TfrmMain.FormCreate(Sender: TObject); +begin + InitListColumns; + FXmlDoc := TDcXmlDocument.Create; + lvPlugins.ReadOnly := True; + lvPlugins.RowSelect := True; +end; + +procedure TfrmMain.FormShow(Sender: TObject); +begin + DcPaths.LoadSettings(DcPaths.PlugmanSettingsPath); + if not FileExists(DcPaths.PlugmanJsonPath) then + begin + ForceDirectories(DcPaths.ConfigDir); + PlugmanStore.SaveToFile(DcPaths.PlugmanJsonPath); + end; + ReloadAll; + ReconcileDisabledPlugins; + if DcPaths.AutoCheckUpdates then + btnCheckUpdateClick(nil); +end; + +procedure TfrmMain.InitListColumns; +begin + with lvPlugins.Columns.Add do begin Caption := 'Name'; Width := 150; end; + with lvPlugins.Columns.Add do begin Caption := 'Type'; Width := 80; end; + with lvPlugins.Columns.Add do begin Caption := 'Status'; Width := 80; end; + with lvPlugins.Columns.Add do begin Caption := 'Path'; Width := 300; end; + with lvPlugins.Columns.Add do begin Caption := 'URL'; Width := 200; end; + with lvPlugins.Columns.Add do begin Caption := 'Update'; Width := 100; end; + with lvPlugins.Columns.Add do begin Caption := 'Exts/Detect'; Width := 200; end; +end; + +procedure TfrmMain.SetStatus(const Msg: string); +begin + StatusBar.SimpleText := Msg + ' | DC: ' + IfThen(IsDoubleCmdRunning, 'running', 'stopped') + + ' | Config: ' + DcPaths.ConfigDir; +end; + +procedure TfrmMain.ReloadAll; +begin + PlugmanStore.LoadFromFile(DcPaths.PlugmanJsonPath); + if FileExists(DcPaths.DoubleCmdXmlPath) then + FXmlDoc.LoadFromFile(DcPaths.DoubleCmdXmlPath); + RefreshList; + SetStatus('Ready'); +end; + +procedure TfrmMain.RefreshList; +var + ActiveEntries, DisabledEntries: TPluginXmlEntryArray; + I: Integer; + Item: TListItem; + Data: TListItemData; + Rec: TPluginRecord; + Pt: TPluginType; + + procedure AddEntry(const Entry: TPluginXmlEntry); + var + J: Integer; + ExtStr: string; + begin + if Entry.PluginType = ptWCX then + ExtStr := 'EXT="' + UpperCase(Entry.ArchiveExt) + '"' + else + ExtStr := Entry.DetectString; + + for J := 0 to lvPlugins.Items.Count - 1 do + begin + if SameText(lvPlugins.Items[J].SubItems[2], Entry.Path) then + begin + if Entry.PluginType = ptWCX then + begin + if lvPlugins.Items[J].SubItems.Count > 5 then + lvPlugins.Items[J].SubItems[5] := lvPlugins.Items[J].SubItems[5] + ' | ' + ExtStr + else + lvPlugins.Items[J].SubItems.Add(ExtStr); + end; + Exit; + end; + end; + + Item := lvPlugins.Items.Add; + Data := TListItemData.Create; + Data.XmlEntry := Entry; + Data.JsonRecord := PlugmanStore.FindByRelativeDir( + DcPaths.MakePluginRelativeDir(DcPaths.ExpandDcPath(Entry.Path))); + if Data.JsonRecord = nil then + Data.JsonRecord := PlugmanStore.FindByFilename(ExtractFileName(Entry.Path)); + Item.Data := Data; + Item.Caption := Entry.Name; + if Item.Caption = '' then Item.Caption := ExtractFileName(Entry.Path); + Item.SubItems.Add(PluginTypeToString(Entry.PluginType)); + if Entry.IsDisabled then + Item.SubItems.Add('disabled') + else if Entry.Enabled then + Item.SubItems.Add('active') + else + Item.SubItems.Add('inactive'); + Item.SubItems.Add(Entry.Path); + if (Data.JsonRecord <> nil) and (Data.JsonRecord.SourceUrl <> '') then + Item.SubItems.Add(Data.JsonRecord.SourceUrl) + else + Item.SubItems.Add(''); + Item.SubItems.Add(''); + Item.SubItems.Add(ExtStr); + end; + +begin + lvPlugins.Items.BeginUpdate; + try + lvPlugins.Items.Clear; + for Pt := Low(TPluginType) to High(TPluginType) do + begin + ActiveEntries := FXmlDoc.EnumerateActive(Pt); + for I := 0 to High(ActiveEntries) do + AddEntry(ActiveEntries[I]); + end; + DisabledEntries := FXmlDoc.EnumerateDisabled; + for I := 0 to High(DisabledEntries) do + AddEntry(DisabledEntries[I]); + finally + lvPlugins.Items.EndUpdate; + end; + UpdateButtons; +end; + +function TfrmMain.SelectedData: TListItemData; +begin + Result := nil; + if (lvPlugins.Selected <> nil) and (lvPlugins.Selected.Data <> nil) then + Result := TListItemData(lvPlugins.Selected.Data); +end; + +procedure TfrmMain.UpdateButtons; +var + Data: TListItemData; +begin + Data := SelectedData; + btnUninstall.Enabled := Data <> nil; + btnEnable.Enabled := Data <> nil; + btnMoveUp.Enabled := Data <> nil; + btnMoveDown.Enabled := Data <> nil; + btnTweak.Enabled := Data <> nil; + btnBindUrl.Enabled := Data <> nil; + btnCheckUpdate.Enabled := (Data <> nil) and (Data.JsonRecord <> nil) and + (Data.JsonRecord.SourceUrl <> ''); + btnRollback.Enabled := (Data <> nil) and (Data.JsonRecord <> nil) and + CanRollback(Data.JsonRecord); + btnConfigure.Enabled := Data <> nil; + if (Data <> nil) and Data.XmlEntry.IsDisabled then + btnEnable.Caption := 'Enable' + else + btnEnable.Caption := 'Disable'; +end; + +procedure TfrmMain.UpdateDetail; +var + Data: TListItemData; + Rec: TPluginRecord; + Lines: TStringList; +begin + Data := SelectedData; + Lines := TStringList.Create; + try + if Data = nil then + begin + memDetail.Lines.Text := 'Select a plugin.'; + Exit; + end; + Rec := Data.JsonRecord; + Lines.Add('Name: ' + Data.XmlEntry.Name); + Lines.Add('Type: ' + PluginTypeToString(Data.XmlEntry.PluginType)); + Lines.Add('Path: ' + Data.XmlEntry.Path); + if Data.XmlEntry.DetectString <> '' then + Lines.Add('DetectString: ' + Data.XmlEntry.DetectString); + if Rec <> nil then + begin + Lines.Add(''); + Lines.Add('ID: ' + Rec.Id); + Lines.Add('Relative dir: ' + Rec.RelativeDir); + if Rec.SourceUrl <> '' then + begin + Lines.Add('URL: ' + Rec.SourceUrl); + Lines.Add(Format('HEAD supported: %s', [BoolToStr(Rec.HttpCaps.SupportsHead, True)])); + Lines.Add(Format('ETag: %s', [Rec.State.ETag])); + end; + if Rec.Rollback.BackupExists then + Lines.Add(Format('Backup: %s (%s)', [Rec.Rollback.BackupFilename, + DateTimeToStr(Rec.Rollback.BackupTimestamp)])); + end; + memDetail.Lines.Assign(Lines); + finally + Lines.Free; + end; +end; + +procedure TfrmMain.lvPluginsSelectItem(Sender: TObject; Item: TListItem; + Selected: Boolean); +begin + UpdateDetail; + UpdateButtons; +end; + +procedure TfrmMain.btnInstallClick(Sender: TObject); +var + Req: TInstallRequest; + Url: string; +begin + OpenDialog.Title := 'Select plugin archive'; + OpenDialog.Filter := 'Archives|*.zip;*.tar.gz;*.tgz;*.tar|All|*.*'; + if not OpenDialog.Execute then Exit; + if InputQuery('Install', 'Download URL (optional):', Url) then; + Req.ArchivePath := OpenDialog.FileName; + Req.SourceUrl := Url; + Req.SelectedIndex := 0; + if SameText(ExtractFileExt(OpenDialog.FileName), '.wcx') or + (Pos('wcx', LowerCase(OpenDialog.FileName)) > 0) then + InputQuery('WCX extensions', 'Semicolon-separated extensions (e.g. zip;rar):', Req.WcxExtensions); + try + InstallPluginFromArchive(Req); + ReloadAll; + SetStatus('Plugin installed.'); + except + on E: Exception do + ShowMessage('Install failed: ' + E.Message); + end; +end; + +procedure TfrmMain.btnUninstallClick(Sender: TObject); +var + Data: TListItemData; +begin + Data := SelectedData; + if Data = nil then Exit; + if Data.JsonRecord = nil then + begin + ShowMessage('This plugin is not tracked in plugman.json. Add it manually or reinstall.'); + Exit; + end; + if MessageDlg('Uninstall', 'Remove plugin "' + Data.XmlEntry.Name + + '" and delete its files?', mtConfirmation, [mbYes, mbNo], 0) <> mrYes then Exit; + try + UninstallPlugin(Data.JsonRecord); + ReloadAll; + SetStatus('Plugin uninstalled.'); + except + on E: Exception do ShowMessage(E.Message); + end; +end; + +procedure TfrmMain.btnEnableClick(Sender: TObject); +var + Data: TListItemData; + Entry: TPluginXmlEntry; +begin + Data := SelectedData; + if Data = nil then Exit; + Entry := Data.XmlEntry; + try + if Entry.IsDisabled then + EnablePlugin(Data.JsonRecord, Entry) + else + DisablePlugin(Data.JsonRecord, Entry); + ReloadAll; + SetStatus('Plugin state updated.'); + except + on E: Exception do ShowMessage(E.Message); + end; +end; + +procedure TfrmMain.btnMoveUpClick(Sender: TObject); +var + Data: TListItemData; + Entry: TPluginXmlEntry; +begin + Data := SelectedData; + if Data = nil then Exit; + Entry := Data.XmlEntry; + try + MovePluginUp(Entry); + ReloadAll; + except + on E: Exception do ShowMessage(E.Message); + end; +end; + +procedure TfrmMain.btnMoveDownClick(Sender: TObject); +var + Data: TListItemData; + Entry: TPluginXmlEntry; +begin + Data := SelectedData; + if Data = nil then Exit; + Entry := Data.XmlEntry; + try + MovePluginDown(Entry); + ReloadAll; + except + on E: Exception do ShowMessage(E.Message); + end; +end; + +procedure TfrmMain.btnConfigureClick(Sender: TObject); +var + Data: TListItemData; + PluginDir: string; +begin + Data := SelectedData; + if Data = nil then Exit; + PluginDir := DcPaths.PluginsBaseDir; + if Data.JsonRecord <> nil then + PluginDir := PluginDir + Data.JsonRecord.RelativeDir + else + PluginDir := ExtractFilePath(DcPaths.ExpandDcPath(Data.XmlEntry.Path)); + try + OpenPluginConfig(PluginDir, DcPaths.EditorCommand); + except + on E: Exception do ShowMessage(E.Message); + end; +end; + +procedure TfrmMain.btnTweakClick(Sender: TObject); +var + Data: TListItemData; + PluginDir: string; +begin + Data := SelectedData; + if Data = nil then Exit; + try + case Data.XmlEntry.PluginType of + ptWCX: + ShowTweakPacker(Data.XmlEntry.Path); + ptWLX, ptWDX: + ShowTweakLister(Data.XmlEntry.PluginType, Data.XmlEntry.Path, + Data.XmlEntry.Name, Data.XmlEntry.DetectString); + ptWFX: + ShowMessage('Use Configure to edit WFX plugin .ini/.conf files.'); + end; + ReloadAll; + except + on E: Exception do ShowMessage(E.Message); + end; +end; + +procedure TfrmMain.btnBindUrlClick(Sender: TObject); +var + Data: TListItemData; + Rec: TPluginRecord; +begin + Data := SelectedData; + if Data = nil then Exit; + Rec := Data.JsonRecord; + if Rec = nil then + begin + Rec := PlugmanStore.CreateEntry(Data.XmlEntry.Name, Data.XmlEntry.PluginType, + ExtractFileName(Data.XmlEntry.Path), + DcPaths.MakePluginRelativeDir(ExtractFilePath(DcPaths.ExpandDcPath(Data.XmlEntry.Path)))); + PlugmanStore.SaveToFile(DcPaths.PlugmanJsonPath); + end; + if ShowUrlBindDialog(Rec) then + ReloadAll; +end; + +procedure TfrmMain.btnCheckUpdateClick(Sender: TObject); +var + Data: TListItemData; + Head: THeadResult; + I: Integer; + Item: TListItem; + D: TListItemData; +begin + if Sender = btnCheckUpdate then + begin + Data := SelectedData; + if (Data = nil) or (Data.JsonRecord = nil) or (Data.JsonRecord.SourceUrl = '') then Exit; + try + if CheckPluginUpdate(Data.JsonRecord, Head) then + begin + if not Head.SupportsHead and (Head.ErrorMessage <> '') then + ShowMessage('Warning: server may not support automated version checking.'); + if ShowUpdateConfirm(Data.JsonRecord.Name, Head) then + begin + ApplyPluginUpdate(Data.JsonRecord); + SetStatus('Update applied.'); + end; + end + else + SetStatus('No update available.'); + ReloadAll; + except + on E: Exception do ShowMessage(E.Message); + end; + end + else + begin + for I := 0 to lvPlugins.Items.Count - 1 do + begin + Item := lvPlugins.Items[I]; + if Item.Data = nil then Continue; + D := TListItemData(Item.Data); + if (D.JsonRecord <> nil) and (D.JsonRecord.SourceUrl <> '') then + CheckPluginUpdate(D.JsonRecord, Head); + end; + ReloadAll; + end; +end; + +procedure TfrmMain.btnRollbackClick(Sender: TObject); +var + Data: TListItemData; +begin + Data := SelectedData; + if (Data = nil) or (Data.JsonRecord = nil) then Exit; + if MessageDlg('Rollback', 'Restore previous version from backup?', mtConfirmation, + [mbYes, mbNo], 0) <> mrYes then Exit; + try + RollbackPlugin(Data.JsonRecord, True); + ReloadAll; + SetStatus('Rollback complete.'); + except + on E: Exception do ShowMessage(E.Message); + end; +end; + +procedure TfrmMain.btnRefreshClick(Sender: TObject); +begin + ReloadAll; +end; + +procedure TfrmMain.btnSettingsClick(Sender: TObject); +begin + if ShowSettingsDialog then + ReloadAll; +end; + +end. diff --git a/plugman/src/ui/fSettings.lfm b/plugman/src/ui/fSettings.lfm new file mode 100644 index 0000000..896c121 --- /dev/null +++ b/plugman/src/ui/fSettings.lfm @@ -0,0 +1,95 @@ +object frmSettings: TfrmSettings + Left = 180 + Height = 280 + Top = 120 + Width = 560 + Caption = 'Settings' + ClientHeight = 280 + ClientWidth = 560 + Position = poScreenCenter + LCLVersion = '4.8.0.0' + object lblConfig: TLabel + Left = 16 + Height = 15 + Top = 16 + Width = 80 + Caption = 'Config directory' + end + object lblCmdPath: TLabel + Left = 16 + Height = 15 + Top = 56 + Width = 88 + Caption = 'Commander path' + end + object lblCmdExe: TLabel + Left = 16 + Height = 15 + Top = 96 + Width = 99 + Caption = 'Commander executable' + end + object lblEditor: TLabel + Left = 16 + Height = 15 + Top = 136 + Width = 88 + Caption = 'External editor' + end + object edtConfigDir: TDirectoryEdit + Left = 160 + Height = 23 + Top = 12 + Width = 384 + TabOrder = 0 + end + object edtCommanderPath: TDirectoryEdit + Left = 160 + Height = 23 + Top = 52 + Width = 384 + TabOrder = 1 + end + object edtCommanderExe: TFileNameEdit + Left = 160 + Height = 23 + Top = 92 + Width = 384 + TabOrder = 2 + end + object edtEditor: TEdit + Left = 160 + Height = 23 + Top = 132 + Width = 384 + TabOrder = 3 + end + object chkAutoCheck: TCheckBox + Left = 16 + Height = 19 + Top = 176 + Width = 220 + Caption = 'Check for updates on startup' + TabOrder = 4 + end + object btnOk: TButton + Left = 360 + Height = 30 + Top = 232 + Width = 90 + Caption = 'OK' + Default = True + OnClick = btnOkClick + TabOrder = 5 + end + object btnCancel: TButton + Left = 458 + Height = 30 + Top = 232 + Width = 90 + Cancel = True + Caption = 'Cancel' + ModalResult = 2 + TabOrder = 6 + end +end diff --git a/plugman/src/ui/fSettings.pas b/plugman/src/ui/fSettings.pas new file mode 100644 index 0000000..adfe18e --- /dev/null +++ b/plugman/src/ui/fSettings.pas @@ -0,0 +1,72 @@ +unit fSettings; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, Forms, Controls, Dialogs, StdCtrls, ExtCtrls, EditBtn; + +type + TfrmSettings = class(TForm) + edtConfigDir: TDirectoryEdit; + edtCommanderPath: TDirectoryEdit; + edtCommanderExe: TFileNameEdit; + edtEditor: TEdit; + chkAutoCheck: TCheckBox; + lblConfig: TLabel; + lblCmdPath: TLabel; + lblCmdExe: TLabel; + lblEditor: TLabel; + btnOk: TButton; + btnCancel: TButton; + procedure btnOkClick(Sender: TObject); + public + function EditSettings: Boolean; + end; + +function ShowSettingsDialog: Boolean; + +implementation + +{$R *.lfm} + +uses uDcPaths; + +function ShowSettingsDialog: Boolean; +var + F: TfrmSettings; +begin + F := TfrmSettings.Create(nil); + try + Result := F.EditSettings; + finally + F.Free; + end; +end; + +function TfrmSettings.EditSettings: Boolean; +begin + edtConfigDir.Text := DcPaths.ConfigDir; + edtCommanderPath.Text := DcPaths.CommanderPath; + edtCommanderExe.Text := DcPaths.CommanderExe; + edtEditor.Text := DcPaths.EditorCommand; + chkAutoCheck.Checked := DcPaths.AutoCheckUpdates; + Result := ShowModal = mrOk; + if Result then + begin + DcPaths.ConfigDir := IncludeTrailingPathDelimiter(edtConfigDir.Text); + DcPaths.CommanderPath := ExcludeTrailingPathDelimiter(edtCommanderPath.Text); + DcPaths.CommanderExe := edtCommanderExe.Text; + DcPaths.EditorCommand := edtEditor.Text; + DcPaths.AutoCheckUpdates := chkAutoCheck.Checked; + DcPaths.SaveSettings(DcPaths.PlugmanSettingsPath); + end; +end; + +procedure TfrmSettings.btnOkClick(Sender: TObject); +begin + ModalResult := mrOk; +end; + +end. diff --git a/plugman/src/ui/fTweakLister.lfm b/plugman/src/ui/fTweakLister.lfm new file mode 100644 index 0000000..de39f74 --- /dev/null +++ b/plugman/src/ui/fTweakLister.lfm @@ -0,0 +1,59 @@ +object frmTweakLister: TfrmTweakLister + Left = 220 + Height = 180 + Top = 140 + Width = 440 + Caption = 'Tweak Lister Plugin' + ClientHeight = 180 + ClientWidth = 440 + Position = poScreenCenter + LCLVersion = '4.8.0.0' + object lblName: TLabel + Left = 16 + Height = 15 + Top = 16 + Width = 32 + Caption = 'Name' + end + object lblDetect: TLabel + Left = 16 + Height = 15 + Top = 56 + Width = 66 + Caption = 'DetectString' + end + object edtName: TEdit + Left = 120 + Height = 23 + Top = 12 + Width = 300 + TabOrder = 0 + end + object edtDetect: TEdit + Left = 120 + Height = 23 + Top = 52 + Width = 300 + TabOrder = 1 + end + object btnOk: TButton + Left = 240 + Height = 30 + Top = 120 + Width = 80 + Caption = 'OK' + Default = True + OnClick = btnOkClick + TabOrder = 2 + end + object btnCancel: TButton + Left = 336 + Height = 30 + Top = 120 + Width = 80 + Cancel = True + Caption = 'Cancel' + ModalResult = 2 + TabOrder = 3 + end +end diff --git a/plugman/src/ui/fTweakLister.pas b/plugman/src/ui/fTweakLister.pas new file mode 100644 index 0000000..0f1a93a --- /dev/null +++ b/plugman/src/ui/fTweakLister.pas @@ -0,0 +1,68 @@ +unit fTweakLister; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, Forms, Controls, Dialogs, StdCtrls, uPluginTypes; + +type + TfrmTweakLister = class(TForm) + lblName: TLabel; + lblDetect: TLabel; + edtName: TEdit; + edtDetect: TEdit; + btnOk: TButton; + btnCancel: TButton; + procedure btnOkClick(Sender: TObject); + private + FPluginType: TPluginType; + FPath: string; + public + function EditLister(APluginType: TPluginType; const Path, PluginName, DetectString: string): Boolean; + end; + +function ShowTweakLister(APluginType: TPluginType; const Path, PluginName, DetectString: string): Boolean; + +implementation + +{$R *.lfm} + +uses uPluginTweak; + +function ShowTweakLister(APluginType: TPluginType; const Path, PluginName, DetectString: string): Boolean; +var + F: TfrmTweakLister; +begin + F := TfrmTweakLister.Create(nil); + try + Result := F.EditLister(APluginType, Path, PluginName, DetectString); + finally + F.Free; + end; +end; + +function TfrmTweakLister.EditLister(APluginType: TPluginType; const Path, PluginName, + DetectString: string): Boolean; +begin + FPluginType := APluginType; + FPath := Path; + edtName.Text := PluginName; + edtDetect.Text := DetectString; + Result := ShowModal = mrOk; + if Result then + ApplyListerTweak(FPluginType, FPath, Trim(edtName.Text), Trim(edtDetect.Text)); +end; + +procedure TfrmTweakLister.btnOkClick(Sender: TObject); +begin + if Trim(edtDetect.Text) = '' then + begin + ShowMessage('DetectString cannot be empty.'); + Exit; + end; + ModalResult := mrOk; +end; + +end. diff --git a/plugman/src/ui/fTweakPacker.lfm b/plugman/src/ui/fTweakPacker.lfm new file mode 100644 index 0000000..e02cafa --- /dev/null +++ b/plugman/src/ui/fTweakPacker.lfm @@ -0,0 +1,56 @@ +object frmTweakPacker: TfrmTweakPacker + Left = 200 + Height = 520 + Top = 100 + Width = 480 + Caption = 'Tweak Packer Plugin' + ClientHeight = 520 + ClientWidth = 480 + OnCreate = FormCreate + Position = poScreenCenter + LCLVersion = '4.8.0.0' + object edtExts: TEdit + Left = 8 + Height = 28 + Top = 8 + Width = 464 + TabOrder = 0 + end + object pnlFlags: TPanel + Left = 8 + Height = 320 + Top = 136 + Width = 464 + BevelOuter = bvNone + ClientHeight = 320 + ClientWidth = 464 + TabOrder = 1 + object lblFlags: TLabel + Left = 8 + Height = 15 + Top = 4 + Width = 28 + Caption = 'Flags' + end + end + object btnOk: TButton + Left = 280 + Height = 30 + Top = 472 + Width = 90 + Caption = 'OK' + Default = True + OnClick = btnOkClick + TabOrder = 2 + end + object btnCancel: TButton + Left = 378 + Height = 30 + Top = 472 + Width = 90 + Cancel = True + Caption = 'Cancel' + ModalResult = 2 + TabOrder = 3 + end +end diff --git a/plugman/src/ui/fTweakPacker.pas b/plugman/src/ui/fTweakPacker.pas new file mode 100644 index 0000000..b4c6387 --- /dev/null +++ b/plugman/src/ui/fTweakPacker.pas @@ -0,0 +1,156 @@ +unit fTweakPacker; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, Forms, Controls, Dialogs, StdCtrls, ExtCtrls, Grids, + uPluginTypes, uDcXml; + +type + TfrmTweakPacker = class(TForm) + edtExts: TEdit; + pnlFlags: TPanel; + lblFlags: TLabel; + btnOk: TButton; + btnCancel: TButton; + procedure FormCreate(Sender: TObject); + procedure btnOkClick(Sender: TObject); + private + FPath: string; + FCheckBoxes: array[0..9] of TCheckBox; + procedure BuildFlagCheckboxes; + procedure LoadFromXml; + function CurrentFlags: Integer; + public + function EditWcx(const Path: string): Boolean; + end; + +function ShowTweakPacker(const Path: string): Boolean; + +implementation + +{$R *.lfm} + +uses uPluginTweak, uDcPaths; + +function ShowTweakPacker(const Path: string): Boolean; +var + F: TfrmTweakPacker; +begin + F := TfrmTweakPacker.Create(nil); + try + Result := F.EditWcx(Path); + finally + F.Free; + end; +end; + +procedure TfrmTweakPacker.FormCreate(Sender: TObject); +begin + BuildFlagCheckboxes; +end; + +procedure TfrmTweakPacker.BuildFlagCheckboxes; +var + I, TopPos: Integer; +begin + TopPos := 24; + for I := 0 to High(PK_CAP_NAMES) do + begin + FCheckBoxes[I] := TCheckBox.Create(Self); + FCheckBoxes[I].Parent := pnlFlags; + FCheckBoxes[I].Left := 8; + FCheckBoxes[I].Top := TopPos; + FCheckBoxes[I].Width := 400; + FCheckBoxes[I].Caption := PK_CAP_NAMES[I].Name; + FCheckBoxes[I].Tag := PK_CAP_NAMES[I].Flag; + Inc(TopPos, 24); + end; +end; + +procedure TfrmTweakPacker.LoadFromXml; +var + Doc: TDcXmlDocument; + Entries: TPluginXmlEntryArray; + I, J, Flags: Integer; + ExtStr: string; +begin + Doc := TDcXmlDocument.Create; + ExtStr := ''; + try + Doc.LoadFromFile(DcPaths.DoubleCmdXmlPath); + Entries := Doc.EnumerateActive(ptWCX); + for I := 0 to High(Entries) do + if SameText(DcPaths.ExpandDcPath(Entries[I].Path), DcPaths.ExpandDcPath(FPath)) then + begin + if ExtStr <> '' then + ExtStr := ExtStr + ' | '; + ExtStr := ExtStr + 'EXT="' + UpperCase(Entries[I].ArchiveExt) + '"'; + + Flags := Entries[I].Flags; + for J := 0 to High(FCheckBoxes) do + FCheckBoxes[J].Checked := (Flags and FCheckBoxes[J].Tag) <> 0; + end; + edtExts.Text := ExtStr; + finally + Doc.Free; + end; +end; + +function TfrmTweakPacker.CurrentFlags: Integer; +var + I: Integer; +begin + Result := 0; + for I := 0 to High(FCheckBoxes) do + if FCheckBoxes[I].Checked then + Result := Result or FCheckBoxes[I].Tag; +end; + +function TfrmTweakPacker.EditWcx(const Path: string): Boolean; +var + Exts: TStringList; + FlagsArr: array of Integer; + R, I: Integer; + Parts: TStringArray; + S, ExtValue: string; +begin + FPath := Path; + LoadFromXml; + Result := ShowModal = mrOk; + if Result then + begin + Exts := TStringList.Create; + try + S := edtExts.Text; + Parts := S.Split(['|']); + for I := 0 to High(Parts) do + begin + S := Trim(Parts[I]); + if S = '' then Continue; + if (Pos('EXT="', S) = 1) and (S[Length(S)] = '"') then + ExtValue := Copy(S, 6, Length(S) - 6) + else + ExtValue := S; + Exts.Add(ExtValue); + end; + + SetLength(FlagsArr, Exts.Count); + for R := 0 to Exts.Count - 1 do + FlagsArr[R] := CurrentFlags; + + ApplyWcxTweak(FPath, Exts, FlagsArr); + finally + Exts.Free; + end; + end; +end; + +procedure TfrmTweakPacker.btnOkClick(Sender: TObject); +begin + ModalResult := mrOk; +end; + +end. diff --git a/plugman/src/ui/fUpdateConfirm.lfm b/plugman/src/ui/fUpdateConfirm.lfm new file mode 100644 index 0000000..974f1bb --- /dev/null +++ b/plugman/src/ui/fUpdateConfirm.lfm @@ -0,0 +1,72 @@ +object frmUpdateConfirm: TfrmUpdateConfirm + Left = 200 + Height = 240 + Top = 120 + Width = 520 + Caption = 'Confirm Update' + ClientHeight = 240 + ClientWidth = 520 + Position = poScreenCenter + LCLVersion = '4.8.0.0' + object pnlMain: TPanel + Left = 0 + Height = 200 + Top = 0 + Width = 520 + Align = alClient + BevelOuter = bvNone + ClientHeight = 200 + ClientWidth = 520 + TabOrder = 0 + object lblDisclaimer: TLabel + Left = 16 + Height = 60 + Top = 16 + Width = 488 + AutoSize = False + Caption = 'Disclaimer' + WordWrap = True + end + object lblDetails: TLabel + Left = 16 + Height = 60 + Top = 88 + Width = 488 + AutoSize = False + Caption = 'Details' + WordWrap = True + end + end + object pnlButtons: TPanel + Left = 0 + Height = 40 + Top = 200 + Width = 520 + Align = alBottom + BevelOuter = bvNone + ClientHeight = 40 + ClientWidth = 520 + TabOrder = 1 + object btnOk: TButton + Left = 320 + Height = 30 + Top = 5 + Width = 90 + Caption = 'Proceed' + Default = True + OnClick = btnOkClick + TabOrder = 0 + end + object btnCancel: TButton + Left = 418 + Height = 30 + Top = 5 + Width = 90 + Cancel = True + Caption = 'Cancel' + ModalResult = 2 + OnClick = btnCancelClick + TabOrder = 1 + end + end +end diff --git a/plugman/src/ui/fUpdateConfirm.pas b/plugman/src/ui/fUpdateConfirm.pas new file mode 100644 index 0000000..2343db6 --- /dev/null +++ b/plugman/src/ui/fUpdateConfirm.pas @@ -0,0 +1,62 @@ +unit fUpdateConfirm; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, Forms, Controls, Dialogs, StdCtrls, ExtCtrls, uHttpCheck; + +type + TfrmUpdateConfirm = class(TForm) + pnlMain: TPanel; + lblDisclaimer: TLabel; + lblDetails: TLabel; + pnlButtons: TPanel; + btnOk: TButton; + btnCancel: TButton; + procedure btnOkClick(Sender: TObject); + procedure btnCancelClick(Sender: TObject); + public + function ConfirmUpdate(const PluginName: string; const Head: THeadResult): Boolean; + end; + +function ShowUpdateConfirm(const PluginName: string; const Head: THeadResult): Boolean; + +implementation + +{$R *.lfm} + +function ShowUpdateConfirm(const PluginName: string; const Head: THeadResult): Boolean; +var + F: TfrmUpdateConfirm; +begin + F := TfrmUpdateConfirm.Create(nil); + try + Result := F.ConfirmUpdate(PluginName, Head); + finally + F.Free; + end; +end; + +function TfrmUpdateConfirm.ConfirmUpdate(const PluginName: string; + const Head: THeadResult): Boolean; +begin + Caption := 'Update ' + PluginName; + lblDisclaimer.Caption := UPDATE_DISCLAIMER; + lblDetails.Caption := Format('Remote ETag: %s'#10'Last-Modified: %s'#10'Size: %d', + [Head.ETag, Head.LastModified, Head.ContentLength]); + Result := ShowModal = mrOk; +end; + +procedure TfrmUpdateConfirm.btnOkClick(Sender: TObject); +begin + ModalResult := mrOk; +end; + +procedure TfrmUpdateConfirm.btnCancelClick(Sender: TObject); +begin + ModalResult := mrCancel; +end; + +end. diff --git a/plugman/src/ui/fUrlBind.lfm b/plugman/src/ui/fUrlBind.lfm new file mode 100644 index 0000000..85cfd2e --- /dev/null +++ b/plugman/src/ui/fUrlBind.lfm @@ -0,0 +1,63 @@ +object frmUrlBind: TfrmUrlBind + Left = 240 + Height = 180 + Top = 160 + Width = 520 + Caption = 'Bind Download URL' + ClientHeight = 180 + ClientWidth = 520 + Position = poScreenCenter + LCLVersion = '4.8.0.0' + object lblUrl: TLabel + Left = 16 + Height = 15 + Top = 16 + Width = 20 + Caption = 'URL' + end + object lblStatus: TLabel + Left = 16 + Height = 30 + Top = 56 + Width = 488 + AutoSize = False + Caption = 'Status' + WordWrap = True + end + object edtUrl: TEdit + Left = 56 + Height = 23 + Top = 12 + Width = 448 + TabOrder = 0 + end + object btnProbe: TButton + Left = 16 + Height = 30 + Top = 96 + Width = 100 + Caption = 'Probe HEAD' + OnClick = btnProbeClick + TabOrder = 1 + end + object btnOk: TButton + Left = 320 + Height = 30 + Top = 136 + Width = 90 + Caption = 'OK' + Default = True + OnClick = btnOkClick + TabOrder = 2 + end + object btnCancel: TButton + Left = 418 + Height = 30 + Top = 136 + Width = 90 + Cancel = True + Caption = 'Cancel' + ModalResult = 2 + TabOrder = 3 + end +end diff --git a/plugman/src/ui/fUrlBind.pas b/plugman/src/ui/fUrlBind.pas new file mode 100644 index 0000000..db8f0aa --- /dev/null +++ b/plugman/src/ui/fUrlBind.pas @@ -0,0 +1,87 @@ +unit fUrlBind; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, Forms, Controls, Dialogs, StdCtrls, ExtCtrls, uPlugmanJson, uHttpCheck; + +type + TfrmUrlBind = class(TForm) + edtUrl: TEdit; + lblUrl: TLabel; + lblStatus: TLabel; + btnOk: TButton; + btnCancel: TButton; + btnProbe: TButton; + procedure btnOkClick(Sender: TObject); + procedure btnProbeClick(Sender: TObject); + public + function EditUrl(ARecord: TPluginRecord): Boolean; + end; + +function ShowUrlBindDialog(ARecord: TPluginRecord): Boolean; + +implementation + +{$R *.lfm} + +uses uDcPaths; + +function ShowUrlBindDialog(ARecord: TPluginRecord): Boolean; +var + F: TfrmUrlBind; +begin + F := TfrmUrlBind.Create(nil); + try + Result := F.EditUrl(ARecord); + finally + F.Free; + end; +end; + +function TfrmUrlBind.EditUrl(ARecord: TPluginRecord): Boolean; +var + Head: THeadResult; +begin + edtUrl.Text := ARecord.SourceUrl; + lblStatus.Caption := ''; + Result := ShowModal = mrOk; + if Result then + begin + ARecord.SourceUrl := Trim(edtUrl.Text); + if ARecord.SourceUrl <> '' then + begin + Head := ProbeUrl(ARecord.SourceUrl); + ARecord.HttpCaps.SupportsHead := Head.SupportsHead; + ARecord.HttpCaps.ProvidesEtag := Head.ETag <> ''; + ARecord.HttpCaps.ProvidesModified := Head.LastModified <> ''; + ARecord.State.ETag := Head.ETag; + ARecord.State.LastModified := Head.LastModified; + ARecord.State.LocalSize := Head.ContentLength; + ARecord.State.LastChecked := Now; + end; + PlugmanStore.SaveToFile(DcPaths.PlugmanJsonPath); + end; +end; + +procedure TfrmUrlBind.btnOkClick(Sender: TObject); +begin + ModalResult := mrOk; +end; + +procedure TfrmUrlBind.btnProbeClick(Sender: TObject); +var + Head: THeadResult; +begin + Head := ProbeUrl(Trim(edtUrl.Text)); + if Head.Success then + lblStatus.Caption := Format('HEAD OK. ETag=%s Size=%d', [Head.ETag, Head.ContentLength]) + else if not Head.SupportsHead then + lblStatus.Caption := 'Warning: server rejects HEAD. Full download required for updates.' + else + lblStatus.Caption := 'Probe failed: ' + Head.ErrorMessage; +end; + +end. diff --git a/plugman/src/update/uHttpCheck.pas b/plugman/src/update/uHttpCheck.pas new file mode 100644 index 0000000..d070de8 --- /dev/null +++ b/plugman/src/update/uHttpCheck.pas @@ -0,0 +1,135 @@ +unit uHttpCheck; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, uPlugmanJson; + +const + UPDATE_DISCLAIMER = + 'The remote file has changed. It cannot be verified if this is a newer version or a working build.'; + +type + THeadResult = record + Success: Boolean; + SupportsHead: Boolean; + ContentLength: Int64; + ETag: string; + LastModified: string; + ErrorMessage: string; + end; + +function ProbeUrl(const Url: string): THeadResult; +function DownloadUrl(const Url, DestFile: string; out Head: THeadResult): Boolean; +function HasRemoteChange(const Entry: TPluginRecord; const Head: THeadResult): Boolean; + +implementation + +uses + fphttpclient, opensslsockets; + +function HeaderValue(Headers: TStrings; const Name: string): string; +var + I: Integer; + P: Integer; + Line, Key: string; +begin + Result := ''; + if Headers = nil then Exit; + for I := 0 to Headers.Count - 1 do + begin + Line := Headers[I]; + P := Pos(':', Line); + if P > 0 then + begin + Key := Trim(Copy(Line, 1, P - 1)); + if SameText(Key, Name) then + Exit(Trim(Copy(Line, P + 1, MaxInt))); + end; + end; +end; + +function ProbeUrl(const Url: string): THeadResult; +var + Client: TFPHTTPClient; + RespHeaders: TStringList; +begin + Result.Success := False; + Result.SupportsHead := True; + Result.ContentLength := -1; + Result.ETag := ''; + Result.LastModified := ''; + Result.ErrorMessage := ''; + Client := TFPHTTPClient.Create(nil); + RespHeaders := TStringList.Create; + try + try + Client.AddHeader('User-Agent', 'DoubleCmd-Plugman/1.0'); + Client.Head(Url, RespHeaders); + Result.Success := (Client.ResponseStatusCode >= 200) and + (Client.ResponseStatusCode < 300); + Result.ETag := HeaderValue(RespHeaders, 'ETag'); + Result.LastModified := HeaderValue(RespHeaders, 'Last-Modified'); + Result.ContentLength := + StrToInt64Def(HeaderValue(RespHeaders, 'Content-Length'), -1); + except + on E: Exception do + begin + Result.ErrorMessage := E.Message; + Result.SupportsHead := False; + end; + end; + finally + RespHeaders.Free; + Client.Free; + end; +end; + +function DownloadUrl(const Url, DestFile: string; out Head: THeadResult): Boolean; +var + Client: TFPHTTPClient; + Stream: TFileStream; +begin + Result := False; + Head := ProbeUrl(Url); + Client := TFPHTTPClient.Create(nil); + Stream := TFileStream.Create(DestFile, fmCreate); + try + try + Client.AddHeader('User-Agent', 'DoubleCmd-Plugman/1.0'); + Client.Get(Url, Stream); + Result := (Client.ResponseStatusCode >= 200) and + (Client.ResponseStatusCode < 300); + Head.ETag := HeaderValue(Client.ResponseHeaders, 'ETag'); + Head.LastModified := HeaderValue(Client.ResponseHeaders, 'Last-Modified'); + Head.ContentLength := + StrToInt64Def(HeaderValue(Client.ResponseHeaders, 'Content-Length'), Stream.Size); + if Head.ContentLength < 0 then + Head.ContentLength := Stream.Size; + Head.Success := Result; + except + on E: Exception do + Head.ErrorMessage := E.Message; + end; + finally + Stream.Free; + Client.Free; + end; +end; + +function HasRemoteChange(const Entry: TPluginRecord; const Head: THeadResult): Boolean; +begin + Result := False; + if not Head.Success then Exit(False); + if (Entry.State.ETag <> '') and (Head.ETag <> '') then + Exit(not SameText(Entry.State.ETag, Head.ETag)); + if (Entry.State.LastModified <> '') and (Head.LastModified <> '') then + Exit(not SameText(Entry.State.LastModified, Head.LastModified)); + if (Entry.State.LocalSize > 0) and (Head.ContentLength > 0) then + Exit(Entry.State.LocalSize <> Head.ContentLength); + Result := True; +end; + +end. diff --git a/plugman/src/update/uPluginRollback.pas b/plugman/src/update/uPluginRollback.pas new file mode 100644 index 0000000..5596780 --- /dev/null +++ b/plugman/src/update/uPluginRollback.pas @@ -0,0 +1,79 @@ +unit uPluginRollback; + +{$mode objfpc}{$H+} + +interface + +uses + SysUtils, uPlugmanJson; + +function CanRollback(ARecord: TPluginRecord): Boolean; +procedure RollbackPlugin(ARecord: TPluginRecord; ClearBackupInfo: Boolean); + +implementation + +uses + FileUtil, uDcPaths, uDcRestart; + +type + TRollbackWork = class(TRestartWork) + private + FRecord: TPluginRecord; + FClearBackupInfo: Boolean; + public + constructor Create(ARecord: TPluginRecord; ClearBackupInfo: Boolean); + procedure Execute; override; + end; + +constructor TRollbackWork.Create(ARecord: TPluginRecord; ClearBackupInfo: Boolean); +begin + inherited Create; + FRecord := ARecord; + FClearBackupInfo := ClearBackupInfo; +end; + +procedure TRollbackWork.Execute; +var + TargetBinary, BackupPath: string; +begin + TargetBinary := DcPaths.PluginsBaseDir + FRecord.RelativeDir + FRecord.Filename; + BackupPath := DcPaths.PluginsBaseDir + FRecord.RelativeDir + + FRecord.Rollback.BackupFilename; + if not FileExists(BackupPath) then + raise Exception.Create('Backup file not found.'); + if FileExists(TargetBinary) then DeleteFile(TargetBinary); + if not CopyFile(BackupPath, TargetBinary) then + raise Exception.Create('Failed to restore backup file.'); + if FClearBackupInfo then + begin + FRecord.Rollback.Clear; + PlugmanStore.SaveToFile(DcPaths.PlugmanJsonPath); + end; +end; + +function CanRollback(ARecord: TPluginRecord): Boolean; +var + BackupPath: string; +begin + Result := False; + if (ARecord = nil) or not ARecord.Rollback.BackupExists then Exit; + BackupPath := DcPaths.PluginsBaseDir + ARecord.RelativeDir + + ARecord.Rollback.BackupFilename; + Result := FileExists(BackupPath); +end; + +procedure RollbackPlugin(ARecord: TPluginRecord; ClearBackupInfo: Boolean); +var + Work: TRollbackWork; +begin + if not CanRollback(ARecord) then + raise Exception.Create('No backup available for rollback.'); + Work := TRollbackWork.Create(ARecord, ClearBackupInfo); + try + WithDcRestart(Work); + finally + Work.Free; + end; +end; + +end. diff --git a/plugman/src/update/uPluginUpdate.pas b/plugman/src/update/uPluginUpdate.pas new file mode 100644 index 0000000..ce6f2bd --- /dev/null +++ b/plugman/src/update/uPluginUpdate.pas @@ -0,0 +1,90 @@ +unit uPluginUpdate; + +{$mode objfpc}{$H+} + +interface + +uses + SysUtils, uPlugmanJson, uHttpCheck; + +function CheckPluginUpdate(ARecord: TPluginRecord; out Head: THeadResult): Boolean; +function ApplyPluginUpdate(ARecord: TPluginRecord): Boolean; + +implementation + +uses + LazFileUtils, uDcPaths, uPluginInstall, DateUtils; + +function CheckPluginUpdate(ARecord: TPluginRecord; out Head: THeadResult): Boolean; +begin + Result := False; + if (ARecord = nil) or (ARecord.SourceUrl = '') then Exit; + if ARecord.HttpCaps.SupportsHead then + Head := ProbeUrl(ARecord.SourceUrl) + else + begin + Head.Success := False; + Head.SupportsHead := False; + end; + ARecord.State.LastChecked := Now; + if Head.Success then + begin + ARecord.HttpCaps.ProvidesEtag := Head.ETag <> ''; + ARecord.HttpCaps.ProvidesModified := Head.LastModified <> ''; + Result := HasRemoteChange(ARecord, Head); + end; + PlugmanStore.SaveToFile(DcPaths.PlugmanJsonPath); +end; + +function ApplyPluginUpdate(ARecord: TPluginRecord): Boolean; +var + TempArchive, TargetBinary, BackupPath: string; + Head: THeadResult; + Req: TInstallRequest; + + procedure CreateBackup; + begin + TargetBinary := DcPaths.PluginsBaseDir + ARecord.RelativeDir + ARecord.Filename; + BackupPath := TargetBinary + '.bkp'; + if FileExists(TargetBinary) then + begin + if FileExists(BackupPath) then DeleteFile(BackupPath); + RenameFile(TargetBinary, BackupPath); + ARecord.Rollback.BackupExists := True; + ARecord.Rollback.BackupFilename := ExtractFileName(BackupPath); + ARecord.Rollback.BackupTimestamp := Now; + end; + end; + +begin + Result := False; + if ARecord.SourceUrl = '' then Exit; + TempArchive := IncludeTrailingPathDelimiter(GetTempDir) + + 'plugman_dl_' + ARecord.Id + ExtractFileExt(ARecord.SourceUrl); + if not DownloadUrl(ARecord.SourceUrl, TempArchive, Head) then + raise Exception.Create('Download failed: ' + Head.ErrorMessage); + CreateBackup; + try + Req.ArchivePath := TempArchive; + Req.SourceUrl := ARecord.SourceUrl; + Req.SelectedIndex := 0; + Req.WcxExtensions := ''; + InstallPluginFromArchive(Req); + ARecord.State.ETag := Head.ETag; + ARecord.State.LastModified := Head.LastModified; + ARecord.State.LocalSize := Head.ContentLength; + ARecord.State.LastChecked := Now; + PlugmanStore.SaveToFile(DcPaths.PlugmanJsonPath); + Result := True; + except + if ARecord.Rollback.BackupExists and FileExists(BackupPath) then + begin + if FileExists(TargetBinary) then DeleteFile(TargetBinary); + RenameFile(BackupPath, TargetBinary); + end; + raise; + end; + if FileExists(TempArchive) then DeleteFile(TempArchive); +end; + +end. diff --git a/plugman/test/test_core.lpr b/plugman/test/test_core.lpr new file mode 100644 index 0000000..2e47e66 --- /dev/null +++ b/plugman/test/test_core.lpr @@ -0,0 +1,30 @@ +program test_core; + +{$mode objfpc}{$H+} + +uses + SysUtils, uPluginTypes, uDcPaths, uPlugmanJson, uDcXml, uPluginScanner; + +begin + DcPaths.ConfigDir := ExpandFileName('../testdata/config/'); + DcPaths.CommanderPath := ExpandFileName('../testdata/commander'); + DcPaths.LoadSettings(DcPaths.ConfigDir + 'plugman.ini'); + + if not FileExists(DcPaths.DoubleCmdXmlPath) then + raise Exception.Create('doublecmd.xml missing'); + + PlugmanStore.LoadFromFile(DcPaths.PlugmanJsonPath); + if PlugmanStore.SchemaVersion <> 1 then + raise Exception.Create('schema version mismatch'); + + with TDcXmlDocument.Create do + try + LoadFromFile(DcPaths.DoubleCmdXmlPath); + if Length(EnumerateActive(ptWLX)) = 0 then + raise Exception.Create('expected WLX plugin in XML'); + finally + Free; + end; + + WriteLn('Core integration checks passed.'); +end. diff --git a/plugman/testdata/commander/plugins/wlx/testplugin/test.wlx b/plugman/testdata/commander/plugins/wlx/testplugin/test.wlx new file mode 100644 index 0000000..bdf3359 --- /dev/null +++ b/plugman/testdata/commander/plugins/wlx/testplugin/test.wlx @@ -0,0 +1 @@ +ELF test placeholder diff --git a/plugman/testdata/config/doublecmd.xml b/plugman/testdata/config/doublecmd.xml new file mode 100644 index 0000000..5d8847c --- /dev/null +++ b/plugman/testdata/config/doublecmd.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<DoubleCommander> + <Plugins> + <WlxPlugins> + <WlxPlugin Enabled="True"> + <Name>TestPlugin</Name> + <Path>%COMMANDER_PATH%/plugins/wlx/testplugin/test.wlx</Path> + <DetectString>EXT="TXT"</DetectString> + </WlxPlugin> + </WlxPlugins> + </Plugins> +</DoubleCommander> diff --git a/plugman/testdata/config/plugman.ini b/plugman/testdata/config/plugman.ini new file mode 100644 index 0000000..cedccff --- /dev/null +++ b/plugman/testdata/config/plugman.ini @@ -0,0 +1,7 @@ +[Paths] +ConfigDir=/home/pplupo/repos/doublecmd_plugman/testdata/config/ +CommanderPath=/home/pplupo/repos/doublecmd_plugman/testdata/commander +CommanderExe= +[General] +EditorCommand=echo +AutoCheckUpdates=0 diff --git a/plugman/testdata/config/plugman.json b/plugman/testdata/config/plugman.json new file mode 100644 index 0000000..75d1fdd --- /dev/null +++ b/plugman/testdata/config/plugman.json @@ -0,0 +1 @@ +{"schema_version":1,"last_updated":"2026-06-16T00:00:00Z","plugins":[]} diff --git a/sdk/wlxplugin.h b/sdk/wlxplugin.h index 8f33fb2..eebce8e 100644 --- a/sdk/wlxplugin.h +++ b/sdk/wlxplugin.h @@ -9,6 +9,7 @@ #define lc_newparams 2 #define lc_selectall 3 #define lc_setpercent 4 +#define lc_focus 5 #define lcp_wraptext 1 #define lcp_fittowindow 2 diff --git a/wfx/rclone/src/rclone.res b/wfx/rclone/src/rclone.res index 2609d89..93df44c 100644 Binary files a/wfx/rclone/src/rclone.res and b/wfx/rclone/src/rclone.res differ diff --git a/wlx/dbview/.gitignore b/wlx/dbview/.gitignore new file mode 100644 index 0000000..567609b --- /dev/null +++ b/wlx/dbview/.gitignore @@ -0,0 +1 @@ +build/ diff --git a/wlx/dbview/CMakeLists.txt b/wlx/dbview/CMakeLists.txt new file mode 100644 index 0000000..05647a2 --- /dev/null +++ b/wlx/dbview/CMakeLists.txt @@ -0,0 +1,140 @@ +cmake_minimum_required(VERSION 3.20) +project(dbview_qt6 CXX C) + +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_AUTOMOC ON) + +# Allow older cmake_minimum_required in FetchContent dependencies +set(CMAKE_POLICY_VERSION_MINIMUM 3.5 CACHE STRING "" FORCE) + +# Optional engine flags +option(ENABLE_ROCKSDB "Enable RocksDB support (large dependency)" OFF) + +find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets Sql) + +# Ensure the platform static library is built with -fPIC +set(CMAKE_POSITION_INDEPENDENT_CODE ON) + +# Pull in the platform library (builds libwlxbase_wlqt.a) +add_subdirectory( + ${CMAKE_CURRENT_SOURCE_DIR}/../wlxbase_wlqt + ${CMAKE_CURRENT_BINARY_DIR}/wlxbase_wlqt +) + +# --------------------------------------------------------------------------- +# External dependencies via FetchContent +# --------------------------------------------------------------------------- +include(FetchContent) + +# --- DuckDB --- +set(BUILD_SHELL OFF CACHE BOOL "" FORCE) +set(BUILD_UNITTESTS OFF CACHE BOOL "" FORCE) +set(BUILD_BENCHMARKS OFF CACHE BOOL "" FORCE) +set(BUILD_EXTENSIONS "" CACHE STRING "" FORCE) +set(ENABLE_EXTENSION_AUTOLOADING OFF CACHE BOOL "" FORCE) +set(ENABLE_EXTENSION_AUTOINSTALL OFF CACHE BOOL "" FORCE) +FetchContent_Declare(duckdb + GIT_REPOSITORY https://github.com/duckdb/duckdb.git + GIT_TAG v1.3.0 + GIT_SHALLOW TRUE +) +FetchContent_MakeAvailable(duckdb) + +# --- LevelDB --- +set(LEVELDB_BUILD_TESTS OFF CACHE BOOL "" FORCE) +set(LEVELDB_BUILD_BENCHMARKS OFF CACHE BOOL "" FORCE) +FetchContent_Declare(leveldb + GIT_REPOSITORY https://github.com/google/leveldb.git + GIT_TAG 1.23 + GIT_SHALLOW TRUE +) +FetchContent_MakeAvailable(leveldb) + +# --- RocksDB (optional) --- +if(ENABLE_ROCKSDB) + set(WITH_TESTS OFF CACHE BOOL "" FORCE) + set(WITH_BENCHMARK_TOOLS OFF CACHE BOOL "" FORCE) + set(WITH_TOOLS OFF CACHE BOOL "" FORCE) + set(WITH_GFLAGS OFF CACHE BOOL "" FORCE) + set(ROCKSDB_BUILD_SHARED OFF CACHE BOOL "" FORCE) + set(FAIL_ON_WARNINGS OFF CACHE BOOL "" FORCE) + FetchContent_Declare(rocksdb + GIT_REPOSITORY https://github.com/facebook/rocksdb.git + GIT_TAG v9.11.2 + GIT_SHALLOW TRUE + ) + FetchContent_MakeAvailable(rocksdb) +endif() + +# --------------------------------------------------------------------------- +# Plugin library +# --------------------------------------------------------------------------- +# NOTE: Headers must be listed explicitly so AUTOMOC processes them. +# RocksDbEngine.h is excluded when ENABLE_ROCKSDB is OFF to prevent MOC +# from generating code that references uncompiled RocksDbEngine symbols. +set(DBVIEW_HEADERS + include/DbEngine.h + include/DbViewWidget.h + include/DuckDbEngine.h + include/DuckDbModel.h + include/KeyValueModel.h + include/LevelDbEngine.h + include/SqliteEngine.h +) + +set(DBVIEW_SOURCES + ${DBVIEW_HEADERS} + src/wlx_entry.cpp + src/DbEngine.cpp + src/DbViewWidget.cpp + src/SqliteEngine.cpp + src/DuckDbEngine.cpp + src/DuckDbModel.cpp + src/LevelDbEngine.cpp + src/KeyValueModel.cpp +) + +if(ENABLE_ROCKSDB) + list(APPEND DBVIEW_SOURCES include/RocksDbEngine.h src/RocksDbEngine.cpp) +endif() + +add_library(dbview_qt6 SHARED ${DBVIEW_SOURCES}) + +if(ENABLE_ROCKSDB) + target_compile_definitions(dbview_qt6 PRIVATE ENABLE_ROCKSDB) +endif() + +set_target_properties(dbview_qt6 PROPERTIES + PREFIX "" + SUFFIX ".wlx" +) + +target_include_directories(dbview_qt6 PRIVATE + include + ${CMAKE_CURRENT_SOURCE_DIR}/../../sdk + ${duckdb_SOURCE_DIR}/src/include + ${leveldb_SOURCE_DIR}/include +) + +if(ENABLE_ROCKSDB) + target_include_directories(dbview_qt6 PRIVATE + ${rocksdb_SOURCE_DIR}/include + ) +endif() + +set(DBVIEW_LINK_LIBS + wlxbase_wlqt + Qt6::Widgets + Qt6::Gui + Qt6::Core + Qt6::Sql + duckdb + leveldb +) + +if(ENABLE_ROCKSDB) + list(APPEND DBVIEW_LINK_LIBS rocksdb) +endif() + +target_link_libraries(dbview_qt6 PRIVATE ${DBVIEW_LINK_LIBS}) diff --git a/wlx/dbview/README.md b/wlx/dbview/README.md new file mode 100644 index 0000000..f147faf --- /dev/null +++ b/wlx/dbview/README.md @@ -0,0 +1,121 @@ +# dbview — Multi-Engine Database WLX Plugin + +A Qt6 WLX plugin for [Double Commander](https://doublecmd.github.io/) that views and edits database files: **SQLite**, **DuckDB**, **LevelDB**, and optionally **RocksDB**. + +Built on the [`wayland_qt_base`](../../plugin-platform/wlx/wayland_qt_base/) platform library. + +## Features + +### All Engines +- **Find** (Ctrl+F) — search across all visible cells +- **Copy selection** — Ctrl+C copies tab-separated text +- **Row count display** — shows total row count in toolbar +- **Engine label** — toolbar displays which engine is active +- **`GridMode::LiveDatabase`** — no RAM snapshots, zero memory overhead + +### SQL Engines (SQLite, DuckDB) +- **Table/View selector** — dropdown lists all tables and views +- **In-place editing** — cells are editable, changes buffered +- **Submit / Revert** (Ctrl+S / Ctrl+Z) — commit or rollback pending changes +- **Lazy loading** — DuckDB uses LIMIT/OFFSET chunks, SQLite uses QSqlTableModel + +### KV Engines (LevelDB, RocksDB) +- **Two-column grid** — Key | Value +- **Auto-save** — writes go directly to the database (no buffering) +- **Binary detection** — non-UTF-8 values shown as `[Binary Data - X bytes]` +- **Hex view toggle** — context menu to switch to hex string representation +- **Save value as file** — context menu to export raw binary value +- **Load value from file** — context menu to overwrite a value from a file +- **Sliding window cache** — only ~1000 entries in RAM, re-centered on scroll +- **Directory detection** — selecting a `.sst`/`.ldb` file opens the parent LevelDB/RocksDB directory + +## Architecture + +``` +dbview_qt6.wlx (shared library) + ├── wlx_entry.cpp → WLX C interface + ├── DbViewWidget → Engine-agnostic UI shell + │ + ├── DbEngine (abstract) → Unified backend interface + factory + │ ├── SqliteEngine → QSQLITE driver + QSqlTableModel + │ ├── DuckDbEngine → DuckDB C++ API + DuckDbModel + │ ├── LevelDbEngine → LevelDB C++ API + KeyValueModel + │ └── RocksDbEngine → RocksDB C++ API + KeyValueModel [optional] + │ + ├── DuckDbModel → QAbstractTableModel (LIMIT/OFFSET chunks) + ├── KeyValueModel → QAbstractTableModel (sliding window cache) + │ + └── wayland_qt_base (static library via submodule) +``` + +### Adding a New Database Engine + +1. Create `include/NewEngine.h` inheriting `DbEngine` +2. Implement `open()`, `close()`, `tableNames()`, `modelForTable()`, etc. +3. Add to the factory in `src/DbEngine.cpp` +4. Add to `CMakeLists.txt` sources and link the database library + +## Building + +### Default (SQLite + DuckDB + LevelDB) + +```bash +cd wlx/dbview +mkdir build && cd build +cmake .. +make -j$(nproc) +``` + +### With RocksDB (optional, large dependency) + +```bash +cmake .. -DENABLE_ROCKSDB=ON +make -j$(nproc) +``` + +> **Note:** First build takes 5-10 minutes as DuckDB and LevelDB are downloaded +> and compiled from source via CMake FetchContent. + +**Requirements:** +- Qt6 (Core, Gui, Widgets, Sql) +- CMake ≥ 3.20 +- Git (for FetchContent downloads) +- The `plugin-platform` submodule (`git submodule update --init`) + +**Output:** `dbview_qt6.wlx` + +## Installation + +Copy `dbview_qt6.wlx` to your Double Commander plugins directory and configure the detect string: + +``` +EXT="DB" | EXT="SQLITE" | EXT="SQLITE3" | EXT="DB3" | EXT="DUCKDB" | EXT="LDB" | EXT="SST" +``` + +## Keyboard Shortcuts + +| Shortcut | Action | +|----------|--------| +| Ctrl+S | Submit changes (SQL engines only) | +| Ctrl+Z | Revert all pending changes (SQL engines only) | +| Ctrl+F | Toggle Find panel | +| Ctrl+C | Copy selection | + +## Engine Selection Logic + +The factory (`DbEngine::createForFile()`) dispatches by file extension: + +| Extension | Engine | +|-----------|--------| +| `.sqlite`, `.sqlite3`, `.db`, `.db3` | SQLite | +| `.duckdb` | DuckDB | +| `.ldb`, `.sst` | LevelDB (checks parent dir for CURRENT file) | +| `.sst` (if LevelDB fails) | RocksDB (when `ENABLE_ROCKSDB=ON`) | +| Unknown | SQLite fallback (tries to open and checks for tables) | + +## Future + +- Additional database backends (PostgreSQL, MySQL) via QSqlDatabase drivers +- Schema inspection panel (column types, indexes, triggers) +- SQL query editor +- Realm support (deferred) diff --git a/wlx/dbview/include/DbEngine.h b/wlx/dbview/include/DbEngine.h new file mode 100644 index 0000000..5d56312 --- /dev/null +++ b/wlx/dbview/include/DbEngine.h @@ -0,0 +1,64 @@ +#pragma once + +#include <QObject> +#include <QString> +#include <QStringList> +#include <memory> + +class QAbstractItemModel; + +/// Abstract backend interface for all database engines. +/// +/// Provides a polymorphic API that DbViewWidget programs against, +/// decoupling the UI from any specific database technology. +/// +/// SQL engines (SQLite, DuckDB) return QSqlTableModel or custom models +/// with multiple tables. KV engines (LevelDB, RocksDB) return a two-column +/// KeyValueModel with a single "table". +class DbEngine : public QObject { + Q_OBJECT +public: + explicit DbEngine(QObject *parent = nullptr) : QObject(parent) {} + ~DbEngine() override = default; + + /// Open a database file (or directory for KV stores). + virtual bool open(const QString &filepath) = 0; + + /// Close the database and release resources. + virtual void close() = 0; + + /// List of table/keyspace names. KV stores return {"<keys>"}. + virtual QStringList tableNames() const = 0; + + /// List of view names (SQL engines only). + virtual QStringList viewNames() const { return {}; } + + /// Get a model for the given table. Ownership stays with the engine. + /// The model is replaced when a different table is selected. + virtual QAbstractItemModel *modelForTable(const QString &tableName) = 0; + + /// Currently selected table name. + virtual QString currentTableName() const = 0; + + /// Whether the engine has multiple switchable tables. + virtual bool supportsMultipleTables() const = 0; + + /// Whether the engine buffers writes until explicit submit. + /// SQL engines: true (OnManualSubmit). KV engines: false (direct writes). + virtual bool supportsSubmitRevert() const = 0; + + /// Human-readable engine name for display in the toolbar. + virtual QString engineName() const = 0; + + /// Submit buffered writes to the database. SQL engines only. + virtual bool submitAll() { return false; } + + /// Revert all pending changes. SQL engines only. + virtual bool revertAll() { return false; } + + /// Last error message from the engine. + virtual QString lastError() const { return {}; } + + /// Factory: pick the right engine based on file extension / content. + static std::unique_ptr<DbEngine> createForFile(const QString &filepath); +}; diff --git a/wlx/dbview/include/DbViewWidget.h b/wlx/dbview/include/DbViewWidget.h new file mode 100644 index 0000000..fd94d34 --- /dev/null +++ b/wlx/dbview/include/DbViewWidget.h @@ -0,0 +1,86 @@ +#pragma once + +#include <QWidget> +#include <QListWidget> +#include <QTableView> +#include <memory> + +class QAction; + +namespace QtWlPlugin { +class FocusManager; +class PluginToolBar; +class EditableGridWidget; +class FindReplacePanel; +class FilterableHeaderView; +class PluginStatusBar; +class PluginSplitView; +} + +class DbEngine; +class KeyValueModel; +class QSortFilterProxyModel; +class QUndoStack; + +/// Main plugin widget for database file viewing/editing. +/// +/// Layout: +/// ┌────────────────────────────────────────────┐ +/// │ PluginToolBar │ +/// ├────────────┬───────────────────────────────┤ +/// │ QListWidget│ FilterableHeaderView │ +/// │ (tables/ ├───────────────────────────────┤ +/// │ views) │ QTableView (grid) │ +/// │ │ │ +/// ├────────────┴───────────────────────────────┤ +/// │ PluginStatusBar │ +/// └────────────────────────────────────────────┘ +/// +/// Engine-agnostic: works with any DbEngine subclass (SQLite, DuckDB, +/// LevelDB, RocksDB). Adapts the UI based on engine capabilities. +class DbViewWidget : public QWidget { + Q_OBJECT +public: + explicit DbViewWidget(QWidget *parent = nullptr); + ~DbViewWidget() override; + + bool loadFile(const QString &filepath); + + // WLX bridge accessors + QtWlPlugin::FocusManager *focusManager() const; + QtWlPlugin::EditableGridWidget *grid() const; + QString getSelectionAsText(char sep = '\t'); + +private slots: + void onTableSelected(QListWidgetItem *current, QListWidgetItem *previous); + void onSubmitChanges(); + void onRevertChanges(); + void onFind(bool forward); + +private: + void setupUi(const QString &firstTable); + void setupToolbar(); + void setupFindReplace(); + void rebuildGrid(const QString &tableName); + void updateStatusBar(); + void populateTableList(); + void setupGridContextMenu(); + void openValueInspector(const QModelIndex &index); + + std::unique_ptr<DbEngine> m_engine; + QtWlPlugin::FocusManager *m_fm = nullptr; + QtWlPlugin::PluginToolBar *m_toolbar = nullptr; + QtWlPlugin::EditableGridWidget *m_grid = nullptr; + QtWlPlugin::FindReplacePanel *m_findPanel = nullptr; + QtWlPlugin::FilterableHeaderView *m_filterHeader = nullptr; + QtWlPlugin::PluginStatusBar *m_statusBar = nullptr; + QtWlPlugin::PluginSplitView *m_splitView = nullptr; + + QTableView *m_tableView = nullptr; + QListWidget *m_tableList = nullptr; + QAction *m_actSubmit = nullptr; + QAction *m_actRevert = nullptr; + QSortFilterProxyModel *m_filterProxy = nullptr; + QUndoStack *m_undoStack = nullptr; + QString m_filepath; +}; diff --git a/wlx/dbview/include/DuckDbEngine.h b/wlx/dbview/include/DuckDbEngine.h new file mode 100644 index 0000000..c6b9afa --- /dev/null +++ b/wlx/dbview/include/DuckDbEngine.h @@ -0,0 +1,46 @@ +#pragma once + +#include "DbEngine.h" +#include <memory> + +namespace duckdb { +class DuckDB; +class Connection; +} + +/// DuckDB engine: opens DuckDB database files via the native C++ API. +/// +/// Uses a custom DuckDbModel (QAbstractTableModel) instead of QSqlTableModel +/// since there's no Qt SQL driver for DuckDB. +/// +/// Supports multiple tables, submit/revert via BEGIN/COMMIT/ROLLBACK. +class DuckDbEngine : public DbEngine { + Q_OBJECT +public: + explicit DuckDbEngine(QObject *parent = nullptr); + ~DuckDbEngine() override; + + bool open(const QString &filepath) override; + void close() override; + + QStringList tableNames() const override; + QStringList viewNames() const override; + QAbstractItemModel *modelForTable(const QString &tableName) override; + QString currentTableName() const override; + + bool supportsMultipleTables() const override { return true; } + bool supportsSubmitRevert() const override { return true; } + QString engineName() const override { return QStringLiteral("DuckDB"); } + + bool submitAll() override; + bool revertAll() override; + QString lastError() const override; + +private: + std::unique_ptr<duckdb::DuckDB> m_duckdb; + std::unique_ptr<duckdb::Connection> m_conn; + QString m_currentTable; + QString m_lastError; + QAbstractItemModel *m_currentModel = nullptr; + bool m_inTransaction = false; +}; diff --git a/wlx/dbview/include/DuckDbModel.h b/wlx/dbview/include/DuckDbModel.h new file mode 100644 index 0000000..3ee914d --- /dev/null +++ b/wlx/dbview/include/DuckDbModel.h @@ -0,0 +1,52 @@ +#pragma once + +#include <QAbstractTableModel> +#include <QVariant> +#include <QVector> +#include <QStringList> + +namespace duckdb { +class Connection; +} + +/// Custom QAbstractTableModel for DuckDB query results. +/// +/// Loads data in chunks using LIMIT/OFFSET for lazy loading. +/// Supports editing via UPDATE statements. +class DuckDbModel : public QAbstractTableModel { + Q_OBJECT +public: + explicit DuckDbModel(duckdb::Connection *conn, const QString &tableName, + QObject *parent = nullptr); + + int rowCount(const QModelIndex &parent = QModelIndex()) const override; + int columnCount(const QModelIndex &parent = QModelIndex()) const override; + QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; + QVariant headerData(int section, Qt::Orientation orientation, int role) const override; + Qt::ItemFlags flags(const QModelIndex &index) const override; + bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override; + void fetchMore(const QModelIndex &parent) override; + bool canFetchMore(const QModelIndex &parent) const override; + + void sort(int column, Qt::SortOrder order = Qt::AscendingOrder) override; + + bool select(); + + int64_t rowId(int row) const { return m_rowIds[row]; } + bool hasRowId() const { return m_hasRowId; } + +private: + void loadChunk(int offset, int limit); + + duckdb::Connection *m_conn; + QString m_tableName; + QStringList m_columnNames; + QVector<QVector<QVariant>> m_data; + int m_totalRows = 0; + bool m_allFetched = false; + int m_sortColumn = -1; + Qt::SortOrder m_sortOrder = Qt::AscendingOrder; + bool m_hasRowId = false; + QVector<int64_t> m_rowIds; + static constexpr int kChunkSize = 1000; +}; diff --git a/wlx/dbview/include/KeyValueModel.h b/wlx/dbview/include/KeyValueModel.h new file mode 100644 index 0000000..287c25d --- /dev/null +++ b/wlx/dbview/include/KeyValueModel.h @@ -0,0 +1,78 @@ +#pragma once + +#include <QAbstractTableModel> +#include <QVector> +#include <QByteArray> +#include <QSet> +#include <functional> + +/// QAbstractTableModel for Key-Value stores (LevelDB, RocksDB). +/// +/// Uses a sliding window cache of ~1000 entries centered on the viewport. +/// Binary values that fail UTF-8 validation are displayed as +/// "[Binary Data - X bytes]" with support for hex view toggle +/// and save/load binary values as files. +/// +/// This model works with abstract iterator callbacks so the same model +/// serves both LevelDB and RocksDB. +class KeyValueModel : public QAbstractTableModel { + Q_OBJECT +public: + struct Entry { + QByteArray key; + QByteArray value; + }; + + /// Iterator abstraction: the engine provides callbacks for iteration. + struct IteratorOps { + /// Fetch entries for the window [startIndex, startIndex + count). + std::function<QVector<Entry>(int startIndex, int count)> fetchWindow; + + /// Write a value for the given key. Returns true on success. + std::function<bool(const QByteArray &key, const QByteArray &value)> putValue; + + /// Delete a key. Returns true on success. + std::function<bool(const QByteArray &key)> deleteKey; + }; + + explicit KeyValueModel(int totalRows, IteratorOps ops, QObject *parent = nullptr); + + int rowCount(const QModelIndex &parent = QModelIndex()) const override; + int columnCount(const QModelIndex &parent = QModelIndex()) const override; + QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; + QVariant headerData(int section, Qt::Orientation orientation, int role) const override; + Qt::ItemFlags flags(const QModelIndex &index) const override; + bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override; + + /// Check if a value at a given row is binary (non-UTF-8). + bool isBinaryValue(int row) const; + + /// Get raw binary value for a row (for save-to-file). + QByteArray rawValue(int row) const; + + /// Get raw key for a row. + QByteArray rawKey(int row) const; + + /// Set hex display mode for a row. + void setHexMode(int row, bool enabled); + + /// Replace a value from file contents. + bool loadValueFromFile(int row, const QByteArray &fileData); + +private: + void ensureCached(int row) const; + static bool isValidUtf8(const QByteArray &data); + static QString formatBinaryPlaceholder(int size); + static QString toHexString(const QByteArray &data); + + int m_totalRows; + IteratorOps m_ops; + + // Sliding window cache + static constexpr int kWindowSize = 1000; + mutable QVector<Entry> m_cache; + mutable int m_cacheStartRow = -1; + + // Per-row hex display toggle + mutable QSet<int> m_hexRows; +}; diff --git a/wlx/dbview/include/LevelDbEngine.h b/wlx/dbview/include/LevelDbEngine.h new file mode 100644 index 0000000..f1912cf --- /dev/null +++ b/wlx/dbview/include/LevelDbEngine.h @@ -0,0 +1,38 @@ +#pragma once + +#include "DbEngine.h" +#include <memory> + +namespace leveldb { class DB; } + +/// LevelDB engine: opens LevelDB directories as Key-Value stores. +/// +/// When the user selects a file inside a LevelDB directory (e.g. .sst, .ldb), +/// the engine resolves the parent directory and opens the entire DB. +/// Verifies the presence of a CURRENT file to confirm it's a valid LevelDB. +/// +/// Returns a KeyValueModel with 2 columns: Key, Value. +class LevelDbEngine : public DbEngine { + Q_OBJECT +public: + explicit LevelDbEngine(QObject *parent = nullptr); + ~LevelDbEngine() override; + + bool open(const QString &filepath) override; + void close() override; + + QStringList tableNames() const override; + QAbstractItemModel *modelForTable(const QString &tableName) override; + QString currentTableName() const override; + + bool supportsMultipleTables() const override { return false; } + bool supportsSubmitRevert() const override { return false; } + QString engineName() const override { return QStringLiteral("LevelDB"); } + +private: + int countKeys() const; + + leveldb::DB *m_db = nullptr; + int m_keyCount = 0; + QAbstractItemModel *m_model = nullptr; +}; diff --git a/wlx/dbview/include/RocksDbEngine.h b/wlx/dbview/include/RocksDbEngine.h new file mode 100644 index 0000000..3b63241 --- /dev/null +++ b/wlx/dbview/include/RocksDbEngine.h @@ -0,0 +1,38 @@ +#pragma once + +#include "DbEngine.h" +#include <memory> + +namespace ROCKSDB_NAMESPACE { class DB; } + +/// RocksDB engine: opens RocksDB directories as Key-Value stores. +/// +/// Functionally identical to LevelDbEngine but uses the RocksDB API. +/// Only compiled when ENABLE_ROCKSDB=ON is set in CMake. +/// +/// Like LevelDB, resolves file paths to their parent directory +/// and checks for a CURRENT file to verify validity. +class RocksDbEngine : public DbEngine { + Q_OBJECT +public: + explicit RocksDbEngine(QObject *parent = nullptr); + ~RocksDbEngine() override; + + bool open(const QString &filepath) override; + void close() override; + + QStringList tableNames() const override; + QAbstractItemModel *modelForTable(const QString &tableName) override; + QString currentTableName() const override; + + bool supportsMultipleTables() const override { return false; } + bool supportsSubmitRevert() const override { return false; } + QString engineName() const override { return QStringLiteral("RocksDB"); } + +private: + int countKeys() const; + + ROCKSDB_NAMESPACE::DB *m_db = nullptr; + int m_keyCount = 0; + QAbstractItemModel *m_model = nullptr; +}; diff --git a/wlx/dbview/include/SqliteEngine.h b/wlx/dbview/include/SqliteEngine.h new file mode 100644 index 0000000..fd13cf3 --- /dev/null +++ b/wlx/dbview/include/SqliteEngine.h @@ -0,0 +1,42 @@ +#pragma once + +#include "DbEngine.h" +#include <QSqlDatabase> + +class QSqlTableModel; + +/// SQLite engine: wraps Qt's QSQLITE driver via QSqlTableModel. +/// +/// Uses OnManualSubmit editing strategy so changes are buffered +/// until explicit submitAll() (wired to Ctrl+S in the toolbar). +/// +/// Each instance creates a unique QSqlDatabase connection name +/// via QUuid to avoid collisions when multiple plugin windows are open. +class SqliteEngine : public DbEngine { + Q_OBJECT +public: + explicit SqliteEngine(QObject *parent = nullptr); + ~SqliteEngine() override; + + bool open(const QString &filepath) override; + void close() override; + + QStringList tableNames() const override; + QStringList viewNames() const override; + QAbstractItemModel *modelForTable(const QString &tableName) override; + QString currentTableName() const override; + + bool supportsMultipleTables() const override { return true; } + bool supportsSubmitRevert() const override { return true; } + QString engineName() const override { return QStringLiteral("SQLite"); } + + bool submitAll() override; + bool revertAll() override; + QString lastError() const override; + +private: + QSqlDatabase m_db; + QString m_connectionName; + QString m_currentTable; + QSqlTableModel *m_currentModel = nullptr; +}; diff --git a/wlx/dbview/src/DbEngine.cpp b/wlx/dbview/src/DbEngine.cpp new file mode 100644 index 0000000..d8ec3bf --- /dev/null +++ b/wlx/dbview/src/DbEngine.cpp @@ -0,0 +1,85 @@ +#include "DbEngine.h" + +#include "SqliteEngine.h" +#include "DuckDbEngine.h" +#include "LevelDbEngine.h" + +#ifdef ENABLE_ROCKSDB +#include "RocksDbEngine.h" +#endif + +#include <QFileInfo> +#include <QFile> + +std::unique_ptr<DbEngine> DbEngine::createForFile(const QString &filepath) +{ + QFileInfo info(filepath); + QString ext = info.suffix().toLower(); + + // --- SQL engines --- + + // SQLite + if (ext == QStringLiteral("sqlite") || ext == QStringLiteral("sqlite3") + || ext == QStringLiteral("db") || ext == QStringLiteral("db3")) { + auto engine = std::make_unique<SqliteEngine>(); + if (engine->open(filepath)) { + if (!engine->tableNames().isEmpty() || !engine->viewNames().isEmpty()) + return engine; + } + // Fallback: might be a DuckDB file with .db extension + auto duckEngine = std::make_unique<DuckDbEngine>(); + if (duckEngine->open(filepath)) { + if (!duckEngine->tableNames().isEmpty() || !duckEngine->viewNames().isEmpty()) + return duckEngine; + } + // If neither has tables, return SQLite anyway as default + auto fallbackEngine = std::make_unique<SqliteEngine>(); + if (fallbackEngine->open(filepath)) + return fallbackEngine; + } + + // DuckDB + if (ext == QStringLiteral("duckdb")) { + auto engine = std::make_unique<DuckDbEngine>(); + if (engine->open(filepath)) + return engine; + } + + // --- KV engines --- + + // LevelDB: files inside a LevelDB directory + if (ext == QStringLiteral("ldb") || ext == QStringLiteral("sst") + || ext == QStringLiteral("log")) { + // Check if parent dir looks like a LevelDB directory + QString parentDir = info.absolutePath(); + if (QFile::exists(parentDir + QStringLiteral("/CURRENT"))) { + auto engine = std::make_unique<LevelDbEngine>(); + if (engine->open(filepath)) + return engine; + } + } + +#ifdef ENABLE_ROCKSDB + // RocksDB: same file extensions as LevelDB, try if LevelDB failed + if (ext == QStringLiteral("sst") || ext == QStringLiteral("log")) { + QString parentDir = info.absolutePath(); + if (QFile::exists(parentDir + QStringLiteral("/CURRENT"))) { + auto engine = std::make_unique<RocksDbEngine>(); + if (engine->open(filepath)) + return engine; + } + } +#endif + + // --- Fallback: try SQLite for any unknown extension --- + { + auto engine = std::make_unique<SqliteEngine>(); + if (engine->open(filepath)) { + // Check if it actually has tables + if (!engine->tableNames().isEmpty() || !engine->viewNames().isEmpty()) + return engine; + } + } + + return nullptr; +} diff --git a/wlx/dbview/src/DbViewWidget.cpp b/wlx/dbview/src/DbViewWidget.cpp new file mode 100644 index 0000000..268f753 --- /dev/null +++ b/wlx/dbview/src/DbViewWidget.cpp @@ -0,0 +1,802 @@ +#include "DbViewWidget.h" +#include "DbEngine.h" +#include "KeyValueModel.h" +#include "DuckDbModel.h" + +#include <QDialog> +#include <QDialogButtonBox> +#include <QPlainTextEdit> +#include <QLabel> +#include <QJsonDocument> +#include <QJsonValue> +#include <QJsonObject> +#include <QJsonArray> + +#include <wlxbase_wlqt/FocusManager.h> +#include <wlxbase_wlqt/PluginToolBar.h> +#include <wlxbase_wlqt/EditableGridWidget.h> +#include <wlxbase_wlqt/FindReplacePanel.h> +#include <wlxbase_wlqt/FilterableHeaderView.h> +#include <wlxbase_wlqt/PluginStatusBar.h> +#include <wlxbase_wlqt/PluginSplitView.h> +#include <wlxbase_wlqt/ThemeManager.h> + +#include <QVBoxLayout> +#include <QHeaderView> +#include <QMessageBox> +#include <QAbstractItemModel> +#include <QMenu> +#include <QFileDialog> +#include <QFile> +#include <QSortFilterProxyModel> +#include <QUndoStack> +#include <QIcon> +#include <QStyle> +#include <QUndoCommand> +#include <QStyledItemDelegate> +#include <QSqlRecord> +#include <QSqlField> +#include <QSqlIndex> +#include <QSqlTableModel> +#include <iostream> + +using namespace QtWlPlugin; + +namespace { +class ValueInspectorDialog : public QDialog { +public: + ValueInspectorDialog(const QString &text, bool readOnly, QWidget *parent = nullptr) + : QDialog(parent) + , m_wasJson(false) + { + setWindowTitle(readOnly ? QStringLiteral("Inspect Value (Read-Only)") : QStringLiteral("Inspect / Edit Value")); + resize(600, 450); + + auto *layout = new QVBoxLayout(this); + + // Detect if JSON + QString displayText = text; + QJsonParseError err; + QJsonDocument doc = QJsonDocument::fromJson(text.toUtf8(), &err); + if (err.error == QJsonParseError::NoError && (doc.isObject() || doc.isArray())) { + m_wasJson = true; + displayText = QString::fromUtf8(doc.toJson(QJsonDocument::Indented)); + } + + auto *infoLabel = new QLabel(m_wasJson ? QStringLiteral("Format: JSON (Pretty-printed)") : QStringLiteral("Format: Plain Text"), this); + layout->addWidget(infoLabel); + + m_editor = new QPlainTextEdit(this); + m_editor->setPlainText(displayText); + m_editor->setReadOnly(readOnly); + m_editor->setFont(QFont(QStringLiteral("monospace"), 10)); + layout->addWidget(m_editor); + + auto *buttonBox = new QDialogButtonBox( + readOnly ? QDialogButtonBox::Close : (QDialogButtonBox::Save | QDialogButtonBox::Cancel), + this); + connect(buttonBox, &QDialogButtonBox::accepted, this, &ValueInspectorDialog::onAccepted); + connect(buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject); + layout->addWidget(buttonBox); + } + + QString value() const { + QString txt = m_editor->toPlainText(); + if (m_wasJson) { + QJsonParseError err; + QJsonDocument doc = QJsonDocument::fromJson(txt.toUtf8(), &err); + if (err.error == QJsonParseError::NoError && (doc.isObject() || doc.isArray())) { + return QString::fromUtf8(doc.toJson(QJsonDocument::Compact)); + } + } + return txt; + } + +private: + void onAccepted() { + if (!m_editor->isReadOnly() && m_wasJson) { + QString txt = m_editor->toPlainText(); + QJsonParseError err; + QJsonDocument doc = QJsonDocument::fromJson(txt.toUtf8(), &err); + if (err.error != QJsonParseError::NoError || (!doc.isObject() && !doc.isArray())) { + auto res = QMessageBox::warning(this, QStringLiteral("Invalid JSON"), + QStringLiteral("The edited text is not valid JSON. Save as plain text anyway?"), + QMessageBox::Yes | QMessageBox::No); + if (res != QMessageBox::Yes) { + return; // Don't accept + } + } + } + accept(); + } + + QPlainTextEdit *m_editor; + bool m_wasJson; +}; + +class DbSortFilterProxyModel : public QSortFilterProxyModel { +public: + using QSortFilterProxyModel::QSortFilterProxyModel; + + void sort(int column, Qt::SortOrder order = Qt::AscendingOrder) override { + if (auto *duckModel = qobject_cast<DuckDbModel*>(sourceModel())) { + duckModel->sort(column, order); + } else { + QSortFilterProxyModel::sort(column, order); + } + } +}; + +QVariant getRowIdentifier(QAbstractItemModel *model, int row) { + if (auto *duckModel = qobject_cast<DuckDbModel*>(model)) { + return QVariant(static_cast<qlonglong>(duckModel->rowId(row))); + } else if (auto *kvModel = qobject_cast<KeyValueModel*>(model)) { + return kvModel->rawKey(row); + } else if (auto *sqlModel = qobject_cast<QSqlTableModel*>(model)) { + QSqlIndex pk = sqlModel->primaryKey(); + if (!pk.isEmpty()) { + QVariantMap pkValues; + for (int i = 0; i < pk.count(); ++i) { + QString name = pk.field(i).name(); + int col = sqlModel->fieldIndex(name); + QModelIndex idx = sqlModel->index(row, col); + pkValues[name] = sqlModel->data(idx, Qt::EditRole); + } + return pkValues; + } + } + return row; // Fallback to visual row index +} + +int findRowByIdentifier(QAbstractItemModel *model, const QVariant &id) { + if (auto *duckModel = qobject_cast<DuckDbModel*>(model)) { + int64_t targetId = id.toLongLong(); + for (int r = 0; r < duckModel->rowCount(); ++r) { + if (duckModel->rowId(r) == targetId) return r; + } + } else if (auto *kvModel = qobject_cast<KeyValueModel*>(model)) { + QByteArray targetKey = id.toByteArray(); + for (int r = 0; r < kvModel->rowCount(); ++r) { + if (kvModel->rawKey(r) == targetKey) return r; + } + } else if (auto *sqlModel = qobject_cast<QSqlTableModel*>(model)) { + if (id.typeId() == QMetaType::QVariantMap) { + QVariantMap pkValues = id.toMap(); + for (int r = 0; r < sqlModel->rowCount(); ++r) { + bool match = true; + for (auto it = pkValues.begin(); it != pkValues.end(); ++it) { + int col = sqlModel->fieldIndex(it.key()); + if (sqlModel->data(sqlModel->index(r, col), Qt::EditRole) != it.value()) { + match = false; + break; + } + } + if (match) return r; + } + } + } + if (id.typeId() == QMetaType::Int) { + return id.toInt(); + } + return -1; +} + +int findColumnByName(QAbstractItemModel *model, const QString &name) { + for (int c = 0; c < model->columnCount(); ++c) { + if (model->headerData(c, Qt::Horizontal, Qt::DisplayRole).toString() == name) { + return c; + } + } + return -1; +} + +class DbEditCommand : public QUndoCommand { +public: + DbEditCommand(QAbstractItemModel *model, + const QVariant &rowId, + const QString &colName, + const QVariant &oldVal, + const QVariant &newVal) + : m_model(model), m_rowId(rowId), m_colName(colName) + , m_oldVal(oldVal), m_newVal(newVal) + { + setText(QStringLiteral("Edit cell")); + } + + void undo() override { + applyValue(m_oldVal); + } + + void redo() override { + applyValue(m_newVal); + } + +private: + void applyValue(const QVariant &value) { + int visualRow = findRowByIdentifier(m_model, m_rowId); + int visualCol = findColumnByName(m_model, m_colName); + if (visualRow >= 0 && visualCol >= 0) { + QModelIndex idx = m_model->index(visualRow, visualCol); + m_model->setData(idx, value, Qt::EditRole); + } + } + + QAbstractItemModel *m_model; + QVariant m_rowId; + QString m_colName; + QVariant m_oldVal; + QVariant m_newVal; +}; + +class DbEditDelegate : public QStyledItemDelegate { +public: + DbEditDelegate(QUndoStack *undoStack, QObject *parent = nullptr) + : QStyledItemDelegate(parent), m_undoStack(undoStack) {} + + void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override { + QModelIndex srcIndex = index; + QAbstractItemModel *srcModel = model; + if (auto *proxy = qobject_cast<const QAbstractProxyModel*>(model)) { + srcIndex = proxy->mapToSource(index); + srcModel = proxy->sourceModel(); + } + + QVariant oldValue = srcModel->data(srcIndex, Qt::EditRole); + + // Let default delegate set the model data + QStyledItemDelegate::setModelData(editor, model, index); + + QVariant newValue = srcModel->data(srcIndex, Qt::EditRole); + + if (oldValue != newValue) { + QVariant rowId = getRowIdentifier(srcModel, srcIndex.row()); + QString colName = srcModel->headerData(srcIndex.column(), Qt::Horizontal, Qt::DisplayRole).toString(); + + // Revert temporarily so push can apply it cleanly + srcModel->setData(srcIndex, oldValue, Qt::EditRole); + + m_undoStack->push(new DbEditCommand(srcModel, rowId, colName, oldValue, newValue)); + } + } + +private: + QUndoStack *m_undoStack; +}; +} + + +// --------------------------------------------------------------------------- +// Construction / destruction +// --------------------------------------------------------------------------- + +DbViewWidget::DbViewWidget(QWidget *parent) + : QWidget(parent) +{ + m_undoStack = new QUndoStack(this); +} + +DbViewWidget::~DbViewWidget() +{ + // Disconnect all signals BEFORE child widgets start being destroyed. + // Without this, Qt's arbitrary child destruction order can trigger + // callbacks (e.g. selectionChanged, dataChanged) on half-destroyed objects, + // causing crashes when the user navigates away with unsaved edits. + if (m_tableList) + disconnect(m_tableList, nullptr, this, nullptr); + if (m_filterProxy) + disconnect(m_filterProxy, nullptr, this, nullptr); + if (m_fm) + m_fm->setActive(false); + + // Detach model chain BEFORE m_engine (unique_ptr) is destroyed. + // m_engine's destructor deletes the QSqlTableModel, so the view + // and proxy must not reference it at that point. + if (m_tableView) + m_tableView->setModel(nullptr); + if (m_filterProxy) + m_filterProxy->setSourceModel(nullptr); +} + +// --------------------------------------------------------------------------- +// File loading +// --------------------------------------------------------------------------- + +bool DbViewWidget::loadFile(const QString &filepath) +{ + m_engine = DbEngine::createForFile(filepath); + if (!m_engine) + return false; + + m_filepath = filepath; + + QStringList tables = m_engine->tableNames(); + QStringList views = m_engine->viewNames(); + + if (tables.isEmpty() && views.isEmpty()) + return false; + + QString firstTable = tables.isEmpty() ? views.first() : tables.first(); + setupUi(firstTable); + + // Apply saved theme + ThemeManager::applyTheme(this, ThemeManager::currentTheme()); + + return true; +} + +// --------------------------------------------------------------------------- +// UI setup +// --------------------------------------------------------------------------- + +void DbViewWidget::setupUi(const QString &firstTable) +{ + auto *mainLayout = new QVBoxLayout(this); + mainLayout->setContentsMargins(0, 0, 0, 0); + mainLayout->setSpacing(0); + + // --- Create the primary view and FocusManager FIRST --- + // (setupToolbar needs m_fm for shortcut registration) + m_tableView = new QTableView; + + // Install filterable header (must be before setModel) + m_filterHeader = new FilterableHeaderView(Qt::Horizontal, m_tableView); + m_filterHeader->setFilterEnabled(true); + m_filterHeader->setStretchLastSection(true); + m_tableView->setHorizontalHeader(m_filterHeader); + + m_tableView->setAlternatingRowColors(true); + m_tableView->setSortingEnabled(true); + m_tableView->setSelectionBehavior(QAbstractItemView::SelectItems); + m_tableView->setSelectionMode(QAbstractItemView::ExtendedSelection); + m_tableView->setItemDelegate(new DbEditDelegate(m_undoStack, this)); + m_tableView->setEditTriggers(QAbstractItemView::EditKeyPressed | QAbstractItemView::AnyKeyPressed); + connect(m_tableView, &QTableView::doubleClicked, this, &DbViewWidget::openValueInspector); + + m_fm = new FocusManager(this, m_tableView, this); + + // --- Toolbar --- + setupToolbar(); + mainLayout->addWidget(m_toolbar); + + // --- Left panel: Table list --- + m_tableList = new QListWidget; + m_tableList->setMinimumWidth(120); + m_tableList->setMaximumWidth(250); + populateTableList(); + + connect(m_tableList, &QListWidget::currentItemChanged, + this, &DbViewWidget::onTableSelected); + + // --- Right panel: Grid --- + auto *rightContainer = new QWidget; + auto *rightLayout = new QVBoxLayout(rightContainer); + rightLayout->setContentsMargins(0, 0, 0, 0); + rightLayout->setSpacing(0); + + // Load the first table's model into the view + rebuildGrid(firstTable); + + // Create the grid widget (wraps m_tableView — only done once) + m_grid = new EditableGridWidget( + m_tableView, GridMode::LiveDatabase, m_fm, this); + + m_grid->setThemeToggleEnabled(true); + + connect(m_filterHeader, &FilterableHeaderView::filterChanged, this, + [this](int column, const QString &text) { + if (m_filterProxy) { + m_filterProxy->setFilterKeyColumn(column); + m_filterProxy->setFilterFixedString(text); + updateStatusBar(); + } + }); + + // Setup Grid context menu integration + setupGridContextMenu(); + + rightLayout->addWidget(m_grid, 1); + + // --- Split view (only show list if multi-table) --- + if (m_engine->supportsMultipleTables()) { + m_splitView = new PluginSplitView(m_tableList, rightContainer, this); + mainLayout->addWidget(m_splitView, 1); + } else { + m_tableList->hide(); + mainLayout->addWidget(rightContainer, 1); + } + + // --- Find/replace --- + setupFindReplace(); + mainLayout->addWidget(m_findPanel); + m_findPanel->setVisible(false); + + // --- Status bar --- + m_statusBar = new PluginStatusBar(this); + m_statusBar->setFormatInfo(m_engine->engineName()); + mainLayout->addWidget(m_statusBar); + + updateStatusBar(); + + // Select first table in list + if (m_tableList->count() > 0) + m_tableList->setCurrentRow(0); +} + +void DbViewWidget::populateTableList() +{ + m_tableList->clear(); + + QStringList tables = m_engine->tableNames(); + QStringList views = m_engine->viewNames(); + + for (const auto &t : tables) { + auto *item = new QListWidgetItem( + style()->standardIcon(QStyle::SP_FileIcon), t, m_tableList); + item->setData(Qt::UserRole, t); + } + for (const auto &v : views) { + auto *item = new QListWidgetItem( + style()->standardIcon(QStyle::SP_FileDialogInfoView), v, m_tableList); + item->setData(Qt::UserRole, v); + } +} + +void DbViewWidget::setupToolbar() +{ + m_toolbar = new PluginToolBar(m_fm, this); + + // Commit (only for engines that support it) + m_actSubmit = m_toolbar->addToolAction( + QStringLiteral("Commit"), + QKeySequence(Qt::CTRL | Qt::Key_S), + FocusManager::Always, + QStringLiteral("document-save")); + m_actSubmit->setEnabled(m_engine && m_engine->supportsSubmitRevert()); + connect(m_actSubmit, &QAction::triggered, this, &DbViewWidget::onSubmitChanges); + + // Undo + auto *actUndo = m_toolbar->addToolAction( + QStringLiteral("Undo"), + QKeySequence::Undo, + FocusManager::Always, + QStringLiteral("edit-undo")); + connect(actUndo, &QAction::triggered, m_undoStack, &QUndoStack::undo); + + // Redo + auto *actRedo = m_toolbar->addToolAction( + QStringLiteral("Redo"), + QKeySequence::Redo, + FocusManager::Always, + QStringLiteral("edit-redo")); + actRedo->setShortcuts({QKeySequence::Redo, QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_Z)}); + connect(actRedo, &QAction::triggered, m_undoStack, &QUndoStack::redo); + + // Reload + auto *actReload = m_toolbar->addToolAction( + QStringLiteral("Reload"), + QKeySequence(Qt::Key_F5), + FocusManager::Always, + QStringLiteral("view-refresh")); + connect(actReload, &QAction::triggered, this, [this]() { + if (!m_filepath.isEmpty()) { + if (m_engine && m_engine->supportsSubmitRevert()) { + m_engine->revertAll(); + } + QString table = m_engine ? m_engine->currentTableName() : QString(); + if (loadFile(m_filepath)) { + m_undoStack->clear(); + if (!table.isEmpty()) { + rebuildGrid(table); + for (int i = 0; i < m_tableList->count(); ++i) { + if (m_tableList->item(i)->data(Qt::UserRole).toString() == table) { + m_tableList->setCurrentRow(i); + break; + } + } + } + } + } + }); + + // Word wrap toggle + auto *actWrap = m_toolbar->addToolAction( + QStringLiteral("Word Wrap"), + QKeySequence(), + 0, + QStringLiteral("format-text-direction-ltr")); + actWrap->setCheckable(true); + connect(actWrap, &QAction::toggled, this, [this](bool on) { + if (m_grid) m_grid->setWordWrap(on); + }); + + // Find + auto *actFind = m_toolbar->addToolAction( + QStringLiteral("Find"), + QKeySequence(Qt::CTRL | Qt::Key_F), + FocusManager::Always, + QStringLiteral("edit-find")); + connect(actFind, &QAction::triggered, this, [this]() { + if (m_findPanel) + m_findPanel->showPanel(!m_findPanel->isPanelVisible()); + }); +} + +void DbViewWidget::setupFindReplace() +{ + m_findPanel = new FindReplacePanel(m_fm, this); + m_findPanel->setReplaceEnabled(false); + + connect(m_findPanel, &FindReplacePanel::findRequested, + this, &DbViewWidget::onFind); +} + +void DbViewWidget::setupGridContextMenu() +{ + m_grid->setExtraContextMenuCallback( + [this](QMenu *menu, const QModelIndex &idx) { + QAbstractItemModel *model = m_tableView->model(); + QModelIndex srcIdx = idx; + if (auto *proxy = qobject_cast<QSortFilterProxyModel*>(model)) { + srcIdx = proxy->mapToSource(idx); + model = proxy->sourceModel(); + } + if (!srcIdx.isValid()) return; + + // Generic Cell Inspector/Editor + bool isBinary = false; + auto *kvModel = qobject_cast<KeyValueModel*>(model); + if (kvModel) { + isBinary = kvModel->isBinaryValue(srcIdx.row()); + } + + if (!isBinary) { + bool readOnly = !(model->flags(srcIdx) & Qt::ItemIsEditable); + QString actionText = readOnly ? QStringLiteral("Inspect Value (Read-Only)...") : QStringLiteral("Inspect / Edit Value..."); + QAction *inspectAction = menu->addAction(actionText); + connect(inspectAction, &QAction::triggered, this, [this, idx]() { + openValueInspector(idx); + }); + menu->addSeparator(); + } + + // KV Model specific actions + if (kvModel) { + int row = srcIdx.row(); + // Hex toggle + if (isBinary) { + QAction *hexAction = menu->addAction(QStringLiteral("Toggle Hex View")); + connect(hexAction, &QAction::triggered, this, [kvModel, row]() { + bool currentlyHex = kvModel->data(kvModel->index(row, 1), Qt::DisplayRole) + .toString().contains(QStringLiteral(" ")); + kvModel->setHexMode(row, !currentlyHex); + }); + } + + // Save value as file + QAction *saveAction = menu->addAction(QStringLiteral("Save Value as File...")); + connect(saveAction, &QAction::triggered, this, [this, kvModel, row]() { + QByteArray data = kvModel->rawValue(row); + QString path = QFileDialog::getSaveFileName(this, QStringLiteral("Save Value")); + if (path.isEmpty()) return; + QFile f(path); + if (f.open(QIODevice::WriteOnly)) { + f.write(data); + f.close(); + } + }); + + // Load value from file + QAction *loadAction = menu->addAction(QStringLiteral("Load Value from File...")); + connect(loadAction, &QAction::triggered, this, [this, kvModel, row]() { + QString path = QFileDialog::getOpenFileName(this, QStringLiteral("Load Value")); + if (path.isEmpty()) return; + QFile f(path); + if (f.open(QIODevice::ReadOnly)) { + QByteArray fileData = f.readAll(); + f.close(); + kvModel->loadValueFromFile(row, fileData); + } + }); + } + }); +} + +void DbViewWidget::openValueInspector(const QModelIndex &index) +{ + QAbstractItemModel *model = m_tableView->model(); + QModelIndex srcIdx = index; + if (auto *proxy = qobject_cast<QSortFilterProxyModel*>(model)) { + srcIdx = proxy->mapToSource(index); + model = proxy->sourceModel(); + } + if (!srcIdx.isValid()) return; + + // Check if binary + bool isBinary = false; + auto *kvModel = qobject_cast<KeyValueModel*>(model); + if (kvModel) { + isBinary = kvModel->isBinaryValue(srcIdx.row()); + } + + if (!isBinary) { + bool readOnly = !(model->flags(srcIdx) & Qt::ItemIsEditable); + QVariant val = model->data(srcIdx, Qt::EditRole); + ValueInspectorDialog dialog(val.toString(), readOnly, this); + if (dialog.exec() == QDialog::Accepted) { + QString newVal = dialog.value(); + QVariant oldValue = model->data(srcIdx, Qt::EditRole); + if (oldValue != newVal) { + QVariant rowId = getRowIdentifier(model, srcIdx.row()); + QString colName = model->headerData(srcIdx.column(), Qt::Horizontal, Qt::DisplayRole).toString(); + m_undoStack->push(new DbEditCommand(model, rowId, colName, oldValue, newVal)); + } + } + } +} + +// --------------------------------------------------------------------------- +// Table switching +// --------------------------------------------------------------------------- + +void DbViewWidget::rebuildGrid(const QString &tableName) +{ + // Detach the old model from the view BEFORE the engine deletes it. + // modelForTable() destroys the previous QSqlTableModel internally, + // so the view and proxy must not reference it during that window. + // + // NOTE: Do NOT delete m_grid here. EditableGridWidget reparents the + // QTableView to itself, so deleting the grid would destroy the view too. + m_tableView->setModel(nullptr); + if (m_filterProxy) + m_filterProxy->setSourceModel(nullptr); + + if (m_undoStack) + m_undoStack->clear(); + + // Now safe to request new model (engine deletes old one internally) + QAbstractItemModel *model = m_engine->modelForTable(tableName); + if (!model) return; + + // Set up new model chain + if (!m_filterProxy) { + m_filterProxy = new DbSortFilterProxyModel(this); + m_filterProxy->setFilterCaseSensitivity(Qt::CaseInsensitive); + } + m_filterProxy->setSourceModel(model); + m_tableView->setModel(m_filterProxy); + + updateStatusBar(); +} + +void DbViewWidget::onTableSelected(QListWidgetItem *current, + QListWidgetItem * /*previous*/) +{ + if (!current) return; + + QString tableName = current->data(Qt::UserRole).toString(); + if (tableName.isEmpty() || tableName == m_engine->currentTableName()) + return; + + rebuildGrid(tableName); + + // Re-insert grid into the right-side layout + if (m_filterHeader) + m_filterHeader->clearFilters(); + + updateStatusBar(); +} + +void DbViewWidget::updateStatusBar() +{ + if (!m_statusBar) return; + + int total = 0; + int filtered = 0; + if (m_tableView && m_tableView->model()) { + filtered = m_tableView->model()->rowCount(); + if (m_filterProxy && m_filterProxy->sourceModel()) { + total = m_filterProxy->sourceModel()->rowCount(); + } else { + total = filtered; + } + } + + m_statusBar->setRowCount(filtered, total); + + if (m_engine) + m_statusBar->setEncoding(m_engine->currentTableName()); +} + +// --------------------------------------------------------------------------- +// Data operations +// --------------------------------------------------------------------------- + +void DbViewWidget::onSubmitChanges() +{ + if (!m_engine || !m_engine->supportsSubmitRevert()) return; + + if (!m_engine->submitAll()) { + QMessageBox::warning(this, QStringLiteral("Submit Error"), + QStringLiteral("Failed to submit changes:\n%1").arg(m_engine->lastError())); + m_engine->revertAll(); + } + m_undoStack->clear(); + updateStatusBar(); +} + +void DbViewWidget::onRevertChanges() +{ + if (!m_engine || !m_engine->supportsSubmitRevert()) return; + + m_engine->revertAll(); + m_undoStack->clear(); + updateStatusBar(); +} + +// --------------------------------------------------------------------------- +// Find +// --------------------------------------------------------------------------- + +void DbViewWidget::onFind(bool forward) +{ + if (!m_findPanel || !m_tableView || !m_tableView->model()) + return; + + QString query = m_findPanel->findText(); + if (query.isEmpty()) return; + + bool caseSensitive = m_findPanel->matchCase(); + QAbstractItemModel *model = m_tableView->model(); + QModelIndex current = m_tableView->currentIndex(); + + int startRow = current.isValid() ? current.row() : 0; + int startCol = current.isValid() ? current.column() : 0; + int rows = model->rowCount(); + int cols = model->columnCount(); + int total = rows * cols; + + // Advance past current cell + if (forward) { + startCol++; + if (startCol >= cols) { startCol = 0; startRow++; } + } else { + startCol--; + if (startCol < 0) { startCol = cols - 1; startRow--; } + } + + for (int i = 0; i < total; ++i) { + int offset = forward ? i : -i; + int linearStart = startRow * cols + startCol; + int linearIdx = (linearStart + offset + total) % total; + int r = linearIdx / cols; + int c = linearIdx % cols; + + QModelIndex idx = model->index(r, c); + QString cellText = model->data(idx, Qt::DisplayRole).toString(); + + bool match = caseSensitive + ? cellText.contains(query, Qt::CaseSensitive) + : cellText.contains(query, Qt::CaseInsensitive); + + if (match) { + m_tableView->setCurrentIndex(idx); + m_tableView->scrollTo(idx); + m_findPanel->setStatusText(QStringLiteral("Found at row %1, col %2").arg(r + 1).arg(c + 1)); + return; + } + } + + m_findPanel->setStatusText(QStringLiteral("\"%1\" not found").arg(query)); +} + +// --------------------------------------------------------------------------- +// WLX bridge accessors +// --------------------------------------------------------------------------- + +FocusManager *DbViewWidget::focusManager() const { return m_fm; } +EditableGridWidget *DbViewWidget::grid() const { return m_grid; } + +QString DbViewWidget::getSelectionAsText(char sep) +{ + return m_grid ? m_grid->getSelectionAsText(sep) : QString(); +} diff --git a/wlx/dbview/src/DuckDbEngine.cpp b/wlx/dbview/src/DuckDbEngine.cpp new file mode 100644 index 0000000..7fc61ac --- /dev/null +++ b/wlx/dbview/src/DuckDbEngine.cpp @@ -0,0 +1,156 @@ +#include "DuckDbEngine.h" +#include "DuckDbModel.h" + +#include "duckdb.hpp" + +DuckDbEngine::DuckDbEngine(QObject *parent) + : DbEngine(parent) +{ +} + +DuckDbEngine::~DuckDbEngine() +{ + close(); +} + +bool DuckDbEngine::open(const QString &filepath) +{ + close(); + + try { + duckdb::DBConfig config; + config.SetOptionByName("threads", duckdb::Value::INTEGER(1)); + + m_duckdb = std::make_unique<duckdb::DuckDB>(filepath.toStdString(), &config); + m_conn = std::make_unique<duckdb::Connection>(*m_duckdb); + + // Start a transaction for submit/revert support + m_conn->Query("BEGIN TRANSACTION"); + m_inTransaction = true; + + return true; + } catch (const std::exception &e) { + m_lastError = QString::fromStdString(e.what()); + return false; + } +} + +void DuckDbEngine::close() +{ + delete m_currentModel; + m_currentModel = nullptr; + + if (m_inTransaction && m_conn) { + try { m_conn->Query("ROLLBACK"); } catch (...) {} + m_inTransaction = false; + } + + m_conn.reset(); + m_duckdb.reset(); + m_currentTable.clear(); +} + +QStringList DuckDbEngine::tableNames() const +{ + QStringList result; + if (!m_conn) return result; + + try { + auto qr = m_conn->Query( + "SELECT table_name FROM information_schema.tables " + "WHERE table_schema = 'main' AND table_type = 'BASE TABLE' " + "ORDER BY table_name"); + if (qr && !qr->HasError()) { + for (auto &row : *qr) { + result.append(QString::fromStdString(row.GetValue<std::string>(0))); + } + } + } catch (...) {} + return result; +} + +QStringList DuckDbEngine::viewNames() const +{ + QStringList result; + if (!m_conn) return result; + + try { + auto qr = m_conn->Query( + "SELECT table_name FROM information_schema.tables " + "WHERE table_schema = 'main' AND table_type = 'VIEW' " + "ORDER BY table_name"); + if (qr && !qr->HasError()) { + for (auto &row : *qr) { + result.append(QString::fromStdString(row.GetValue<std::string>(0))); + } + } + } catch (...) {} + return result; +} + +QAbstractItemModel *DuckDbEngine::modelForTable(const QString &tableName) +{ + if (!m_conn) return nullptr; + + delete m_currentModel; + m_currentModel = nullptr; + m_currentTable = tableName; + + auto *model = new DuckDbModel(m_conn.get(), tableName, this); + if (!model->select()) { + delete model; + return nullptr; + } + + m_currentModel = model; + return model; +} + +QString DuckDbEngine::currentTableName() const +{ + return m_currentTable; +} + +bool DuckDbEngine::submitAll() +{ + if (!m_conn || !m_inTransaction) return false; + + try { + auto qr = m_conn->Query("COMMIT"); + if (qr && qr->HasError()) { + m_lastError = QString::fromStdString(qr->GetError()); + return false; + } + m_conn->Query("BEGIN TRANSACTION"); + m_inTransaction = true; + return true; + } catch (const std::exception &e) { + m_lastError = QString::fromStdString(e.what()); + return false; + } +} + +bool DuckDbEngine::revertAll() +{ + if (!m_conn || !m_inTransaction) return false; + + try { + m_conn->Query("ROLLBACK"); + m_conn->Query("BEGIN TRANSACTION"); + m_inTransaction = true; + + if (!m_currentTable.isEmpty()) { + auto *model = qobject_cast<DuckDbModel*>(m_currentModel); + if (model) model->select(); + } + return true; + } catch (const std::exception &e) { + m_lastError = QString::fromStdString(e.what()); + return false; + } +} + +QString DuckDbEngine::lastError() const +{ + return m_lastError; +} diff --git a/wlx/dbview/src/DuckDbModel.cpp b/wlx/dbview/src/DuckDbModel.cpp new file mode 100644 index 0000000..88602b6 --- /dev/null +++ b/wlx/dbview/src/DuckDbModel.cpp @@ -0,0 +1,229 @@ +#include "DuckDbModel.h" + +#include "duckdb.hpp" + +#include <QDebug> +#include <iostream> + +DuckDbModel::DuckDbModel(duckdb::Connection *conn, const QString &tableName, QObject *parent) + : QAbstractTableModel(parent) + , m_conn(conn) + , m_tableName(tableName) +{ +} + +bool DuckDbModel::select() +{ + beginResetModel(); + m_data.clear(); + m_rowIds.clear(); + m_columnNames.clear(); + m_totalRows = 0; + m_allFetched = false; + + try { + // Check if rowid is queryable + m_hasRowId = false; + try { + auto testResult = m_conn->Query("SELECT rowid FROM \"" + m_tableName.toStdString() + "\" LIMIT 0"); + if (testResult && !testResult->HasError()) { + m_hasRowId = true; + } + } catch (...) { + m_hasRowId = false; + } + + // Get column names + auto colResult = m_conn->Query( + "SELECT column_name FROM information_schema.columns " + "WHERE table_name = '" + m_tableName.toStdString() + "' " + "AND table_schema = 'main' ORDER BY ordinal_position"); + if (colResult && !colResult->HasError()) { + for (auto &row : *colResult) { + m_columnNames.append(QString::fromStdString(row.GetValue<std::string>(0))); + } + } + + // Get total row count + auto countResult = m_conn->Query( + "SELECT COUNT(*) FROM \"" + m_tableName.toStdString() + "\""); + if (countResult && !countResult->HasError()) { + for (auto &row : *countResult) { + m_totalRows = static_cast<int>(row.GetValue<int64_t>(0)); + } + } + + // Load initial chunk + loadChunk(0, kChunkSize); + + } catch (const std::exception &e) { + qWarning() << "DuckDbModel::select failed:" << e.what(); + } + + endResetModel(); + return !m_columnNames.isEmpty(); +} + +void DuckDbModel::loadChunk(int offset, int limit) +{ + try { + std::string orderBy; + if (m_sortColumn >= 0 && m_sortColumn < m_columnNames.size()) { + std::string colName = m_columnNames[m_sortColumn].toStdString(); + std::string orderStr = (m_sortOrder == Qt::AscendingOrder) ? "ASC" : "DESC"; + orderBy = "ORDER BY \"" + colName + "\" " + orderStr + " "; + } + + std::string selectFields = m_hasRowId ? "rowid, *" : "*"; + std::string sql = "SELECT " + selectFields + " FROM \"" + m_tableName.toStdString() + "\" " + + orderBy + + "LIMIT " + std::to_string(limit) + " " + + "OFFSET " + std::to_string(offset); + + auto result = m_conn->Query(sql); + if (!result || result->HasError()) + return; + + int fetchedCount = 0; + for (auto &row : *result) { + if (m_hasRowId) { + m_rowIds.append(row.GetValue<int64_t>(0)); + } + QVector<QVariant> rowData; + rowData.reserve(m_columnNames.size()); + int startCol = m_hasRowId ? 1 : 0; + for (int c = startCol; c < startCol + m_columnNames.size(); ++c) { + try { + auto val = row.GetValue<duckdb::Value>(c); + if (val.IsNull()) { + rowData.append(QVariant()); + } else { + rowData.append(QString::fromStdString(val.ToString())); + } + } catch (...) { + rowData.append(QVariant()); + } + } + m_data.append(std::move(rowData)); + ++fetchedCount; + } + + if (fetchedCount < limit) + m_allFetched = true; + + } catch (const std::exception &e) { + qWarning() << "DuckDbModel::loadChunk failed:" << e.what(); + } +} + +int DuckDbModel::rowCount(const QModelIndex &parent) const +{ + return parent.isValid() ? 0 : m_data.size(); +} + +int DuckDbModel::columnCount(const QModelIndex &parent) const +{ + return parent.isValid() ? 0 : m_columnNames.size(); +} + +QVariant DuckDbModel::data(const QModelIndex &index, int role) const +{ + if (!index.isValid() || (role != Qt::DisplayRole && role != Qt::EditRole)) + return {}; + + if (index.row() >= m_data.size() || index.column() >= m_columnNames.size()) + return {}; + + const QVariant &val = m_data[index.row()][index.column()]; + if (val.isNull() && role == Qt::DisplayRole) + return QStringLiteral("NULL"); + return val; +} + +QVariant DuckDbModel::headerData(int section, Qt::Orientation orientation, int role) const +{ + if (role != Qt::DisplayRole || orientation != Qt::Horizontal) + return {}; + if (section < 0 || section >= m_columnNames.size()) + return {}; + return m_columnNames[section]; +} + +Qt::ItemFlags DuckDbModel::flags(const QModelIndex &index) const +{ + if (!index.isValid()) + return Qt::NoItemFlags; + Qt::ItemFlags f = Qt::ItemIsEnabled | Qt::ItemIsSelectable; + if (m_hasRowId) + f |= Qt::ItemIsEditable; + return f; +} + +bool DuckDbModel::setData(const QModelIndex &index, const QVariant &value, int role) +{ + if (role != Qt::EditRole || !index.isValid() || !m_hasRowId) + return false; + + if (index.row() >= m_data.size() || index.column() >= m_columnNames.size()) + return false; + + try { + std::string colName = m_columnNames[index.column()].toStdString(); + std::string newVal = value.toString().toStdString(); + int64_t rowId = m_rowIds[index.row()]; + + // Use rowid-based UPDATE + std::string sql = "UPDATE \"" + m_tableName.toStdString() + "\" SET \"" + + colName + "\" = '" + newVal + "' WHERE rowid = " + + std::to_string(rowId); + + auto result = m_conn->Query(sql); + if (result && !result->HasError()) { + m_data[index.row()][index.column()] = value; + emit dataChanged(index, index, {Qt::DisplayRole, Qt::EditRole}); + return true; + } + } catch (...) {} + + return false; +} + +void DuckDbModel::sort(int column, Qt::SortOrder order) +{ + if (m_sortColumn == column && m_sortOrder == order) + return; + + m_sortColumn = column; + m_sortOrder = order; + + beginResetModel(); + m_data.clear(); + m_rowIds.clear(); + m_allFetched = false; + loadChunk(0, kChunkSize); + endResetModel(); +} + +void DuckDbModel::fetchMore(const QModelIndex &parent) +{ + if (parent.isValid() || m_allFetched) + return; + + int currentSize = m_data.size(); + int toFetch = qMin(kChunkSize, m_totalRows - currentSize); + if (toFetch <= 0) { + m_allFetched = true; + return; + } + + beginInsertRows(QModelIndex(), currentSize, currentSize + toFetch - 1); + loadChunk(currentSize, toFetch); + endInsertRows(); +} + +bool DuckDbModel::canFetchMore(const QModelIndex &parent) const +{ + if (parent.isValid()) + return false; + return !m_allFetched && m_data.size() < m_totalRows; +} diff --git a/wlx/dbview/src/KeyValueModel.cpp b/wlx/dbview/src/KeyValueModel.cpp new file mode 100644 index 0000000..53b173b --- /dev/null +++ b/wlx/dbview/src/KeyValueModel.cpp @@ -0,0 +1,177 @@ +#include "KeyValueModel.h" + +#include <QStringDecoder> + +KeyValueModel::KeyValueModel(int totalRows, IteratorOps ops, QObject *parent) + : QAbstractTableModel(parent) + , m_totalRows(totalRows) + , m_ops(std::move(ops)) +{ +} + +int KeyValueModel::rowCount(const QModelIndex &parent) const +{ + return parent.isValid() ? 0 : m_totalRows; +} + +int KeyValueModel::columnCount(const QModelIndex &parent) const +{ + return parent.isValid() ? 0 : 2; // Key, Value +} + +QVariant KeyValueModel::headerData(int section, Qt::Orientation orientation, int role) const +{ + if (role != Qt::DisplayRole || orientation != Qt::Horizontal) + return {}; + return section == 0 ? QStringLiteral("Key") : QStringLiteral("Value"); +} + +Qt::ItemFlags KeyValueModel::flags(const QModelIndex &index) const +{ + if (!index.isValid()) + return Qt::NoItemFlags; + // Keys are read-only, values are editable + if (index.column() == 0) + return Qt::ItemIsEnabled | Qt::ItemIsSelectable; + return Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsEditable; +} + +void KeyValueModel::ensureCached(int row) const +{ + if (m_cacheStartRow >= 0 && row >= m_cacheStartRow + && row < m_cacheStartRow + m_cache.size()) + return; + + // Center the window on the requested row + int start = qMax(0, row - kWindowSize / 2); + int count = qMin(kWindowSize, m_totalRows - start); + + m_cache = m_ops.fetchWindow(start, count); + m_cacheStartRow = start; +} + +QVariant KeyValueModel::data(const QModelIndex &index, int role) const +{ + if (!index.isValid() || index.row() >= m_totalRows) + return {}; + + if (role != Qt::DisplayRole && role != Qt::EditRole) + return {}; + + ensureCached(index.row()); + + int localIdx = index.row() - m_cacheStartRow; + if (localIdx < 0 || localIdx >= m_cache.size()) + return QStringLiteral("[Out of range]"); + + const Entry &entry = m_cache[localIdx]; + const QByteArray &raw = (index.column() == 0) ? entry.key : entry.value; + + // Binary value handling (column 1 only) + if (index.column() == 1 && !isValidUtf8(raw)) { + if (m_hexRows.contains(index.row())) + return toHexString(raw); + return formatBinaryPlaceholder(raw.size()); + } + + // Keys and valid UTF-8 values + if (isValidUtf8(raw)) + return QString::fromUtf8(raw); + + // Binary key (unusual but possible) + return toHexString(raw); +} + +bool KeyValueModel::setData(const QModelIndex &index, const QVariant &value, int role) +{ + if (role != Qt::EditRole || index.column() != 1 || !index.isValid()) + return false; + + ensureCached(index.row()); + int localIdx = index.row() - m_cacheStartRow; + if (localIdx < 0 || localIdx >= m_cache.size()) + return false; + + QByteArray key = m_cache[localIdx].key; + QByteArray newValue = value.toString().toUtf8(); + + if (m_ops.putValue && m_ops.putValue(key, newValue)) { + m_cache[localIdx].value = newValue; + emit dataChanged(index, index, {Qt::DisplayRole, Qt::EditRole}); + return true; + } + return false; +} + +bool KeyValueModel::isBinaryValue(int row) const +{ + ensureCached(row); + int localIdx = row - m_cacheStartRow; + if (localIdx < 0 || localIdx >= m_cache.size()) + return false; + return !isValidUtf8(m_cache[localIdx].value); +} + +QByteArray KeyValueModel::rawValue(int row) const +{ + ensureCached(row); + int localIdx = row - m_cacheStartRow; + if (localIdx < 0 || localIdx >= m_cache.size()) + return {}; + return m_cache[localIdx].value; +} + +QByteArray KeyValueModel::rawKey(int row) const +{ + ensureCached(row); + int localIdx = row - m_cacheStartRow; + if (localIdx < 0 || localIdx >= m_cache.size()) + return {}; + return m_cache[localIdx].key; +} + +void KeyValueModel::setHexMode(int row, bool enabled) +{ + if (enabled) + m_hexRows.insert(row); + else + m_hexRows.remove(row); + + QModelIndex idx = index(row, 1); + emit dataChanged(idx, idx, {Qt::DisplayRole}); +} + +bool KeyValueModel::loadValueFromFile(int row, const QByteArray &fileData) +{ + ensureCached(row); + int localIdx = row - m_cacheStartRow; + if (localIdx < 0 || localIdx >= m_cache.size()) + return false; + + QByteArray key = m_cache[localIdx].key; + if (m_ops.putValue && m_ops.putValue(key, fileData)) { + m_cache[localIdx].value = fileData; + QModelIndex idx = index(row, 1); + emit dataChanged(idx, idx, {Qt::DisplayRole, Qt::EditRole}); + return true; + } + return false; +} + +bool KeyValueModel::isValidUtf8(const QByteArray &data) +{ + QStringDecoder decoder(QStringDecoder::Utf8, QStringDecoder::Flag::Stateless); + QString result = decoder(data); + Q_UNUSED(result); + return !decoder.hasError(); +} + +QString KeyValueModel::formatBinaryPlaceholder(int size) +{ + return QStringLiteral("[Binary Data - %1 bytes]").arg(size); +} + +QString KeyValueModel::toHexString(const QByteArray &data) +{ + return QString::fromLatin1(data.toHex(' ')); +} diff --git a/wlx/dbview/src/LevelDbEngine.cpp b/wlx/dbview/src/LevelDbEngine.cpp new file mode 100644 index 0000000..b8933a9 --- /dev/null +++ b/wlx/dbview/src/LevelDbEngine.cpp @@ -0,0 +1,129 @@ +#include "LevelDbEngine.h" +#include "KeyValueModel.h" + +#include <leveldb/db.h> +#include <leveldb/iterator.h> + +#include <QFileInfo> +#include <QFile> + +LevelDbEngine::LevelDbEngine(QObject *parent) + : DbEngine(parent) +{ +} + +LevelDbEngine::~LevelDbEngine() +{ + close(); +} + +bool LevelDbEngine::open(const QString &filepath) +{ + close(); + + // Resolve directory: if user selected a file inside a LevelDB dir, use parent + QFileInfo info(filepath); + QString dbPath = info.isDir() ? filepath : info.absolutePath(); + + // Verify it's a LevelDB directory by checking for CURRENT file + if (!QFile::exists(dbPath + QStringLiteral("/CURRENT"))) + return false; + + leveldb::Options options; + options.create_if_missing = false; + + leveldb::DB *db = nullptr; + leveldb::Status status = leveldb::DB::Open(options, dbPath.toStdString(), &db); + if (!status.ok() || !db) + return false; + + m_db = db; + m_keyCount = countKeys(); + return true; +} + +void LevelDbEngine::close() +{ + delete m_model; + m_model = nullptr; + + delete m_db; + m_db = nullptr; + + m_keyCount = 0; +} + +int LevelDbEngine::countKeys() const +{ + if (!m_db) return 0; + + int count = 0; + leveldb::Iterator *it = m_db->NewIterator(leveldb::ReadOptions()); + for (it->SeekToFirst(); it->Valid(); it->Next()) + ++count; + delete it; + return count; +} + +QStringList LevelDbEngine::tableNames() const +{ + return { QStringLiteral("<keys>") }; +} + +QString LevelDbEngine::currentTableName() const +{ + return QStringLiteral("<keys>"); +} + +QAbstractItemModel *LevelDbEngine::modelForTable(const QString &tableName) +{ + Q_UNUSED(tableName); + if (!m_db) return nullptr; + + delete m_model; + m_model = nullptr; + + leveldb::DB *db = m_db; + + KeyValueModel::IteratorOps ops; + + ops.fetchWindow = [db](int startIndex, int count) -> QVector<KeyValueModel::Entry> { + QVector<KeyValueModel::Entry> entries; + entries.reserve(count); + + leveldb::Iterator *it = db->NewIterator(leveldb::ReadOptions()); + it->SeekToFirst(); + + // Skip to startIndex + for (int i = 0; i < startIndex && it->Valid(); ++i) + it->Next(); + + // Collect entries + for (int i = 0; i < count && it->Valid(); ++i) { + KeyValueModel::Entry e; + e.key = QByteArray(it->key().data(), static_cast<int>(it->key().size())); + e.value = QByteArray(it->value().data(), static_cast<int>(it->value().size())); + entries.append(std::move(e)); + it->Next(); + } + + delete it; + return entries; + }; + + ops.putValue = [db](const QByteArray &key, const QByteArray &value) -> bool { + leveldb::Slice k(key.constData(), key.size()); + leveldb::Slice v(value.constData(), value.size()); + leveldb::Status s = db->Put(leveldb::WriteOptions(), k, v); + return s.ok(); + }; + + ops.deleteKey = [db](const QByteArray &key) -> bool { + leveldb::Slice k(key.constData(), key.size()); + leveldb::Status s = db->Delete(leveldb::WriteOptions(), k); + return s.ok(); + }; + + m_model = new KeyValueModel(m_keyCount, std::move(ops), this); + return m_model; +} diff --git a/wlx/dbview/src/RocksDbEngine.cpp b/wlx/dbview/src/RocksDbEngine.cpp new file mode 100644 index 0000000..46e9183 --- /dev/null +++ b/wlx/dbview/src/RocksDbEngine.cpp @@ -0,0 +1,127 @@ +#include "RocksDbEngine.h" +#include "KeyValueModel.h" + +#include <rocksdb/db.h> +#include <rocksdb/iterator.h> + +#include <QFileInfo> +#include <QFile> + +RocksDbEngine::RocksDbEngine(QObject *parent) + : DbEngine(parent) +{ +} + +RocksDbEngine::~RocksDbEngine() +{ + close(); +} + +bool RocksDbEngine::open(const QString &filepath) +{ + close(); + + // Resolve directory: if user selected a file inside a RocksDB dir, use parent + QFileInfo info(filepath); + QString dbPath = info.isDir() ? filepath : info.absolutePath(); + + // Verify it's a RocksDB directory by checking for CURRENT file + if (!QFile::exists(dbPath + QStringLiteral("/CURRENT"))) + return false; + + rocksdb::Options options; + options.create_if_missing = false; + + rocksdb::DB *db = nullptr; + rocksdb::Status status = rocksdb::DB::Open(options, dbPath.toStdString(), &db); + if (!status.ok() || !db) + return false; + + m_db = db; + m_keyCount = countKeys(); + return true; +} + +void RocksDbEngine::close() +{ + delete m_model; + m_model = nullptr; + + delete m_db; + m_db = nullptr; + + m_keyCount = 0; +} + +int RocksDbEngine::countKeys() const +{ + if (!m_db) return 0; + + int count = 0; + rocksdb::Iterator *it = m_db->NewIterator(rocksdb::ReadOptions()); + for (it->SeekToFirst(); it->Valid(); it->Next()) + ++count; + delete it; + return count; +} + +QStringList RocksDbEngine::tableNames() const +{ + return { QStringLiteral("<keys>") }; +} + +QString RocksDbEngine::currentTableName() const +{ + return QStringLiteral("<keys>"); +} + +QAbstractItemModel *RocksDbEngine::modelForTable(const QString &tableName) +{ + Q_UNUSED(tableName); + if (!m_db) return nullptr; + + delete m_model; + m_model = nullptr; + + ROCKSDB_NAMESPACE::DB *db = m_db; + + KeyValueModel::IteratorOps ops; + + ops.fetchWindow = [db](int startIndex, int count) -> QVector<KeyValueModel::Entry> { + QVector<KeyValueModel::Entry> entries; + entries.reserve(count); + + rocksdb::Iterator *it = db->NewIterator(rocksdb::ReadOptions()); + it->SeekToFirst(); + + for (int i = 0; i < startIndex && it->Valid(); ++i) + it->Next(); + + for (int i = 0; i < count && it->Valid(); ++i) { + KeyValueModel::Entry e; + e.key = QByteArray(it->key().data(), static_cast<int>(it->key().size())); + e.value = QByteArray(it->value().data(), static_cast<int>(it->value().size())); + entries.append(std::move(e)); + it->Next(); + } + + delete it; + return entries; + }; + + ops.putValue = [db](const QByteArray &key, const QByteArray &value) -> bool { + rocksdb::Slice k(key.constData(), key.size()); + rocksdb::Slice v(value.constData(), value.size()); + rocksdb::Status s = db->Put(rocksdb::WriteOptions(), k, v); + return s.ok(); + }; + + ops.deleteKey = [db](const QByteArray &key) -> bool { + rocksdb::Slice k(key.constData(), key.size()); + rocksdb::Status s = db->Delete(rocksdb::WriteOptions(), k); + return s.ok(); + }; + + m_model = new KeyValueModel(m_keyCount, std::move(ops), this); + return m_model; +} diff --git a/wlx/dbview/src/SqliteEngine.cpp b/wlx/dbview/src/SqliteEngine.cpp new file mode 100644 index 0000000..f25de5f --- /dev/null +++ b/wlx/dbview/src/SqliteEngine.cpp @@ -0,0 +1,116 @@ +#include "SqliteEngine.h" + +#include <QSqlDatabase> +#include <QSqlTableModel> +#include <QSqlQuery> +#include <QSqlError> +#include <QUuid> + +SqliteEngine::SqliteEngine(QObject *parent) + : DbEngine(parent) + , m_connectionName(QUuid::createUuid().toString(QUuid::WithoutBraces)) +{ +} + +SqliteEngine::~SqliteEngine() +{ + close(); +} + +bool SqliteEngine::open(const QString &filepath) +{ + close(); + + m_db = QSqlDatabase::addDatabase(QStringLiteral("QSQLITE"), m_connectionName); + m_db.setDatabaseName(filepath); + + if (!m_db.open()) + return false; + + return true; +} + +void SqliteEngine::close() +{ + if (m_currentModel) { + delete m_currentModel; + m_currentModel = nullptr; + } + m_currentTable.clear(); + + if (m_db.isOpen()) + m_db.close(); + + // Release the QSqlDatabase reference BEFORE removing the connection, + // otherwise Qt warns "connection still in use". + QString connName = m_connectionName; + m_db = QSqlDatabase(); + + if (QSqlDatabase::connectionNames().contains(connName)) + QSqlDatabase::removeDatabase(connName); +} + +QStringList SqliteEngine::tableNames() const +{ + if (!m_db.isOpen()) + return {}; + return m_db.tables(QSql::Tables); +} + +QStringList SqliteEngine::viewNames() const +{ + if (!m_db.isOpen()) + return {}; + return m_db.tables(QSql::Views); +} + +QAbstractItemModel *SqliteEngine::modelForTable(const QString &tableName) +{ + if (!m_db.isOpen()) + return nullptr; + + if (m_currentModel) { + delete m_currentModel; + m_currentModel = nullptr; + } + + m_currentTable = tableName; + + auto *model = new QSqlTableModel(this, m_db); + model->setTable(tableName); + model->setEditStrategy(QSqlTableModel::OnManualSubmit); + model->select(); + + while (model->canFetchMore()) + model->fetchMore(); + + m_currentModel = model; + return model; +} + +QString SqliteEngine::currentTableName() const +{ + return m_currentTable; +} + +bool SqliteEngine::submitAll() +{ + if (!m_currentModel) return false; + if (!m_currentModel->submitAll()) + return false; + return true; +} + +bool SqliteEngine::revertAll() +{ + if (!m_currentModel) return false; + m_currentModel->revertAll(); + return true; +} + +QString SqliteEngine::lastError() const +{ + if (m_currentModel) + return m_currentModel->lastError().text(); + return m_db.lastError().text(); +} diff --git a/wlx/dbview/src/wlx_entry.cpp b/wlx/dbview/src/wlx_entry.cpp new file mode 100644 index 0000000..e336d27 --- /dev/null +++ b/wlx/dbview/src/wlx_entry.cpp @@ -0,0 +1,152 @@ +#include <QApplication> +#include <QClipboard> +#include <QWidget> +#include <QTableView> +#include <QAbstractItemModel> + +#include <wlxbase_wlqt/FocusManager.h> +#include <wlxbase_wlqt/EditableGridWidget.h> +#include <wlxbase_wlqt/CrashLogger.h> + +#include "wlxplugin.h" +#include "DbViewWidget.h" + +// --------------------------------------------------------------------------- +// WLX Plugin Entry Points — all wrapped with WLX_TRY/WLX_CATCH +// --------------------------------------------------------------------------- + +HWND DCPCALL ListLoad(HWND ParentWin, char* FileToLoad, int ShowFlags) +{ + WLX_TRY { + Q_UNUSED(ShowFlags); + if (!QApplication::instance()) + return nullptr; + + auto *widget = new DbViewWidget(reinterpret_cast<QWidget*>(ParentWin)); + if (!widget->loadFile(QString::fromUtf8(FileToLoad))) { + delete widget; + return nullptr; + } + + widget->show(); + return reinterpret_cast<HWND>(widget); + } WLX_CATCH("ListLoad"); + return nullptr; +} + +void DCPCALL ListCloseWindow(HWND ListWin) +{ + WLX_TRY { + auto *widget = reinterpret_cast<DbViewWidget*>(ListWin); + delete widget; + } WLX_CATCH("ListCloseWindow"); +} + +int DCPCALL ListSendCommand(HWND ListWin, int Command, int Parameter) +{ + WLX_TRY { + auto *widget = reinterpret_cast<DbViewWidget*>(ListWin); + + switch (Command) { + case lc_copy: { + QString text = widget->getSelectionAsText('\t'); + if (text.isEmpty()) return LISTPLUGIN_ERROR; + QApplication::clipboard()->setText(text); + break; + } + case lc_selectall: + if (widget->grid() && widget->grid()->view()) + widget->grid()->view()->selectAll(); + break; + case lc_focus: + if (Parameter) { + widget->focusManager()->setActive(true); + if (widget->grid() && widget->grid()->view()) + widget->grid()->view()->setFocus(Qt::OtherFocusReason); + } else { + widget->focusManager()->setActive(false); + if (QWidget *fw = QApplication::focusWidget()) { + if (fw == widget || widget->isAncestorOf(fw)) + fw->clearFocus(); + } + } + break; + default: + return LISTPLUGIN_ERROR; + } + return LISTPLUGIN_OK; + } WLX_CATCH("ListSendCommand"); + return LISTPLUGIN_ERROR; +} + +int DCPCALL ListSearchText(HWND ListWin, char* SearchString, int SearchParameter) +{ + WLX_TRY { + auto *widget = reinterpret_cast<DbViewWidget*>(ListWin); + if (!widget->grid() || !widget->grid()->view() || !widget->grid()->view()->model()) + return LISTPLUGIN_ERROR; + + QAbstractItemModel *model = widget->grid()->view()->model(); + QString needle = QString::fromUtf8(SearchString); + QTableView *view = widget->grid()->view(); + + // Track search state + QString prev = view->property("needle").value<QString>(); + view->setProperty("needle", needle); + + QModelIndex current = view->currentIndex(); + int startRow = 0, startCol = 0; + if (current.isValid()) { + startRow = current.row(); + startCol = current.column(); + } + + bool first = (needle != prev) || (SearchParameter & lcs_findfirst); + bool backward = (SearchParameter & lcs_backwards); + + if (!first) { + if (backward) { + startCol--; + if (startCol < 0) { startCol = model->columnCount() - 1; startRow--; } + } else { + startCol++; + if (startCol >= model->columnCount()) { startCol = 0; startRow++; } + } + } + + int rows = model->rowCount(); + int cols = model->columnCount(); + int total = rows * cols; + + for (int i = 0; i < total; ++i) { + int offset = backward ? -i : i; + int linearStart = startRow * cols + startCol; + int linearIdx = (linearStart + offset + total) % total; + int r = linearIdx / cols; + int c = linearIdx % cols; + + QModelIndex idx = model->index(r, c); + QString cellText = model->data(idx, Qt::DisplayRole).toString(); + + bool match = (SearchParameter & lcs_matchcase) + ? cellText.contains(needle, Qt::CaseSensitive) + : cellText.contains(needle, Qt::CaseInsensitive); + + if (match) { + view->setCurrentIndex(idx); + view->scrollTo(idx); + return LISTPLUGIN_OK; + } + } + + return LISTPLUGIN_ERROR; + } WLX_CATCH("ListSearchText"); + return LISTPLUGIN_ERROR; +} + +void DCPCALL ListGetDetectString(char* DetectString, int maxlen) +{ + snprintf(DetectString, maxlen - 1, + "EXT=\"DB\" | EXT=\"SQLITE\" | EXT=\"SQLITE3\" | EXT=\"DB3\" | " + "EXT=\"DUCKDB\" | EXT=\"LDB\" | EXT=\"SST\""); +} diff --git a/wlx/jsonview/README.md b/wlx/jsonview/README.md new file mode 100644 index 0000000..9410463 --- /dev/null +++ b/wlx/jsonview/README.md @@ -0,0 +1,59 @@ +# JSON Tree Viewer Lister Plugin for Double Commander (Linux/Wayland) + +A WLX (Lister) plugin for Double Commander built with Qt6 to visualize, navigate, edit, and export **JSON** (`.json`) files using an interactive, hierarchical Tree view. + +This plugin is a Qt port of the original work by **j2969719**. You can find the original author's repository at [https://github.com/j2969719/doublecmd-plugins](https://github.com/j2969719/doublecmd-plugins). + +--- + +## Screenshots + +### JSON Tree Representation +![JSON Tree View](jsonview1.png) + +### Expanded Structure & Values +![Expanded JSON View](jsonview2.png) + +--- + +## Features + +- **Interactive Tree Hierarchy**: Visualizes nested JSON objects and arrays in a structured, collapsible tree (`QTreeWidget`). +- **Data Columns**: + - **Node**: Keys/labels of objects or indices of arrays. + - **Value**: Element values (strings, numbers, booleans, null). + - **Type**: Automatically shows the data type (Object, Array, String, Integer, Double, Boolean, Null). +- **Inline Editing**: Double-click on any value field (Column 1) to edit the JSON data directly within Lister. +- **Saving Changes**: + - `Ctrl+S` or click **Save** to overwrite the file. + - **Save As...** to save the modified JSON to a new path. +- **Search Support**: Press `F7` (or native Lister search) to search for specific text within node keys, values, and types. Supports case sensitivity. +- **Right-Click Context Menu Actions**: + - **Copy JSONPath**: Copy the dotted path to the selected node (e.g. `store.book[0].title`) directly to the clipboard. + - **Copy Subtree**: Rasterize/serialize the selected subtree back to indented JSON text format and copy it to the clipboard. + - **Copy Key:Value**: Copy the key and value pair to the clipboard. + - **Copy Value**: Copy the exact value of the selected node to the clipboard. + +--- + +## Installation + +1. Switch to the `jsonview` branch and run `./build.sh` to compile the plugin. +2. The binary `jsonview_qt6.wlx` will be built under `release/wlx/jsonview/`. +3. In Double Commander, open **Options** -> **Plugins** -> **WLX**. +4. Click **Add** and select `/path/to/jsonview_qt6.wlx`. +5. Double Commander will register the extension string. Ensure the detect string is configured as: + ``` + (EXT="JSON") & SIZE<30000000 + ``` + +--- + +## Configuration + +The plugin configuration is stored in `j2969719.ini` inside the Double Commander settings directory. You can edit settings under the `[jsonview]` section: +- `resize_columns` (boolean): Automatically resize column widths to fit content. +- `tree_expand` (boolean): Expand all tree nodes on load. +- `column_width` (integer): Default width of columns if auto-resize is off. +- `sorting` (boolean): Enable alphabetical sorting of object keys. +- `show_filename` (boolean): Show the filename as the root node, or default to "Root". diff --git a/wlx/jsonview/jsonview1.png b/wlx/jsonview/jsonview1.png new file mode 100644 index 0000000..a6654c5 Binary files /dev/null and b/wlx/jsonview/jsonview1.png differ diff --git a/wlx/jsonview/jsonview2.png b/wlx/jsonview/jsonview2.png new file mode 100644 index 0000000..0187138 Binary files /dev/null and b/wlx/jsonview/jsonview2.png differ diff --git a/wlx/jsonview/langs/ru/LC_MESSAGES/plugins.mo b/wlx/jsonview/langs/ru/LC_MESSAGES/plugins.mo new file mode 100644 index 0000000..e3ea054 Binary files /dev/null and b/wlx/jsonview/langs/ru/LC_MESSAGES/plugins.mo differ diff --git a/wlx/jsonview/langs/ru/LC_MESSAGES/plugins.po b/wlx/jsonview/langs/ru/LC_MESSAGES/plugins.po new file mode 100644 index 0000000..80889d4 --- /dev/null +++ b/wlx/jsonview/langs/ru/LC_MESSAGES/plugins.po @@ -0,0 +1,565 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2026-02-07 23:08+0300\n" +"PO-Revision-Date: 2026-02-07 23:13+0300\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" +"X-Generator: Poedit 3.8\n" + +#: ../wlx/libarchive_cat_crap/src/plugin.c:65 +#: ../wlx/libarchive_cat_qt_crap/src/plugin.cpp:56 +#, c-format +msgid "libarchive: failed to read %s" +msgstr "libarchive: не удалось прочитать %s" + +#: ../wlx/libarchive_cat_crap/src/plugin.c:196 +#: ../wlx/libarchive_cat_qt_crap/src/plugin.cpp:147 +#: ../wlx/md4c_qt/src/plugin.cpp:97 ../wlx/fileinfo_qt/src/plugin.cpp:97 +#: ../wlx/htmlconv_qt_crap/src/plugin.cpp:118 +#: ../wlx/wlxwebkit/src/wlxwebkit.c:128 +#: ../wlx/yet_another_vte_plugin/src/plugin.c:288 +#: ../wlx/gtksourceview/src/gtksourceview.c:720 +#: ../wlx/sqlview_qt/src/plugin.cpp:273 +#: ../wlx/syntax-highlighting_qt/src/plugin.cpp:153 +#: ../wlx/md4c_webkit_qt/src/plugin.cpp:90 ../wlx/csvview_qt/src/plugin.cpp:307 +#: ../wlx/hx_qt_crap/src/plugin.cpp:81 ../wlx/fileinfo/src/fileinfo.c:403 +#: ../wlx/jsonview_qt/src/plugin.cpp:262 +#: ../wlx/mimescript/src/mimescriptwlx.c:309 +#: ../wlx/htmlview_qt_crap/src/plugin.cpp:55 +#: ../wlx/wlxwebkit_qt/src/wlxwebkit.cpp:167 +#: ../wlx/wlxwebkit_qt_crap/src/wlxwebkit.cpp:111 +#, c-format +msgid "\"%s\" not found!" +msgstr "\"%s\" не найден!" + +#: ../wlx/imagemagick/src/wlximagemagick.c:215 +#: ../wlx/gtkimgview_crap/src/gtkimgview.c:371 +#: ../wlx/qtpdfview_qt/src/plugin.cpp:161 +#: ../wlx/gtkimgview/src/gtkimgview.c:222 +msgid "Zoom In" +msgstr "Увеличить" + +#: ../wlx/imagemagick/src/wlximagemagick.c:220 +#: ../wlx/gtkimgview_crap/src/gtkimgview.c:376 +#: ../wlx/qtpdfview_qt/src/plugin.cpp:172 +#: ../wlx/gtkimgview/src/gtkimgview.c:227 +msgid "Zoom Out" +msgstr "Уменьшить" + +#: ../wlx/imagemagick/src/wlximagemagick.c:225 +#: ../wlx/gtkimgview_crap/src/gtkimgview.c:381 +#: ../wlx/qtpdfview_qt/src/plugin.cpp:183 +#: ../wlx/gtkimgview/src/gtkimgview.c:232 +msgid "Original Size" +msgstr "Исходный размер" + +#: ../wlx/imagemagick/src/wlximagemagick.c:230 +#: ../wlx/wlxpview/src/wlxPView.c:469 ../wlx/wlxpview/src/wlxPView.c:470 +#: ../wlx/gtkimgview_crap/src/gtkimgview.c:386 +#: ../wlx/qtpdfview_qt/src/plugin.cpp:196 +#: ../wlx/gtkimgview/src/gtkimgview.c:237 +msgid "Fit" +msgstr "Вместить" + +#: ../wlx/imagemagick/src/wlximagemagick.c:237 +#: ../wlx/gtkimgview_crap/src/gtkimgview.c:393 +#: ../wlx/gtkimgview/src/gtkimgview.c:244 +msgid "Copy to Clipboard" +msgstr "Копировать в буфер" + +#: ../wlx/imagemagick/src/wlximagemagick.c:240 +#: ../wlx/imagemagick/src/wlximagemagick.c:243 +#: ../wlx/gtkimgview_crap/src/gtkimgview.c:396 +#: ../wlx/gtkimgview_crap/src/gtkimgview.c:399 +#: ../wlx/gtkimgview/src/gtkimgview.c:247 +#: ../wlx/gtkimgview/src/gtkimgview.c:250 +msgid "Rotate" +msgstr "Повернуть" + +#: ../wlx/imagemagick/src/wlximagemagick.c:246 +#: ../wlx/imagemagick/src/wlximagemagick.c:249 +#: ../wlx/gtkimgview_crap/src/gtkimgview.c:402 +#: ../wlx/gtkimgview_crap/src/gtkimgview.c:405 +#: ../wlx/gtkimgview/src/gtkimgview.c:253 +#: ../wlx/gtkimgview/src/gtkimgview.c:256 +msgid "Rotate Clockwise" +msgstr "Повернуть по часовой стрелке" + +#: ../wlx/imagemagick/src/wlximagemagick.c:252 +#: ../wlx/imagemagick/src/wlximagemagick.c:255 +#: ../wlx/gtkimgview_crap/src/gtkimgview.c:408 +#: ../wlx/gtkimgview_crap/src/gtkimgview.c:411 +#: ../wlx/gtkimgview/src/gtkimgview.c:259 +#: ../wlx/gtkimgview/src/gtkimgview.c:262 +msgid "Flip Horizontally" +msgstr "Отразить по горизонтали" + +#: ../wlx/imagemagick/src/wlximagemagick.c:258 +#: ../wlx/imagemagick/src/wlximagemagick.c:261 +#: ../wlx/gtkimgview_crap/src/gtkimgview.c:414 +#: ../wlx/gtkimgview_crap/src/gtkimgview.c:417 +#: ../wlx/gtkimgview/src/gtkimgview.c:265 +#: ../wlx/gtkimgview/src/gtkimgview.c:268 +msgid "Flip Vertically" +msgstr "Отразить по вертикали" + +#: ../wlx/dirsize_crap/src/plugin.c:245 +msgid "Name" +msgstr "Название" + +#: ../wlx/dirsize_crap/src/plugin.c:258 +msgid "Size" +msgstr "Размер" + +#: ../wlx/wlxpview/src/wlxPView.c:139 +msgid "Scale ~x" +msgstr "Масштаб ~x" + +#: ../wlx/wlxpview/src/wlxPView.c:183 ../wlx/wlxpview/src/wlxPView.c:438 +#: ../wlx/wlxpview/src/wlxPView.c:439 ../wlx/qtpdfview_qt/src/plugin.cpp:140 +msgid "Go to..." +msgstr "Перейти..." + +#: ../wlx/wlxpview/src/wlxPView.c:193 ../wlx/qtpdfview_qt/src/plugin.cpp:148 +msgid "Page number to go to:" +msgstr "Страница на которую перейти:" + +#: ../wlx/wlxpview/src/wlxPView.c:296 ../wlx/wlxpview/src/wlxPView.c:477 +#: ../wlx/wlxpview/src/wlxPView.c:478 +msgid "Text" +msgstr "Текст" + +#: ../wlx/wlxpview/src/wlxPView.c:324 ../wlx/wlxpview/src/wlxPView.c:483 +#: ../wlx/wlxpview/src/wlxPView.c:484 ../wlx/qtpdfview_qt/src/plugin.cpp:222 +msgid "Info" +msgstr "Информация" + +#: ../wlx/wlxpview/src/wlxPView.c:328 +#, c-format +msgid "" +"Title: %s\n" +"Author: %s\n" +"Subject: %s\n" +"Creator: %s\n" +"Producer: %s\n" +"Keywords: %s\n" +"Version: %s" +msgstr "" +"Название: %s\n" +"Автор: %s\n" +"Тема: %s\n" +"Создатель: %s\n" +"Сегнерировано: %s\n" +"Ключевые слова: %s\n" +"Версия: %s" + +#: ../wlx/wlxpview/src/wlxPView.c:346 +msgid "metadata not found" +msgstr "Метаданные не найдены" + +#: ../wlx/wlxpview/src/wlxPView.c:414 ../wlx/wlxpview/src/wlxPView.c:415 +#: ../wlx/qtpdfview_qt/src/plugin.cpp:60 +msgid "First page" +msgstr "Первая страница" + +#: ../wlx/wlxpview/src/wlxPView.c:420 ../wlx/wlxpview/src/wlxPView.c:421 +#: ../wlx/qtpdfview_qt/src/plugin.cpp:72 +msgid "Previous page" +msgstr "Предыдущая страница" + +#: ../wlx/wlxpview/src/wlxPView.c:426 ../wlx/wlxpview/src/wlxPView.c:427 +#: ../wlx/qtpdfview_qt/src/plugin.cpp:87 +msgid "Next page" +msgstr "Следующая страница" + +#: ../wlx/wlxpview/src/wlxPView.c:432 ../wlx/wlxpview/src/wlxPView.c:433 +#: ../wlx/qtpdfview_qt/src/plugin.cpp:102 +msgid "Last page" +msgstr "Последняя страница" + +#: ../wlx/qtpdfview_qt/src/plugin.cpp:208 +msgid "Page Mode" +msgstr "Режим страницы" + +#: ../wlx/qtpdfview_qt/src/plugin.cpp:228 +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:54 +msgid "Author" +msgstr "" + +#: ../wlx/qtpdfview_qt/src/plugin.cpp:229 +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:50 +msgid "Title" +msgstr "" + +#: ../wlx/qtpdfview_qt/src/plugin.cpp:230 +msgid "Subject" +msgstr "" + +#: ../wlx/qtpdfview_qt/src/plugin.cpp:231 +msgid "Producer" +msgstr "" + +#: ../wlx/qtpdfview_qt/src/plugin.cpp:232 +msgid "Creator" +msgstr "" + +#: ../wlx/qtpdfview_qt/src/plugin.cpp:233 +msgid "Keywords" +msgstr "" + +#: ../wlx/qtpdfview_qt/src/plugin.cpp:234 +msgid "Creation Date" +msgstr "" + +#: ../wlx/qtpdfview_qt/src/plugin.cpp:235 +msgid "Modification Date" +msgstr "" + +#: ../wlx/qtpdfview_qt/src/plugin.cpp:255 +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:468 +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:524 +msgid "no suitable info available" +msgstr "" + +#: ../wlx/sqlview_gtk2/src/plugin.c:124 ../wlx/sqlview_gtk2/src/plugin.c:222 +#: ../wlx/sqlview_qt/src/plugin.cpp:97 +msgid "Query" +msgstr "" + +#: ../wlx/sqlview_gtk2/src/plugin.c:132 ../wlx/sqlview_qt/src/plugin.cpp:131 +msgid "Please enter a new query and press OK to execute it" +msgstr "" + +#: ../wlx/sqlview_gtk2/src/plugin.c:227 ../wlx/sqlview_qt/src/plugin.cpp:89 +msgid "Table:" +msgstr "" + +#: ../wlx/gtksourceview/src/gtksourceview.c:52 +msgid "Failed to load file" +msgstr "Не удалось открыть файл" + +#: ../wlx/gtksourceview/src/gtksourceview.c:53 +#: ../wlx/gtksourceview/src/gtksourceview.c:360 +#: ../wlx/gtksourceview/src/gtksourceview.c:563 +msgid "Default" +msgstr "По умолчанию" + +#: ../wlx/gtksourceview/src/gtksourceview.c:54 +#: ../wlx/gtksourceview/src/gtksourceview.c:380 +msgid "Encoding:" +msgstr "Кодировка:" + +#: ../wlx/gtksourceview/src/gtksourceview.c:200 +#: ../wlx/gtksourceview/src/gtksourceview.c:590 +msgid "Options" +msgstr "Настройки" + +#: ../wlx/gtksourceview/src/gtksourceview.c:207 +msgid "Font" +msgstr "Шрифт" + +#: ../wlx/gtksourceview/src/gtksourceview.c:215 +msgid "Style" +msgstr "Тема" + +#: ../wlx/gtksourceview/src/gtksourceview.c:232 +msgid "Blank space" +msgstr "Отсупы" + +#: ../wlx/gtksourceview/src/gtksourceview.c:238 +msgid "Above paragraphs" +msgstr "Над текстом" + +#: ../wlx/gtksourceview/src/gtksourceview.c:239 +msgid "Below paragraphs" +msgstr "Под текстом" + +#: ../wlx/gtksourceview/src/gtksourceview.c:240 +msgid "Tab width" +msgstr "Ширина табуляции" + +#: ../wlx/gtksourceview/src/gtksourceview.c:260 +msgid "Enca Lang" +msgstr "Локаль Enca" + +#: ../wlx/gtksourceview/src/gtksourceview.c:336 +msgid "Language:" +msgstr "Язык:" + +#: ../wlx/gtksourceview/src/gtksourceview.c:356 +msgid "file seems empty" +msgstr "походу файл пустой" + +#: ../wlx/gtksourceview/src/gtksourceview.c:573 +msgid "Custom encoding" +msgstr "Другая кодировка" + +#: ../wlx/gtksourceview/src/gtksourceview.c:597 +msgid "Draw Spaces" +msgstr "Пробелы" + +#: ../wlx/gtksourceview/src/gtksourceview.c:598 +msgid "Text Cursor" +msgstr "Курсор" + +#: ../wlx/gtksourceview/src/gtksourceview.c:599 +msgid "Line Numbers" +msgstr "Номера строк" + +#: ../wlx/gtksourceview/src/gtksourceview.c:600 +msgid "Highlight Line" +msgstr "Подсветка строки" + +#: ../wlx/gtksourceview/src/gtksourceview.c:601 +msgid "Wrap Line" +msgstr "Разрывы" + +#: ../wlx/sqlview_qt/src/plugin.cpp:25 +msgid "base not valid!" +msgstr "" + +#: ../wlx/sqlview_qt/src/plugin.cpp:143 +msgid "Failed to fetch list of tables. Maybe DB is locked?" +msgstr "" + +#: ../wlx/gtkimgview/src/gtkimgview.c:273 +msgid "Play Animation" +msgstr "Воспроизвести анимацию" + +#: ../wlx/gtkimgview/src/gtkimgview.c:278 +msgid "Stop Animation" +msgstr "Остановить анимацию" + +#: ../wlx/jsonview_gtk2/src/plugin.c:64 ../wlx/jsonview_qt/src/plugin.cpp:57 +#: ../wlx/jsonview_qt/src/plugin.cpp:160 +msgid "Object" +msgstr "" + +#: ../wlx/jsonview_gtk2/src/plugin.c:70 ../wlx/jsonview_qt/src/plugin.cpp:64 +#: ../wlx/jsonview_qt/src/plugin.cpp:165 +msgid "Array" +msgstr "" + +#: ../wlx/jsonview_gtk2/src/plugin.c:78 ../wlx/jsonview_qt/src/plugin.cpp:71 +msgid "String" +msgstr "" + +#: ../wlx/jsonview_gtk2/src/plugin.c:85 ../wlx/jsonview_qt/src/plugin.cpp:83 +msgid "Integer" +msgstr "" + +#: ../wlx/jsonview_gtk2/src/plugin.c:92 ../wlx/jsonview_qt/src/plugin.cpp:88 +msgid "Double" +msgstr "" + +#: ../wlx/jsonview_gtk2/src/plugin.c:96 ../wlx/jsonview_qt/src/plugin.cpp:101 +msgid "True" +msgstr "" + +#: ../wlx/jsonview_gtk2/src/plugin.c:96 ../wlx/jsonview_qt/src/plugin.cpp:103 +msgid "False" +msgstr "" + +#: ../wlx/jsonview_gtk2/src/plugin.c:99 ../wlx/jsonview_qt/src/plugin.cpp:98 +msgid "Boolean" +msgstr "" + +#: ../wlx/jsonview_gtk2/src/plugin.c:102 ../wlx/jsonview_qt/src/plugin.cpp:116 +msgid "Undefined" +msgstr "" + +#: ../wlx/jsonview_gtk2/src/plugin.c:107 ../wlx/jsonview_qt/src/plugin.cpp:110 +msgid "Null" +msgstr "" + +#: ../wlx/jsonview_gtk2/src/plugin.c:164 ../wlx/jsonview_gtk2/src/plugin.c:261 +#: ../wlx/jsonview_qt/src/plugin.cpp:156 +msgid "Root" +msgstr "" + +#: ../wlx/jsonview_gtk2/src/plugin.c:183 ../wlx/jsonview_qt/src/plugin.cpp:183 +msgid "Node" +msgstr "" + +#: ../wlx/jsonview_gtk2/src/plugin.c:195 ../wlx/jsonview_qt/src/plugin.cpp:183 +msgid "Value" +msgstr "" + +#: ../wlx/jsonview_gtk2/src/plugin.c:207 ../wlx/jsonview_qt/src/plugin.cpp:183 +msgid "Type" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:49 +msgid "Artist" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:51 +msgid "Album" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:52 +msgid "Track Number" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:53 +msgid "Album Artist" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:55 +msgid "Composer" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:56 +msgid "Lead Performer" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:57 +msgid "Publisher" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:58 +msgid "Genre" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:59 +msgid "Duration" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:60 +msgid "Description" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:61 +msgid "Copyright" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:62 +msgid "Comment" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:63 +msgid "Resolution" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:64 +msgid "Media Type" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:65 +msgid "Video Codec" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:66 +msgid "Video FrameRate" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:67 +msgid "Video BitRate" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:68 +msgid "Audio Codec" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:69 +msgid "Audio BitRate" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:70 +msgid "Date" +msgstr "" + +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:448 +#: ../wlx/qmediaplayer_qt/src/plugin.cpp:508 +#, c-format +msgid "%'d bps" +msgstr "" + +#: ../wlx/fontview_qt/src/plugin.cpp:16 +msgid "the quick brown fox jumps over the lazy dog" +msgstr "съешь ещё этих мягких французских булок да выпей чаю, belzebub" + +#: ../wlx/fontview_qt/src/plugin.cpp:36 +msgid "Bold" +msgstr "Жирный" + +#: ../wlx/fontview_qt/src/plugin.cpp:37 +msgid "Italic" +msgstr "Курсив" + +#: ../wdx/fewfiles/src/plugin.c:44 +#, c-format +msgid "Permission denied" +msgstr "Доступ запрещен" + +#: ../wdx/fewfiles/src/plugin.c:74 +#, c-format +msgid "Empty directory" +msgstr "Пустой каталог" + +#: ../wfx/trash_crap/src/plugin.c:120 +#, c-format +msgid "Restore %s from trash?" +msgstr "Восстановить %s из корзины?" + +#: ../wfx/trash_crap/src/plugin.c:135 +msgid "Already exists, overwrite?" +msgstr "Уже существует. Перезаписать?" + +#: ../wfx/trash_crap/src/plugin.c:153 ../wfx/trash_crap/src/plugin.c:185 +msgid "Failed to get information about the removed object." +msgstr "Не удалось получить информацию об удаленном объекте." + +#: ../wfx/trash_crap/src/plugin.c:168 +msgid "Original Path:" +msgstr "Оригинальный путь:" + +#: ../wfx/trash_crap/src/plugin.c:169 +msgid "Deletion Date:" +msgstr "Дата удаления:" + +#: ../wfx/trash_crap/src/plugin.c:177 ../wfx/trash_crap/src/plugin.c:178 +#: ../wfx/trash_crap/src/plugin.c:179 ../wfx/trash_crap/src/plugin.c:180 +#: ../wfx/trash_crap/src/plugin.c:181 ../wfx/trash_crap/src/plugin.c:182 +#: ../wfx/trash_crap/src/plugin.c:183 ../wfx/trash_crap/src/plugin.c:184 +msgid "Unknown" +msgstr "Неизвесто" + +#: ../wfx/trash_crap/src/plugin.c:560 +msgid "Path" +msgstr "Путь" + +#: ../wfx/trash_crap/src/plugin.c:568 +msgid "Trash (WFX)" +msgstr "Корзина (WFX)" + +#: ../dsx/git_untracked/src/plugin.c:57 ../dsx/lslocks/src/plugin.c:58 +#: ../dsx/git_ignored/src/plugin.c:57 ../dsx/git_modified/src/plugin.c:58 +msgid "failed to launch command" +msgstr "не удалось выполнить команду" + +#: ../dsx/git_untracked/src/plugin.c:60 +#: ../dsx/tracker_textsearch/src/plugin.c:84 +#: ../dsx/recollq_crap/src/plugin.c:108 ../dsx/locate_crap/src/plugin.c:134 +#: ../dsx/gtkrecent/src/plugin.c:56 ../dsx/lslocks/src/plugin.c:61 +#: ../dsx/tracker3_crap/src/plugin.c:104 ../dsx/git_ignored/src/plugin.c:60 +#: ../dsx/git_modified/src/plugin.c:61 +msgid "not found" +msgstr "не найдено" + +#: ../dsx/recollq_crap/src/plugin.c:79 ../dsx/tracker3_crap/src/plugin.c:78 +msgid "the search text was not specified" +msgstr "искомый текст не указан" diff --git a/wlx/jsonview/src/Makefile b/wlx/jsonview/src/Makefile new file mode 100644 index 0000000..ef43dcd --- /dev/null +++ b/wlx/jsonview/src/Makefile @@ -0,0 +1,31 @@ +CXX = g++ +CXXFLAGS = -shared -fPIC -Wl,--no-as-needed + +libs := +includes := -I../../../sdk + +qt5_libs := `pkg-config --cflags --libs Qt5Widgets` +qt6_libs := `pkg-config --cflags --libs Qt6Widgets Qt6Core Qt6Gui` + +plugdir := $(shell basename '$(realpath ..)') +plugtype := $(shell basename '$(realpath ../..)') +plugname := $(plugdir).$(plugtype) +plugdescr := `grep '$(plugtype)/$(plugdir))' ../../../../plugins.md -1 | tail -1 | sed 's/[[]//' | sed 's/[]][\(][^\)]\+.//' | sed 's/\s[\(].\+[\)]//'` +plugfiles := $(filter-out $(wildcard ../*.$(plugtype)), $(wildcard ../*)) + +detectstring := + + +all: qt6 + +qt6: + $(CXX) $(CXXFLAGS) -o '../$(plugdir)_$@.$(plugtype)' plugin.cpp $(libs) $($@_libs) $(includes) -D'PLUGNAME="'$(plugdir)_$@.$(plugtype)'"' -D'DETECT_STRING="$(detectstring)"' -D'PLUGTARGET="$@"' || echo '$(plugdir)_$@.$(plugtype)' >> ../../../dist/.build_fail.lst + +dist: + test -f '../$(plugdir)_qt6.$(plugtype)' && \ + echo -e "[plugininstall]\ndescription=$(plugdescr)\ntype=$(plugtype)\nfile=$(plugdir)_qt6.$(plugtype)\ndefaultdir=$(plugdir)" > ../pluginst.inf && \ + tar --exclude=../src -h -cvzf '../../../dist/$(plugtype)_$(plugdir)_qt6_$(shell date +%y.%m.%d).tar.gz' ../pluginst.inf '../$(plugdir)_qt6.$(plugtype)' $(plugfiles) && \ + rm ../pluginst.inf || echo $(plugdir)_qt6.$(plugtype) >> ../../../dist/.missing.log + +clean: + $(RM) $(wildcard ../*.$(plugtype)) diff --git a/wlx/jsonview/src/plugin.cpp b/wlx/jsonview/src/plugin.cpp new file mode 100644 index 0000000..dbbb179 --- /dev/null +++ b/wlx/jsonview/src/plugin.cpp @@ -0,0 +1,687 @@ +#include <QFile> +#include <QFileInfo> +#include <QSettings> +#include <QMimeData> +#include <QtWidgets> +#include <QClipboard> +#include <QApplication> +#include <QJsonDocument> +#include <QJsonObject> +#include <QJsonArray> +#include <QJsonValue> +#include <QMessageBox> +#include <QEvent> +#include <QKeyEvent> +#include <QChildEvent> +#include <QTimer> +#include <QPointer> + +#include <dlfcn.h> +#include <libintl.h> +#include <locale.h> +#define _(STRING) gettext(STRING) +#define GETTEXT_PACKAGE "plugins" + +#include "wlxplugin.h" + +static int g_width = 200; +static bool g_resize = false; +static bool g_expand = true; +static bool g_sorting = false; +static bool g_filename = true; + +class ValueDelegate : public QStyledItemDelegate { +public: + ValueDelegate(QObject *parent = nullptr) : QStyledItemDelegate(parent) {} + QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override { + if (index.column() != 1) return nullptr; // Only allow editing column 1 + return QStyledItemDelegate::createEditor(parent, option, index); + } +}; + +class JsonViewerWidget : public QWidget +{ +public: + explicit JsonViewerWidget(QWidget *parent = nullptr); + ~JsonViewerWidget(); + + bool loadFile(const QString& filePath); + void saveFile(const QString& filePath); + + QTreeWidget* view() const { return m_view; } + +protected: + bool eventFilter(QObject *obj, QEvent *event) override; + +private: + void onSave(); + void onSaveAs(); + void onReload(); + void showContextMenu(const QPoint &pos); + + void installFocusGuard(); + bool isInputWidget(QWidget *w) const; + void restoreFocusToDC(); + + void walk_array(const QJsonArray& array, QTreeWidgetItem *item); + void walk_object(const QJsonObject& object, QTreeWidgetItem *item); + void check_value(const QJsonValue& value, QTreeWidgetItem *item); + QJsonValue treeToJson(QTreeWidgetItem *item); + + QString getJsonPath(QTreeWidgetItem *item); + QString getSubtreeText(QTreeWidgetItem *item); + QString getValueText(QTreeWidgetItem *item); + + QTreeWidget *m_view; + QToolBar *m_toolbar; + QString m_currentFile; + + QPointer<QWidget> m_savedFocusWidget; + QPointer<QWidget> m_activeInput; +}; + +JsonViewerWidget::JsonViewerWidget(QWidget *parent) + : QWidget(parent), m_savedFocusWidget(nullptr), m_activeInput(nullptr) +{ + setFocusPolicy(Qt::NoFocus); + + QVBoxLayout *layout = new QVBoxLayout(this); + layout->setContentsMargins(0, 0, 0, 0); + + m_toolbar = new QToolBar(this); + m_toolbar->setFocusPolicy(Qt::NoFocus); + + QAction *actSave = m_toolbar->addAction("Save"); + actSave->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_S)); + + QAction *actSaveAs = m_toolbar->addAction("Save As..."); + QAction *actReload = m_toolbar->addAction("Reload"); + + addAction(actSave); + + layout->addWidget(m_toolbar); + + m_view = new QTreeWidget(this); + m_view->setFocusPolicy(Qt::NoFocus); + m_view->setItemDelegate(new ValueDelegate(this)); + m_view->setContextMenuPolicy(Qt::CustomContextMenu); + layout->addWidget(m_view); + + QObject::connect(actSave, &QAction::triggered, this, [this]() { onSave(); }); + QObject::connect(actSaveAs, &QAction::triggered, this, [this]() { onSaveAs(); }); + QObject::connect(actReload, &QAction::triggered, this, [this]() { onReload(); }); + QObject::connect(m_view, &QWidget::customContextMenuRequested, this, [this](const QPoint &pos) { showContextMenu(pos); }); + + installFocusGuard(); +} + +JsonViewerWidget::~JsonViewerWidget() +{ + if (qApp) qApp->removeEventFilter(this); +} + +void JsonViewerWidget::installFocusGuard() +{ + if (qApp) qApp->installEventFilter(this); + const auto children = findChildren<QWidget*>(); + for (QWidget *child : children) { + if (!isInputWidget(child)) + child->setFocusPolicy(Qt::NoFocus); + } +} + +bool JsonViewerWidget::isInputWidget(QWidget *w) const +{ + if (!w) return false; + if (w != m_view && m_view->isAncestorOf(w)) return true; + return false; +} + +void JsonViewerWidget::restoreFocusToDC() +{ + if (QWidget *fw = QApplication::focusWidget()) { + if (fw == this || fw->isAncestorOf(this) || this->isAncestorOf(fw)) + fw->clearFocus(); + } + if (m_savedFocusWidget) { + m_savedFocusWidget->setFocus(Qt::OtherFocusReason); + } +} + +bool JsonViewerWidget::eventFilter(QObject *obj, QEvent *event) +{ + if (event->type() == QEvent::MouseButtonPress) { + QWidget *w = qobject_cast<QWidget*>(obj); + if (w) { + if (w != this && !this->isAncestorOf(w)) { + m_activeInput = nullptr; + restoreFocusToDC(); + } + } + } + + QWidget *w = qobject_cast<QWidget*>(obj); + if (w && (w == this || this->isAncestorOf(w))) { + if (event->type() == QEvent::FocusIn) { + if (isInputWidget(w)) { + m_activeInput = w; + return false; + } + QTimer::singleShot(0, this, [this]() { restoreFocusToDC(); }); + return false; + } + + if (event->type() == QEvent::ChildAdded) { + auto *ce = static_cast<QChildEvent*>(event); + if (auto *childWidget = qobject_cast<QWidget*>(ce->child())) { + if (!isInputWidget(childWidget)) + childWidget->setFocusPolicy(Qt::NoFocus); + } + } + + if (event->type() == QEvent::KeyPress) { + auto *ke = static_cast<QKeyEvent*>(event); + if ((ke->modifiers() & Qt::ControlModifier) && ke->key() == Qt::Key_S) { + onSave(); + return true; + } + if (ke->key() == Qt::Key_Escape && m_activeInput) { + m_activeInput = nullptr; + restoreFocusToDC(); + return true; + } + if ((ke->key() == Qt::Key_Return || ke->key() == Qt::Key_Enter) && isInputWidget(w)) { + QTimer::singleShot(0, this, [this]() { + m_activeInput = nullptr; + restoreFocusToDC(); + }); + } + } + } + + return QWidget::eventFilter(obj, event); +} + +void JsonViewerWidget::walk_array(const QJsonArray& array, QTreeWidgetItem *item) +{ + for (int i = 0; i < array.count(); i++) + { + QTreeWidgetItem *newitem = new QTreeWidgetItem(item); + newitem->setText(0, QString("[%1]").arg(i)); + newitem->setFlags(newitem->flags() | Qt::ItemIsEditable); + check_value(array.at(i), newitem); + } +} + +void JsonViewerWidget::walk_object(const QJsonObject& object, QTreeWidgetItem *item) +{ + QJsonObject::const_iterator iter; + for (iter = object.constBegin(); iter != object.constEnd(); ++iter) + { + QTreeWidgetItem *newitem = new QTreeWidgetItem(item); + newitem->setText(0, iter.key()); + newitem->setToolTip(0, iter.key()); + newitem->setFlags(newitem->flags() | Qt::ItemIsEditable); + check_value(iter.value(), newitem); + } +} + +void JsonViewerWidget::check_value(const QJsonValue& value, QTreeWidgetItem *item) +{ + double d; + switch (value.type()) + { + case QJsonValue::Object: + item->setText(2, _("Object")); + walk_object(value.toObject(), item); + break; + case QJsonValue::Array: + item->setText(2, _("Array")); + walk_array(value.toArray(), item); + break; + case QJsonValue::String: + item->setText(2, _("String")); + item->setText(1, value.toString()); + item->setToolTip(1, value.toString()); + break; + case QJsonValue::Double: + d = value.toDouble(); + if (trunc(d) == d) + { + item->setText(2, _("Integer")); + item->setText(1, QString::number(d, 'f', 0)); + } + else + { + item->setText(2, _("Double")); + item->setText(1, QString::number(d)); + } + item->setToolTip(1, QString::number(d, 'f', 1)); + break; + case QJsonValue::Bool: + item->setText(2, _("Boolean")); + if (value.toBool()) + item->setText(1, _("True")); + else + item->setText(1, _("False")); + break; + case QJsonValue::Null: + item->setText(2, _("Null")); + break; + default: + item->setText(2, _("Undefined")); + break; + } +} + +QJsonValue JsonViewerWidget::treeToJson(QTreeWidgetItem *item) +{ + QString type = item->text(2); + if (type == _("Object")) { + QJsonObject obj; + for (int i = 0; i < item->childCount(); ++i) { + QTreeWidgetItem *child = item->child(i); + obj.insert(child->text(0), treeToJson(child)); + } + return obj; + } else if (type == _("Array")) { + QJsonArray arr; + for (int i = 0; i < item->childCount(); ++i) { + QTreeWidgetItem *child = item->child(i); + arr.append(treeToJson(child)); + } + return arr; + } else if (type == _("String")) { + return QJsonValue(item->text(1)); + } else if (type == _("Integer") || type == _("Double")) { + bool ok; + double val = item->text(1).toDouble(&ok); + if (ok) return QJsonValue(val); + return QJsonValue(item->text(1)); // Fallback to string + } else if (type == _("Boolean")) { + QString val = item->text(1).toLower(); + return QJsonValue(val == "true" || val == "1"); + } else if (type == _("Null")) { + return QJsonValue(QJsonValue::Null); + } + return QJsonValue(); +} + +bool JsonViewerWidget::loadFile(const QString& filePath) +{ + QWidget *fw = QApplication::focusWidget(); + if (fw && fw != this && !this->isAncestorOf(fw)) { + m_savedFocusWidget = fw; + } + m_currentFile = filePath; + m_activeInput = nullptr; + + QMimeDatabase db; + QMimeType type = db.mimeTypeForFile(filePath); + + if (type.name() != "text/plain" && type.name() != "application/json") + return false; + + QFile file(filePath); + if (!file.open(QFile::ReadOnly | QFile::Text)) + return false; + + QJsonParseError err; + QJsonDocument json = QJsonDocument().fromJson(file.readAll(), &err); + file.close(); + + if (json.isNull() || json.isEmpty()) { + return false; + } + + m_view->clear(); + m_view->setColumnCount(3); + + QFileInfo fi(filePath); + QTreeWidgetItem *root = new QTreeWidgetItem(m_view); + + if (g_filename) + root->setText(0, fi.fileName()); + else + root->setText(0, _("Root")); + + root->setFlags(root->flags() | Qt::ItemIsEditable); + + if (json.isObject()) { + root->setText(2, _("Object")); + walk_object(json.object(), root); + } else if (json.isArray()) { + root->setText(2, _("Array")); + walk_array(json.array(), root); + } + + m_view->insertTopLevelItem(0, root); + + if (g_expand) + m_view->expandAll(); + + for (int i = 0; i < 3; i++) { + if (g_resize) + m_view->resizeColumnToContents(i); + else + m_view->setColumnWidth(i, g_width); + } + + QStringList headers; + headers << _("Node") << _("Value") << _("Type"); + m_view->setHeaderLabels(headers); + + m_view->setSelectionMode(QAbstractItemView::SingleSelection); + m_view->setSelectionBehavior(QAbstractItemView::SelectItems); + + if (g_sorting) + m_view->setSortingEnabled(true); + + QTimer::singleShot(0, this, [this]() { restoreFocusToDC(); }); + return true; +} + +void JsonViewerWidget::onSave() +{ + if (QWidget *fw = QApplication::focusWidget()) { + if (m_view->isAncestorOf(fw)) { + fw->clearFocus(); + } + } + saveFile(m_currentFile); + + m_activeInput = nullptr; + restoreFocusToDC(); +} + +void JsonViewerWidget::onSaveAs() +{ + QString path = QFileDialog::getSaveFileName(this, "Save JSON As", m_currentFile); + if (!path.isEmpty()) { + saveFile(path); + } +} + +void JsonViewerWidget::onReload() +{ + if (QWidget *fw = QApplication::focusWidget()) { + if (m_view->isAncestorOf(fw)) { + fw->clearFocus(); + } + } + loadFile(m_currentFile); +} + +void JsonViewerWidget::saveFile(const QString& filePath) +{ + QTreeWidgetItem *root = m_view->topLevelItem(0); + if (!root) return; + + QJsonDocument doc; + QJsonValue rootVal = treeToJson(root); + if (rootVal.isObject()) doc.setObject(rootVal.toObject()); + else if (rootVal.isArray()) doc.setArray(rootVal.toArray()); + + QFile file(filePath); + if (!file.open(QFile::WriteOnly | QFile::Text)) { + QMessageBox::warning(this, "Error", "Could not open file for writing."); + return; + } + + file.write(doc.toJson(QJsonDocument::Indented)); + file.close(); + m_currentFile = filePath; +} + +QString JsonViewerWidget::getJsonPath(QTreeWidgetItem *item) +{ + QString path; + while (item) { + QString key = item->text(0); + if (item->parent()) { + if (item->parent()->text(2) == _("Array")) { + path = key + path; + } else { + path = "." + key + path; + } + } else { + path = key + path; + } + item = item->parent(); + } + return path; +} + +QString JsonViewerWidget::getSubtreeText(QTreeWidgetItem *item) +{ + QJsonValue val = treeToJson(item); + if (item->parent() && item->parent()->text(2) == _("Object")) { + QJsonObject wrapper; + wrapper.insert(item->text(0), val); + QJsonDocument doc(wrapper); + QString jsonStr = QString::fromUtf8(doc.toJson(QJsonDocument::Indented)).trimmed(); + + if (jsonStr.startsWith("{") && jsonStr.endsWith("}")) { + int firstNewline = jsonStr.indexOf('\n'); + int lastNewline = jsonStr.lastIndexOf('\n'); + if (firstNewline != -1 && lastNewline != -1 && firstNewline < lastNewline) { + jsonStr = jsonStr.mid(firstNewline + 1, lastNewline - firstNewline - 1); + } else { + jsonStr = jsonStr.mid(1, jsonStr.length() - 2); + } + } + + QStringList lines = jsonStr.split('\n'); + for (int i = 0; i < lines.size(); ++i) { + if (lines[i].startsWith(" ")) { + lines[i] = lines[i].mid(4); + } + } + return lines.join('\n').trimmed(); + } else if (item->parent() && item->parent()->text(2) == _("Array")) { + QJsonArray wrapper; + wrapper.append(val); + QJsonDocument doc(wrapper); + return QString::fromUtf8(doc.toJson(QJsonDocument::Indented)).trimmed(); + } else { + if (val.isObject()) { + return QString::fromUtf8(QJsonDocument(val.toObject()).toJson(QJsonDocument::Indented)).trimmed(); + } else if (val.isArray()) { + return QString::fromUtf8(QJsonDocument(val.toArray()).toJson(QJsonDocument::Indented)).trimmed(); + } else { + return item->text(1); + } + } +} + +QString JsonViewerWidget::getValueText(QTreeWidgetItem *item) +{ + QJsonValue val = treeToJson(item); + if (val.isObject()) { + return QString::fromUtf8(QJsonDocument(val.toObject()).toJson(QJsonDocument::Indented)).trimmed(); + } else if (val.isArray()) { + return QString::fromUtf8(QJsonDocument(val.toArray()).toJson(QJsonDocument::Indented)).trimmed(); + } else { + return item->text(1); + } +} + +void JsonViewerWidget::showContextMenu(const QPoint &pos) +{ + QTreeWidgetItem *item = m_view->itemAt(pos); + if (!item) return; + + QMenu menu(this); + QAction *actCopyPath = menu.addAction("Copy JSONPath"); + + bool isComplex = (item->text(2) == _("Object") || item->text(2) == _("Array")); + QAction *actCopySubtree = nullptr; + QAction *actCopyKeyValue = nullptr; + + if (isComplex) { + actCopySubtree = menu.addAction("Copy Subtree"); + } else { + actCopyKeyValue = menu.addAction("Copy Key:Value"); + } + + QAction *actCopyValue = menu.addAction("Copy Value"); + + QAction *res = menu.exec(m_view->viewport()->mapToGlobal(pos)); + if (res == actCopyPath) { + QApplication::clipboard()->setText(getJsonPath(item)); + } else if (actCopySubtree && res == actCopySubtree) { + QApplication::clipboard()->setText(getSubtreeText(item)); + } else if (actCopyKeyValue && res == actCopyKeyValue) { + QApplication::clipboard()->setText(getSubtreeText(item)); + } else if (res == actCopyValue) { + QApplication::clipboard()->setText(getValueText(item)); + } +} + +HANDLE DCPCALL ListLoad(HANDLE ParentWin, char* FileToLoad, int ShowFlags) +{ + if (!QApplication::instance()) + return nullptr; + + JsonViewerWidget *widget = new JsonViewerWidget((QWidget*)ParentWin); + if (!widget->loadFile(FileToLoad)) { + delete widget; + return nullptr; + } + + widget->show(); + return widget; +} + +void DCPCALL ListCloseWindow(HANDLE ListWin) +{ + JsonViewerWidget *widget = (JsonViewerWidget*)ListWin; + delete widget; +} + +int DCPCALL ListSendCommand(HWND ListWin, int Command, int Parameter) +{ + JsonViewerWidget *widget = (JsonViewerWidget*)ListWin; + QTreeWidget *view = widget->view(); + + if (Command == lc_copy) + { + QTreeWidgetItem *item = view->currentItem(); + if (item) { + QString text(item->text(view->currentColumn())); + if (!text.isEmpty()) + QApplication::clipboard()->setText(text); + } + return LISTPLUGIN_OK; + } + + return LISTPLUGIN_ERROR; +} + +int DCPCALL ListSearchText(HWND ListWin, char* SearchString, int SearchParameter) +{ + JsonViewerWidget *widget = (JsonViewerWidget*)ListWin; + QTreeWidget *view = widget->view(); + QList<QTreeWidgetItem*> list; + Qt::MatchFlags sflags = Qt::MatchContains | Qt::MatchRecursive; + + if (SearchParameter & lcs_matchcase) + sflags |= Qt::MatchCaseSensitive; + + QString needle(SearchString); + QString prev = view->property("needle").value<QString>(); + view->setProperty("needle", needle); + + list = view->findItems(QString(SearchString), sflags, view->currentColumn()); + + if (!list.isEmpty()) + { + int i = view->property("findit").value<int>(); + if (needle != prev || SearchParameter & lcs_findfirst) + { + if (SearchParameter & lcs_backwards) + i = list.size() - 1; + else + i = 0; + } + else if (SearchParameter & lcs_backwards) + i--; + else + i++; + + if (i >= 0 && i < list.size() && list.at(i)) + { + view->scrollToItem(list.at(i)); + view->setCurrentItem(list.at(i), view->currentColumn()); + view->setProperty("findit", i); + return LISTPLUGIN_OK; + } + } + + QMessageBox::information(widget, "", QString::asprintf(_("\"%s\" not found!"), SearchString)); + return LISTPLUGIN_ERROR; +} + +void DCPCALL ListGetDetectString(char* DetectString, int maxlen) +{ + snprintf(DetectString, maxlen - 1, "SIZE<30000000"); +} + +void DCPCALL ListSetDefaultParams(ListDefaultParamStruct* dps) +{ + QFileInfo defini(QString::fromStdString(dps->DefaultIniName)); + QString cfgpath = defini.absolutePath() + "/j2969719.ini"; + QSettings settings(cfgpath, QSettings::IniFormat); + + if (!settings.contains(PLUGNAME "/resize_columns")) + settings.setValue(PLUGNAME "/resize_columns", g_resize); + else + g_resize = settings.value(PLUGNAME "/resize_columns").toBool(); + + if (!settings.contains(PLUGNAME "/tree_expand")) + settings.setValue(PLUGNAME "/tree_expand", g_expand); + else + g_expand = settings.value(PLUGNAME "/tree_expand").toBool(); + + if (!settings.contains(PLUGNAME "/column_width")) + settings.setValue(PLUGNAME "/column_width", g_width); + else + { + g_width = settings.value(PLUGNAME "/column_width").toInt(); + + if (g_width < 10) + { + g_width = 10; + settings.setValue(PLUGNAME "/column_width", 10); + } + } + + if (!settings.contains(PLUGNAME "/sorting")) + settings.setValue(PLUGNAME "/sorting", g_sorting); + else + g_sorting = settings.value(PLUGNAME "/sorting").toBool(); + + if (!settings.contains(PLUGNAME "/show_filename")) + settings.setValue(PLUGNAME "/show_filename", g_filename); + else + g_filename = settings.value(PLUGNAME "/show_filename").toBool(); + + Dl_info dlinfo; + static char plg_path[PATH_MAX]; + const char* loc_dir = "langs"; + + memset(&dlinfo, 0, sizeof(dlinfo)); + + if (dladdr(plg_path, &dlinfo) != 0) + { + strncpy(plg_path, dlinfo.dli_fname, PATH_MAX); + char *pos = strrchr(plg_path, '/'); + + if (pos) + strcpy(pos + 1, loc_dir); + + setlocale(LC_ALL, ""); + bindtextdomain(GETTEXT_PACKAGE, plg_path); + textdomain(GETTEXT_PACKAGE); + } +} diff --git a/wlx/logview/README.md b/wlx/logview/README.md index 4f1d6ec..5c6415c 100644 --- a/wlx/logview/README.md +++ b/wlx/logview/README.md @@ -11,6 +11,12 @@ A high-performance, Wayland-compatible WLX (Lister) log viewer plugin for Double - **Timestamp Range Filtering**: Automatically detects and parses common timestamp formats (ISO 8601, nginx, syslog). Allows filtering log lines within a specific date/time range. - **Live Tailing (Follow Mode)**: Monitors the file for changes using `QFileSystemWatcher` (inotify-based) and automatically updates and scrolls to new entries. - **Advanced Filtering**: Implements `QSortFilterProxyModel` for combining regex matches and timestamp ranges efficiently. +- **Regex-based Color Highlighting**: + - Allows mapping regular expression patterns to custom foreground and background colors to visually distinguish log levels and components. + - Configurable settings modal with a priority-sorted data grid representing patterns directly in their chosen styles. Supports double-clicking a row to edit. + - Full support for multi-selection actions to delete, move up, or move down multiple rules at once. + - Pre-packaged **Add Default Rules** button to instantly insert standard diagnostics highlights (`TRACE`, `DEBUG`, `INFO`, `WARN`, `ERROR`, `FATAL`) relative to your current selection. + - Persists configurations across sessions by saving the rule list to Double Commander's default INI file in the `[HighlightRules]` section. - **Native Interactions**: Supports standard file manager interactions, including multi-row selection (Ctrl+click, Shift+click) and copying (Ctrl+C, Right-click context menu). - **Wayland Focus Isolation**: Implements a robust 4-layer focus defense architecture to resolve Wayland focus-hijacking bugs typical when embedding Qt components into Lazarus applications: - **Layer 0**: Deferred `show()` execution to prevent the plugin from trapping the host's `MouseRelease` event (fixes the "phantom-drag" issue). diff --git a/wlx/logview/logviewer.png b/wlx/logview/logviewer.png index 83d3ee1..7270c17 100644 Binary files a/wlx/logview/logviewer.png and b/wlx/logview/logviewer.png differ diff --git a/wlx/logview/sample.log b/wlx/logview/sample.log new file mode 100644 index 0000000..dccb49a --- /dev/null +++ b/wlx/logview/sample.log @@ -0,0 +1,42 @@ +2026-05-26 14:15:00.000 [main] INFO com.example.App - Starting Application... +2026-05-26 14:15:00.012 [main] DEBUG com.example.App - Initializing dependency injection framework. +2026-05-26 14:15:00.045 [main] TRACE com.example.App - Scanning package com.example.service +2026-05-26 14:15:00.048 [main] TRACE com.example.App - Found class com.example.service.UserService +2026-05-26 14:15:00.052 [main] TRACE com.example.App - Found class com.example.service.AuthService +2026-05-26 14:15:00.101 [main] DEBUG com.example.App - Configuring database pool connections. +2026-05-26 14:15:00.220 [main] INFO com.example.db.DbPool - Database pool initialized. Max connections: 20 +2026-05-26 14:15:00.225 [main] WARN com.example.db.DbPool - Connection timeout not set. Falling back to default: 30000ms. +2026-05-26 14:15:00.312 [main] INFO com.example.App - Web server started on port 8080. +2026-05-26 14:15:05.110 [http-nio-8080-exec-1] DEBUG com.example.web.UserController - GET /api/users/active +2026-05-26 14:15:05.112 [http-nio-8080-exec-1] TRACE com.example.service.UserService - Fetching active users from database Cache. +2026-05-26 14:15:05.115 [http-nio-8080-exec-1] DEBUG com.example.service.UserService - Cache hit for active users. Returning 3 users. +2026-05-26 14:15:10.420 [http-nio-8080-exec-2] DEBUG com.example.web.AuthController - POST /api/auth/login +2026-05-26 14:15:10.421 [http-nio-8080-exec-2] TRACE com.example.service.AuthService - Authenticating user: admin +2026-05-26 14:15:10.655 [http-nio-8080-exec-2] WARN com.example.service.AuthService - User admin login failed: Invalid credentials. +2026-05-26 14:15:10.658 [http-nio-8080-exec-2] INFO com.example.web.AuthController - Authentication response: 401 Unauthorized +2026-05-26 14:15:15.910 [scheduler-1] INFO com.example.job.CleanupJob - Starting scheduled database cleanup job... +2026-05-26 14:15:15.912 [scheduler-1] TRACE com.example.job.CleanupJob - Fetching expired sessions. +2026-05-26 14:15:16.020 [scheduler-1] DEBUG com.example.job.CleanupJob - Found 14 expired sessions. +2026-05-26 14:15:16.090 [scheduler-1] INFO com.example.job.CleanupJob - Successfully deleted 14 expired sessions from DB. +2026-05-26 14:15:20.100 [http-nio-8080-exec-3] DEBUG com.example.web.PaymentController - POST /api/payment/checkout +2026-05-26 14:15:20.102 [http-nio-8080-exec-3] TRACE com.example.service.PaymentService - Processing transaction for token: tx_987234 +2026-05-26 14:15:20.500 [http-nio-8080-exec-3] ERROR com.example.service.PaymentService - Payment gateway timeout for token tx_987234. +2026-05-26 14:15:20.502 [http-nio-8080-exec-3] WARN com.example.service.PaymentService - Retrying transaction... Attempt 1 of 3 +2026-05-26 14:15:21.010 [http-nio-8080-exec-3] ERROR com.example.service.PaymentService - Payment gateway error on retry 1: Internal Gateway Error. +2026-05-26 14:15:21.012 [http-nio-8080-exec-3] WARN com.example.service.PaymentService - Retrying transaction... Attempt 2 of 3 +2026-05-26 14:15:22.250 [http-nio-8080-exec-3] ERROR com.example.service.PaymentService - Payment gateway error on retry 2: Service Unavailable. +2026-05-26 14:15:22.252 [http-nio-8080-exec-3] WARN com.example.service.PaymentService - Retrying transaction... Attempt 3 of 3 +2026-05-26 14:15:23.500 [http-nio-8080-exec-3] FATAL com.example.service.PaymentService - Checkout failed after 3 retries. Disabling payment module checkout endpoint! +2026-05-26 14:15:23.504 [http-nio-8080-exec-3] ERROR com.example.web.PaymentController - Checkout process halted due to FATAL payment gateway error. +2026-05-26 14:15:23.510 [main] INFO com.example.App - Gracefully shutting down application due to critical failure... +2026-05-26 14:15:23.512 [main] DEBUG com.example.db.DbPool - Closing database connections in pool. +2026-05-26 14:15:23.550 [main] INFO com.example.App - Database connections closed successfully. +2026-05-26 14:15:23.552 [main] INFO com.example.App - Application shut down complete. +This line doesn't match any rule. +This is another line that doesn't match any rule (no log levels here). +Simple separator line: ========================================== +Running system diagnostics... +- CPU load: 12% +- Memory usage: 1.2 GB / 8.0 GB +- Disk space: 45 GB free +All services terminated cleanly. diff --git a/wlx/logview/src/LogModel.cpp b/wlx/logview/src/LogModel.cpp index 8aed3f0..60641d2 100644 --- a/wlx/logview/src/LogModel.cpp +++ b/wlx/logview/src/LogModel.cpp @@ -94,15 +94,45 @@ QVariant LogModel::data(const QModelIndex &index, int role) const { if (role == Qt::DisplayRole) return lineText(row); - // Highlight matched lines with a subtle background - if (role == Qt::BackgroundRole) { - if (row < (int)m_matches.size() && m_matches[row]) + if (role == Qt::BackgroundRole || role == Qt::ForegroundRole) { + // Search match background takes priority + if (role == Qt::BackgroundRole && row < (int)m_matches.size() && m_matches[row]) { return QColor(60, 60, 0); // dark yellow + } + + // Test highlight rules in order + if (m_mappedData && !m_rules.empty()) { + const uint64_t start = m_lineOffsets[row]; + const uint64_t end = m_lineOffsets[row + 1]; + uint64_t len = end - start; + while (len > 0 && (m_mappedData[start + len - 1] == '\n' || + m_mappedData[start + len - 1] == '\r')) + --len; + re2::StringPiece linePiece(m_mappedData + start, len); + + for (const auto &rule : m_rules) { + if (rule.compiledRegex && re2::RE2::PartialMatch(linePiece, *rule.compiledRegex)) { + if (role == Qt::BackgroundRole) { + return rule.backgroundColor; + } else if (role == Qt::ForegroundRole) { + return rule.foregroundColor; + } + } + } + } } return {}; } +void LogModel::setHighlightRules(const std::vector<HighlightRule>& rules) { + m_rules = rules; + if (lineCount() > 0) { + emit dataChanged(index(0), index(lineCount() - 1), {Qt::BackgroundRole, Qt::ForegroundRole}); + } +} + + // ─── File loading ────────────────────────────────────────────────────── void LogModel::loadFile(const QString& filePath) { diff --git a/wlx/logview/src/LogModel.h b/wlx/logview/src/LogModel.h index 6663f81..e76d93b 100644 --- a/wlx/logview/src/LogModel.h +++ b/wlx/logview/src/LogModel.h @@ -4,10 +4,23 @@ #include <QFileSystemWatcher> #include <QDateTime> #include <QString> +#include <QColor> #include <vector> #include <cstdint> #include <thread> #include <atomic> +#include <memory> + +namespace re2 { + class RE2; +} + +struct HighlightRule { + QString pattern; + QColor foregroundColor; + QColor backgroundColor; + std::shared_ptr<re2::RE2> compiledRegex; +}; class LogModel : public QAbstractListModel { Q_OBJECT @@ -18,6 +31,7 @@ class LogModel : public QAbstractListModel { int rowCount(const QModelIndex &parent = QModelIndex()) const override; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; + void loadFile(const QString& filePath); // Search — returns match count @@ -38,6 +52,10 @@ class LogModel : public QAbstractListModel { // Follow / tail void setFollowEnabled(bool enabled); + // Highlighting rules + void setHighlightRules(const std::vector<HighlightRule>& rules); + std::vector<HighlightRule> highlightRules() const { return m_rules; } + // Timestamp parsing for external use (filter proxy) static QDateTime parseTimestampFromLine(const QString &line); @@ -76,4 +94,8 @@ private slots: // File watching QFileSystemWatcher *m_watcher = nullptr; bool m_followEnabled = false; + + // Highlight rules + std::vector<HighlightRule> m_rules; }; + diff --git a/wlx/logview/src/LogViewerWidget.cpp b/wlx/logview/src/LogViewerWidget.cpp index 6b1fc23..1da6dff 100644 --- a/wlx/logview/src/LogViewerWidget.cpp +++ b/wlx/logview/src/LogViewerWidget.cpp @@ -8,9 +8,376 @@ #include <QKeyEvent> #include <QClipboard> #include <QApplication> +#include <QSettings> +#include <QDialog> +#include <QTableWidget> +#include <QHeaderView> +#include <QColorDialog> +#include <QMessageBox> +#include <QLabel> +#include <QDir> +#include <re2/re2.h> + +extern QString g_iniPath; + +class RuleDialog : public QDialog { +public: + RuleDialog(QWidget *parent = nullptr) : QDialog(parent) { + setWindowTitle("Edit Highlight Rule"); + QVBoxLayout *layout = new QVBoxLayout(this); + + QHBoxLayout *patternLayout = new QHBoxLayout(); + patternLayout->addWidget(new QLabel("Regex Pattern:", this)); + m_patternEdit = new QLineEdit(this); + patternLayout->addWidget(m_patternEdit); + layout->addLayout(patternLayout); + + QHBoxLayout *colorLayout = new QHBoxLayout(); + + QVBoxLayout *fgLayout = new QVBoxLayout(); + fgLayout->addWidget(new QLabel("Foreground", this)); + m_fgButton = new QPushButton(this); + fgLayout->addWidget(m_fgButton); + + QVBoxLayout *bgLayout = new QVBoxLayout(); + bgLayout->addWidget(new QLabel("Background", this)); + m_bgButton = new QPushButton(this); + bgLayout->addWidget(m_bgButton); + + colorLayout->addLayout(fgLayout); + colorLayout->addLayout(bgLayout); + layout->addLayout(colorLayout); + + connect(m_fgButton, &QPushButton::clicked, this, [this]() { + QColor col = QColorDialog::getColor(m_fgColor, this, "Choose Foreground Color"); + if (col.isValid()) { + m_fgColor = col; + updateButtonColors(); + } + }); + + connect(m_bgButton, &QPushButton::clicked, this, [this]() { + QColor col = QColorDialog::getColor(m_bgColor, this, "Choose Background Color"); + if (col.isValid()) { + m_bgColor = col; + updateButtonColors(); + } + }); + + QHBoxLayout *buttonsLayout = new QHBoxLayout(); + QPushButton *btnOk = new QPushButton("OK", this); + QPushButton *btnCancel = new QPushButton("Cancel", this); + buttonsLayout->addWidget(btnOk); + buttonsLayout->addWidget(btnCancel); + layout->addLayout(buttonsLayout); + + connect(btnOk, &QPushButton::clicked, this, &QDialog::accept); + connect(btnCancel, &QPushButton::clicked, this, &QDialog::reject); + + m_fgColor = Qt::white; + m_bgColor = Qt::black; + updateButtonColors(); + } + + void setRule(const QString &pattern, QColor fg, QColor bg) { + m_patternEdit->setText(pattern); + m_fgColor = fg; + m_bgColor = bg; + updateButtonColors(); + } + + QString pattern() const { return m_patternEdit->text().trimmed(); } + QColor foregroundColor() const { return m_fgColor; } + QColor backgroundColor() const { return m_bgColor; } + +private: + QLineEdit *m_patternEdit; + QPushButton *m_fgButton; + QPushButton *m_bgButton; + QColor m_fgColor; + QColor m_bgColor; + + void updateButtonColors() { + m_fgButton->setStyleSheet(QString("background-color: %1; color: %2; border: 1px solid gray;") + .arg(m_fgColor.name()) + .arg(m_fgColor.lightness() > 128 ? "black" : "white")); + m_fgButton->setText(m_fgColor.name()); + + m_bgButton->setStyleSheet(QString("background-color: %1; color: %2; border: 1px solid gray;") + .arg(m_bgColor.name()) + .arg(m_bgColor.lightness() > 128 ? "black" : "white")); + m_bgButton->setText(m_bgColor.name()); + } +}; + +class SettingsDialog : public QDialog { +public: + SettingsDialog(const std::vector<HighlightRule> &rules, QWidget *parent = nullptr) + : QDialog(parent), m_rules(rules) { + setWindowTitle("Highlighting Rules"); + resize(600, 400); + + QHBoxLayout *mainLayout = new QHBoxLayout(); + + // Rules Table + m_table = new QTableWidget(this); + m_table->setColumnCount(2); + m_table->setHorizontalHeaderLabels({"Priority", "Regex Pattern"}); + m_table->horizontalHeader()->setSectionResizeMode(0, QHeaderView::ResizeToContents); + m_table->horizontalHeader()->setSectionResizeMode(1, QHeaderView::Stretch); + m_table->setSelectionBehavior(QAbstractItemView::SelectRows); + m_table->setSelectionMode(QAbstractItemView::ExtendedSelection); + mainLayout->addWidget(m_table); + + // Control Buttons + QVBoxLayout *btnLayout = new QVBoxLayout(); + QPushButton *btnAdd = new QPushButton("Add", this); + QPushButton *btnEdit = new QPushButton("Edit", this); + QPushButton *btnDelete = new QPushButton("Delete", this); + QPushButton *btnDefault = new QPushButton("Add Default Rules", this); + QPushButton *btnUp = new QPushButton("Move Up", this); + QPushButton *btnDown = new QPushButton("Move Down", this); + btnLayout->addWidget(btnAdd); + btnLayout->addWidget(btnEdit); + btnLayout->addWidget(btnDelete); + btnLayout->addWidget(btnDefault); + btnLayout->addSpacing(20); + btnLayout->addWidget(btnUp); + btnLayout->addWidget(btnDown); + btnLayout->addStretch(); + mainLayout->addLayout(btnLayout); + + QHBoxLayout *okCancelLayout = new QHBoxLayout(); + QPushButton *btnOk = new QPushButton("OK", this); + QPushButton *btnCancel = new QPushButton("Cancel", this); + okCancelLayout->addWidget(btnOk); + okCancelLayout->addWidget(btnCancel); + + QVBoxLayout *outerLayout = new QVBoxLayout(this); + outerLayout->addLayout(mainLayout); + outerLayout->addLayout(okCancelLayout); + + connect(btnAdd, &QPushButton::clicked, this, &SettingsDialog::onAdd); + connect(btnEdit, &QPushButton::clicked, this, &SettingsDialog::onEdit); + connect(btnDelete, &QPushButton::clicked, this, &SettingsDialog::onDelete); + connect(btnDefault, &QPushButton::clicked, this, &SettingsDialog::onAddDefaults); + connect(btnUp, &QPushButton::clicked, this, &SettingsDialog::onMoveUp); + connect(btnDown, &QPushButton::clicked, this, &SettingsDialog::onMoveDown); + connect(btnOk, &QPushButton::clicked, this, &QDialog::accept); + connect(btnCancel, &QPushButton::clicked, this, &QDialog::reject); + connect(m_table, &QTableWidget::cellDoubleClicked, this, &SettingsDialog::onEdit); + + populateTable(); + } + + std::vector<HighlightRule> rules() const { return m_rules; } + +private: + QTableWidget *m_table; + std::vector<HighlightRule> m_rules; + + void populateTable() { + m_table->setRowCount(0); + for (size_t i = 0; i < m_rules.size(); ++i) { + int row = m_table->rowCount(); + m_table->insertRow(row); + + // Priority + QTableWidgetItem *itemPriority = new QTableWidgetItem(QString::number(i + 1)); + itemPriority->setFlags(itemPriority->flags() & ~Qt::ItemIsEditable); + m_table->setItem(row, 0, itemPriority); + + // Pattern + QTableWidgetItem *itemPattern = new QTableWidgetItem(m_rules[i].pattern); + itemPattern->setBackground(m_rules[i].backgroundColor); + itemPattern->setForeground(m_rules[i].foregroundColor); + itemPattern->setFlags(itemPattern->flags() & ~Qt::ItemIsEditable); + m_table->setItem(row, 1, itemPattern); + } + } + + void onAdd() { + RuleDialog dlg(this); + if (dlg.exec() == QDialog::Accepted) { + QString pat = dlg.pattern(); + if (pat.isEmpty()) return; + // Enforce uniqueness + for (const auto &r : m_rules) { + if (r.pattern == pat) { + QMessageBox::warning(this, "Duplicate Rule", "A rule with this regex pattern already exists."); + return; + } + } + auto re = std::make_shared<re2::RE2>(pat.toStdString()); + if (!re->ok()) { + QMessageBox::warning(this, "Invalid Regex", "The regex pattern is invalid."); + return; + } + HighlightRule r; + r.pattern = pat; + r.foregroundColor = dlg.foregroundColor(); + r.backgroundColor = dlg.backgroundColor(); + r.compiledRegex = re; + m_rules.push_back(r); + populateTable(); + } + } + + void onAddDefaults() { + int insertIdx = 0; + QList<QTableWidgetItem*> selectedItems = m_table->selectedItems(); + if (!selectedItems.isEmpty()) { + int minRow = m_rules.size(); + for (auto *item : selectedItems) { + if (item->row() < minRow) { + minRow = item->row(); + } + } + insertIdx = minRow; + } + + struct DefaultRule { + QString pat; + QString fg; + QString bg; + } defaults[] = { + { ".*TRACE.*", "#9CA3AF", "#000000" }, + { ".*DEBUG.*", "#60A5FA", "#000000" }, + { ".*INFO.*", "#4ADE80", "#000000" }, + { ".*WARN.*", "#FBBF24", "#000000" }, + { ".*ERROR.*", "#F87171", "#000000" }, + { ".*FATAL.*", "#C084FC", "#000000" } + }; + for (int i = 5; i >= 0; --i) { + const auto &d = defaults[i]; + bool exists = false; + for (const auto &r : m_rules) { + if (r.pattern == d.pat) { + exists = true; + break; + } + } + if (exists) continue; + + HighlightRule r; + r.pattern = d.pat; + r.foregroundColor = QColor(d.fg); + r.backgroundColor = QColor(d.bg); + auto re = std::make_shared<re2::RE2>(d.pat.toStdString()); + if (re->ok()) { + r.compiledRegex = re; + m_rules.insert(m_rules.begin() + insertIdx, r); + } + } + populateTable(); + } + + void onEdit() { + int row = m_table->currentRow(); + if (row < 0 || row >= static_cast<int>(m_rules.size())) return; + + RuleDialog dlg(this); + dlg.setRule(m_rules[row].pattern, m_rules[row].foregroundColor, m_rules[row].backgroundColor); + if (dlg.exec() == QDialog::Accepted) { + QString pat = dlg.pattern(); + if (pat.isEmpty()) return; + // Enforce uniqueness + for (int i = 0; i < static_cast<int>(m_rules.size()); ++i) { + if (i != row && m_rules[i].pattern == pat) { + QMessageBox::warning(this, "Duplicate Rule", "A rule with this regex pattern already exists."); + return; + } + } + auto re = std::make_shared<re2::RE2>(pat.toStdString()); + if (!re->ok()) { + QMessageBox::warning(this, "Invalid Regex", "The regex pattern is invalid."); + return; + } + m_rules[row].pattern = pat; + m_rules[row].foregroundColor = dlg.foregroundColor(); + m_rules[row].backgroundColor = dlg.backgroundColor(); + m_rules[row].compiledRegex = re; + populateTable(); + } + } + + void onDelete() { + QList<QTableWidgetItem*> selectedItems = m_table->selectedItems(); + if (selectedItems.isEmpty()) return; + + std::vector<int> rows; + for (auto *item : selectedItems) { + int r = item->row(); + if (std::find(rows.begin(), rows.end(), r) == rows.end()) { + rows.push_back(r); + } + } + std::sort(rows.begin(), rows.end(), std::greater<int>()); + for (int r : rows) { + m_rules.erase(m_rules.begin() + r); + } + populateTable(); + } + + void onMoveUp() { + QList<QTableWidgetItem*> selectedItems = m_table->selectedItems(); + if (selectedItems.isEmpty()) return; + + std::vector<int> selectedRows; + for (auto *item : selectedItems) { + int r = item->row(); + if (std::find(selectedRows.begin(), selectedRows.end(), r) == selectedRows.end()) { + selectedRows.push_back(r); + } + } + std::sort(selectedRows.begin(), selectedRows.end()); + + if (selectedRows.empty() || selectedRows.front() == 0) return; + + for (int r : selectedRows) { + std::swap(m_rules[r], m_rules[r - 1]); + } + + populateTable(); + + m_table->clearSelection(); + for (int r : selectedRows) { + m_table->selectionModel()->select(m_table->model()->index(r - 1, 0), QItemSelectionModel::Select | QItemSelectionModel::Rows); + } + } + + void onMoveDown() { + QList<QTableWidgetItem*> selectedItems = m_table->selectedItems(); + if (selectedItems.isEmpty()) return; + + std::vector<int> selectedRows; + for (auto *item : selectedItems) { + int r = item->row(); + if (std::find(selectedRows.begin(), selectedRows.end(), r) == selectedRows.end()) { + selectedRows.push_back(r); + } + } + std::sort(selectedRows.begin(), selectedRows.end()); + + if (selectedRows.empty() || selectedRows.back() == static_cast<int>(m_rules.size()) - 1) return; + + for (int i = static_cast<int>(selectedRows.size()) - 1; i >= 0; --i) { + int r = selectedRows[i]; + std::swap(m_rules[r], m_rules[r + 1]); + } + + populateTable(); + + m_table->clearSelection(); + for (int r : selectedRows) { + m_table->selectionModel()->select(m_table->model()->index(r + 1, 0), QItemSelectionModel::Select | QItemSelectionModel::Rows); + } + } +}; // ─── LogFilterProxy ──────────────────────────────────────────────────── + LogFilterProxy::LogFilterProxy(QObject *parent) : QSortFilterProxyModel(parent) {} @@ -102,8 +469,10 @@ LogViewerWidget::LogViewerWidget(QWidget *parent) chkFollow = new QCheckBox("Follow", this); chkFilterMode = new QCheckBox("Filter", this); + btnSettings = new QPushButton("⚙ Settings", this); headerLayout->addWidget(chkFollow); headerLayout->addWidget(chkFilterMode); + headerLayout->addWidget(btnSettings); mainLayout->addLayout(headerLayout); @@ -160,6 +529,8 @@ LogViewerWidget::LogViewerWidget(QWidget *parent) this, &LogViewerWidget::onTimeRangeChanged); connect(timeEnd, &QDateTimeEdit::dateTimeChanged, this, &LogViewerWidget::onTimeRangeChanged); + connect(btnSettings, &QPushButton::clicked, + this, &LogViewerWidget::onSettingsClicked); connect(model, &LogModel::searchFinished, this, &LogViewerWidget::onSearchFinished); @@ -167,6 +538,10 @@ LogViewerWidget::LogViewerWidget(QWidget *parent) this, &LogViewerWidget::onTimestampsDetected); connect(model, &LogModel::tailUpdated, this, &LogViewerWidget::onTailUpdated); + + // Load and apply highlight rules + std::vector<HighlightRule> initialRules = loadHighlightRules(); + model->setHighlightRules(initialRules); } LogViewerWidget::~LogViewerWidget() { @@ -450,3 +825,102 @@ void LogViewerWidget::copySelectedLines() { QApplication::clipboard()->setText(lines.join('\n')); statusLabel->setText(QString("Copied %1 line(s)").arg(lines.size())); } + +void LogViewerWidget::onSettingsClicked() { + SettingsDialog dlg(model->highlightRules(), this); + if (dlg.exec() == QDialog::Accepted) { + auto newRules = dlg.rules(); + saveHighlightRules(newRules); + model->setHighlightRules(newRules); + } +} + +std::vector<HighlightRule> LogViewerWidget::loadHighlightRules() { + std::vector<HighlightRule> rules; + QString path = g_iniPath; + if (path.isEmpty()) { + path = QDir::homePath() + "/.config/doublecmd/logviewer.ini"; + } + + QSettings settings(path, QSettings::IniFormat); + bool sectionExists = settings.contains("HighlightRules/Count"); + + if (!sectionExists) { + struct DefaultRule { + QString pat; + QString fg; + QString bg; + } defaults[] = { + { ".*TRACE.*", "#9CA3AF", "#000000" }, + { ".*DEBUG.*", "#60A5FA", "#000000" }, + { ".*INFO.*", "#4ADE80", "#000000" }, + { ".*WARN.*", "#FBBF24", "#000000" }, + { ".*ERROR.*", "#F87171", "#000000" }, + { ".*FATAL.*", "#C084FC", "#000000" } + }; + for (const auto &d : defaults) { + HighlightRule rule; + rule.pattern = d.pat; + rule.foregroundColor = QColor(d.fg); + rule.backgroundColor = QColor(d.bg); + auto re = std::make_shared<re2::RE2>(d.pat.toStdString()); + if (re->ok()) { + rule.compiledRegex = re; + rules.push_back(rule); + } + } + // Save these defaults initially so the section gets created + saveHighlightRules(rules); + } else { + settings.beginGroup("HighlightRules"); + int count = settings.value("Count", 0).toInt(); + for (int i = 0; i < count; ++i) { + QString regexKey = QString("Rule%1_Regex").arg(i); + QString fgKey = QString("Rule%1_FG").arg(i); + QString bgKey = QString("Rule%1_BG").arg(i); + + QString regexStr = settings.value(regexKey).toString(); + if (regexStr.isEmpty()) continue; + + QString fgStr = settings.value(fgKey).toString(); + QString bgStr = settings.value(bgKey).toString(); + + HighlightRule rule; + rule.pattern = regexStr; + rule.foregroundColor = fgStr.isEmpty() ? QColor() : QColor(fgStr); + rule.backgroundColor = bgStr.isEmpty() ? QColor() : QColor(bgStr); + + auto re = std::make_shared<re2::RE2>(regexStr.toStdString()); + if (re->ok()) { + rule.compiledRegex = re; + rules.push_back(rule); + } else { + qWarning() << "Invalid regex from INI:" << regexStr; + } + } + settings.endGroup(); + } + + return rules; +} + +void LogViewerWidget::saveHighlightRules(const std::vector<HighlightRule>& rules) { + QString path = g_iniPath; + if (path.isEmpty()) { + path = QDir::homePath() + "/.config/doublecmd/logviewer.ini"; + } + + QSettings settings(path, QSettings::IniFormat); + settings.beginGroup("HighlightRules"); + settings.remove(""); // Clean up existing keys to prevent orphaned entries + + settings.setValue("Count", static_cast<int>(rules.size())); + for (size_t i = 0; i < rules.size(); ++i) { + settings.setValue(QString("Rule%1_Regex").arg(i), rules[i].pattern); + settings.setValue(QString("Rule%1_FG").arg(i), rules[i].foregroundColor.name()); + settings.setValue(QString("Rule%1_BG").arg(i), rules[i].backgroundColor.name()); + } + settings.endGroup(); + settings.sync(); +} + diff --git a/wlx/logview/src/LogViewerWidget.h b/wlx/logview/src/LogViewerWidget.h index 8aaa27d..86c493a 100644 --- a/wlx/logview/src/LogViewerWidget.h +++ b/wlx/logview/src/LogViewerWidget.h @@ -14,7 +14,7 @@ #include <QAction> #include <QPointer> -class LogModel; +#include "LogModel.h" // Proxy that filters rows by regex match and/or timestamp range class LogFilterProxy : public QSortFilterProxyModel { @@ -59,6 +59,9 @@ private slots: void onTailUpdated(); void onTimeRangeChanged(); void copySelectedLines(); + void onSettingsClicked(); + std::vector<HighlightRule> loadHighlightRules(); + void saveHighlightRules(const std::vector<HighlightRule>& rules); private: void scrollToSourceRow(int sourceRow); @@ -71,6 +74,7 @@ private slots: QLineEdit *searchEdit; QPushButton *btnSearchStart; QPushButton *btnSearchStop; + QPushButton *btnSettings; QDateTimeEdit *timeStart; QDateTimeEdit *timeEnd; QCheckBox *chkFollow; @@ -78,6 +82,7 @@ private slots: QProgressBar *progressBar; QLabel *statusLabel; + LogModel *model; LogFilterProxy *filterProxy; QString currentFile; diff --git a/wlx/logview/src/wlx_plugin.cpp b/wlx/logview/src/wlx_plugin.cpp index f4d26e2..8edbec1 100644 --- a/wlx/logview/src/wlx_plugin.cpp +++ b/wlx/logview/src/wlx_plugin.cpp @@ -4,13 +4,23 @@ #include <QTimer> #include <exception> +#include <QString> #include "LogViewerWidget.h" +QString g_iniPath; + // Define a visibility macro for exported functions #define EXPORT __attribute__((visibility("default"))) extern "C" { +EXPORT void DCPCALL ListSetDefaultParams(ListDefaultParamStruct* dps) { + if (dps) { + g_iniPath = QString::fromUtf8(dps->DefaultIniName); + } +} + + EXPORT HWND DCPCALL ListLoad(HWND ParentWin, char* FileToLoad, int ShowFlags) { try { qDebug() << "ListLoad called for file:" << FileToLoad; diff --git a/wlx/structview/.gitignore b/wlx/structview/.gitignore new file mode 100644 index 0000000..567609b --- /dev/null +++ b/wlx/structview/.gitignore @@ -0,0 +1 @@ +build/ diff --git a/wlx/structview/CMakeLists.txt b/wlx/structview/CMakeLists.txt new file mode 100644 index 0000000..cddaabd --- /dev/null +++ b/wlx/structview/CMakeLists.txt @@ -0,0 +1,72 @@ +cmake_minimum_required(VERSION 3.20) +project(structview_qt6 CXX) + +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_AUTOMOC ON) + +# Allow older cmake_minimum_required in FetchContent dependencies +set(CMAKE_POLICY_VERSION_MINIMUM 3.5 CACHE STRING "" FORCE) + +find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets Xml PrintSupport) +# Ensure the platform static library is built with -fPIC +# (required because we link it into a shared .wlx library) +set(CMAKE_POSITION_INDEPENDENT_CODE ON) + +include(FetchContent) + +# --------------------------------------------------------------------------- +# yaml-cpp — YAML 1.2 parser (using system package) +# --------------------------------------------------------------------------- +find_package(yaml-cpp REQUIRED) + +# --------------------------------------------------------------------------- +# toml++ — header-only TOML parser (v3.4.0) +# --------------------------------------------------------------------------- +FetchContent_Declare(tomlplusplus + GIT_REPOSITORY https://github.com/marzer/tomlplusplus.git + GIT_TAG v3.4.0 + GIT_SHALLOW TRUE +) +FetchContent_MakeAvailable(tomlplusplus) + +# Pull in the platform library (builds libwlxbase_wlqt.a) +add_subdirectory( + ${CMAKE_CURRENT_SOURCE_DIR}/../wlxbase_wlqt + ${CMAKE_CURRENT_BINARY_DIR}/wlxbase_wlqt +) + +# NOTE: Headers with Q_OBJECT must be listed explicitly so AUTOMOC processes them. +add_library(structview_qt6 SHARED + include/StructViewWidget.h + include/TextFormatEngine.h + src/wlx_entry.cpp + src/StructViewWidget.cpp + src/JsonEngine.cpp + src/XmlEngine.cpp + src/IniEngine.cpp + src/CborEngine.cpp + src/YamlEngine.cpp + src/TomlEngine.cpp +) + +set_target_properties(structview_qt6 PROPERTIES + PREFIX "" + SUFFIX ".wlx" +) + +target_include_directories(structview_qt6 PRIVATE + include + ${CMAKE_CURRENT_SOURCE_DIR}/../../sdk +) + +target_link_libraries(structview_qt6 PRIVATE + wlxbase_wlqt + Qt6::Widgets + Qt6::Gui + Qt6::Core + Qt6::Xml + Qt6::PrintSupport + yaml-cpp + tomlplusplus::tomlplusplus +) diff --git a/wlx/structview/README.md b/wlx/structview/README.md new file mode 100644 index 0000000..9e76f94 --- /dev/null +++ b/wlx/structview/README.md @@ -0,0 +1,81 @@ +# structview — Unified Structured Text Plugin + +A Qt6 WLX plugin for [Double Commander](https://doublecmd.github.io/) that views and edits structured text files: **JSON**, **XML**, and **INI**. + +Built on the [`wayland_qt_base`](../../plugin-platform/wlx/wayland_qt_base/) platform library. + +## Features + +- **JSON**: Flattens top-level arrays of objects into a grid. Columns = union of all keys. Nested values shown as compact JSON. Full roundtrip serialization preserving types. +- **XML**: Auto-detects repeating child elements as rows. Attributes shown as `@attr` columns. Non-tabular XML falls back to Name/Value layout. +- **INI**: Section navigation list on the left, 2-column Key/Value grid on the right. Sections switch without losing edits. +- **Find & Replace** with scope filtering (All Cells, Current Column, Current Row) +- **Full undo/redo** (Ctrl+Z / Ctrl+Shift+Z / Ctrl+Y) via `GridMode::MemoryDocument` +- **Save** (Ctrl+S) writes back to the original file +- **Word wrap** and **grid lines** toggles +- **Encoding detection** via enca — auto-converts non-UTF-8 files + +## Architecture + +``` +structview_qt6.wlx (shared library) + ├── wlx_entry.cpp → WLX C interface (ListLoad, etc.) + ├── StructViewWidget → Main widget assembly + ├── TextFormatEngine → Abstract parser base + factory + │ ├── JsonEngine → QJsonDocument + │ ├── XmlEngine → QDomDocument + │ └── IniEngine → QSettings (section-navigated) + └── wayland_qt_base (static library via submodule) + ├── FocusManager + ├── EditableGridWidget (GridMode::MemoryDocument) + ├── PluginToolBar + ├── ScopedFindReplacePanel + └── EncodingUtils +``` + +### Adding a New Format + +1. Create `src/NewFormatEngine.cpp` with a class inheriting `TextFormatEngine` +2. Implement `loadInto()`, `serialize()`, `formatName()` +3. Add a factory function `createNewFormatEngine()` and wire it in the factory switch in `IniEngine.cpp` +4. Add the source file to `CMakeLists.txt` + +## Building + +```bash +cd wlx/structview +mkdir build && cd build +cmake .. +make -j$(nproc) +``` + +**Requirements:** +- Qt6 (Core, Gui, Widgets, Xml) +- CMake ≥ 3.20 +- The `plugin-platform` submodule (auto-fetched via `git submodule update --init`) + +**Output:** `structview_qt6.wlx` + +## Installation + +Copy `structview_qt6.wlx` to your Double Commander plugins directory and configure the detect string: + +``` +EXT="JSON" | EXT="XML" | EXT="INI" +``` + +## Keyboard Shortcuts + +| Shortcut | Action | +|----------|--------| +| Ctrl+S | Save file | +| Ctrl+Z | Undo | +| Ctrl+Shift+Z / Ctrl+Y | Redo | +| Ctrl+F | Toggle Find/Replace panel | +| Ctrl+C | Copy selection | +| Ctrl+V | Paste | + +## Future + +- **CBOR** engine (stubbed — architecture supports drop-in addition) +- Additional structured text formats diff --git a/wlx/structview/include/StructViewWidget.h b/wlx/structview/include/StructViewWidget.h new file mode 100644 index 0000000..25463a5 --- /dev/null +++ b/wlx/structview/include/StructViewWidget.h @@ -0,0 +1,98 @@ +#pragma once + +#include <QWidget> +#include <QTreeView> +#include <QTableView> +#include <QTabWidget> +#include <QPlainTextEdit> +#include <QStandardItemModel> +#include <QSortFilterProxyModel> +#include <memory> + +#include "TextFormatEngine.h" + +namespace QtWlPlugin { +class FocusManager; +class PluginToolBar; +class EditableGridWidget; +class ScopedFindReplacePanel; +class FilterableHeaderView; +class PluginStatusBar; +class PluginSplitView; +class SequentialRowProxyModel; +} +class QUndoStack; + +/// Main plugin widget for structured text file viewing/editing. +/// +/// Layout: +/// ┌────────────────────────────────────────────┐ +/// │ PluginToolBar │ +/// ├────────────┬───────────────────────────────┤ +/// │ QTreeView │ QTabWidget (Grid | Text) │ +/// │ (document │ ┌ FilterableHeaderView │ +/// │ tree) │ ├ QTableView (grid) │ +/// │ │ │ │ +/// ├────────────┴──┴────────────────────────────┤ +/// │ PluginStatusBar │ +/// └────────────────────────────────────────────┘ +class StructViewWidget : public QWidget { + Q_OBJECT +public: + explicit StructViewWidget(QWidget *parent = nullptr); + ~StructViewWidget() override; + + bool loadFile(const QString &filepath); + bool saveFile(); + bool saveFileAs(const QString &path); + + // WLX bridge accessors + QtWlPlugin::FocusManager *focusManager() const; + QtWlPlugin::EditableGridWidget *grid() const; + QString getSelectionAsText(char sep = '\t'); + +private slots: + void onSave(); + void onSaveAs(); + void onReload(); + void onPrint(); + void onOpenExternally(); + void onFind(bool forward); + void onTreeNodeSelected(const QModelIndex ¤t, const QModelIndex &previous); + +private: + void setupUi(); + void setupToolbar(); + void setupFindReplace(); + void populateTree(); + void populateTreeNode(QStandardItem *parentItem, DocumentNode *node); + void showNodeData(DocumentNode *node); + void updateStatusBar(); + void updateTextTab(); + void syncGridToNode(); + + QString m_filepath; + std::unique_ptr<TextFormatEngine> m_engine; + QtWlPlugin::FocusManager *m_fm; + QtWlPlugin::PluginToolBar *m_toolbar; + QtWlPlugin::ScopedFindReplacePanel *m_findReplace; + QtWlPlugin::PluginStatusBar *m_statusBar; + QAction *m_actShowText = nullptr; + + // Left panel: document tree + QtWlPlugin::PluginSplitView *m_splitView; + QTreeView *m_treeView; + QStandardItemModel *m_treeModel; + + // Right panel: Grid + Text tabs + QTabWidget *m_tabWidget; + QtWlPlugin::EditableGridWidget *m_grid; + QTableView *m_gridView; + QStandardItemModel *m_gridModel; + QtWlPlugin::SequentialRowProxyModel *m_filterProxy; + QtWlPlugin::FilterableHeaderView *m_filterHeader; + QPlainTextEdit *m_textView; + + DocumentNode *m_currentNode = nullptr; + QUndoStack *m_undoStack = nullptr; +}; diff --git a/wlx/structview/include/TextFormatEngine.h b/wlx/structview/include/TextFormatEngine.h new file mode 100644 index 0000000..e09d8f4 --- /dev/null +++ b/wlx/structview/include/TextFormatEngine.h @@ -0,0 +1,100 @@ +#pragma once + +#include <QString> +#include <QByteArray> +#include <QVariant> +#include <QVector> +#include <QStringList> +#include <QList> +#include <memory> + +/// A node in the document tree. +/// +/// Each engine builds a tree of DocumentNode objects representing the +/// hierarchical structure of the file. The StructViewWidget displays +/// this tree in a QTreeView (left panel) and shows the selected node's +/// grid data in a QTableView (right panel). +/// +/// Grid data (columnNames + rows) represents this node's immediate children +/// that are displayable as a table. Container children become tree nodes +/// instead of grid rows. +class DocumentNode { +public: + explicit DocumentNode(const QString &name, DocumentNode *parent = nullptr) + : name(name), parent(parent) {} + + ~DocumentNode() { qDeleteAll(children); } + + QString name; ///< Display name in tree + DocumentNode *parent = nullptr; + QList<DocumentNode*> children; + + // Grid data for this node + QStringList columnNames; ///< Column headers + QVector<QVector<QVariant>> rows; ///< Row data + + bool editable = true; ///< Whether grid data can be edited + + /// Add a child node and return pointer to it. + DocumentNode *addChild(const QString &childName) { + auto *child = new DocumentNode(childName, this); + children.append(child); + return child; + } + + /// Remove and delete a child by index. + void removeChild(int index) { + if (index >= 0 && index < children.size()) { + delete children.takeAt(index); + } + } + + /// Position in parent's children list, or -1 if root. + int childIndex() const { + if (!parent) return -1; + return parent->children.indexOf(const_cast<DocumentNode*>(this)); + } + + /// True if node has no children and no grid data. + bool isLeaf() const { + return children.isEmpty() && rows.isEmpty(); + } + + /// True if node has child nodes (not just grid rows). + bool isContainer() const { + return !children.isEmpty(); + } +}; + +/// Abstract base class for structured text format engines. +/// +/// Each engine: +/// 1. Parses raw file bytes into a DocumentNode tree +/// 2. Provides raw text for the read-only Text tab +/// 3. Serializes the tree back to bytes for saving +/// +/// The factory method createForFile() inspects the file extension and +/// returns the appropriate engine. +class TextFormatEngine { +public: + virtual ~TextFormatEngine() = default; + + /// Parse raw bytes and build the document tree. + virtual bool parse(const QByteArray &data) = 0; + + /// Root of the parsed document tree. + virtual DocumentNode *rootNode() const = 0; + + /// Serialize the entire tree back to bytes for saving. + /// Must reconstruct from tree structure + any grid edits. + virtual QByteArray serialize() const = 0; + + /// Pretty-printed raw text for the read-only Text tab. + virtual QString rawText() const = 0; + + /// Human-readable format name (e.g. "JSON", "XML"). + virtual QString formatName() const = 0; + + /// Factory: detect format from file extension and return the right engine. + static std::unique_ptr<TextFormatEngine> createForFile(const QString &filepath); +}; diff --git a/wlx/structview/src/CborEngine.cpp b/wlx/structview/src/CborEngine.cpp new file mode 100644 index 0000000..fee8a73 --- /dev/null +++ b/wlx/structview/src/CborEngine.cpp @@ -0,0 +1,79 @@ +#include "TextFormatEngine.h" + +#include <QCborValue> +#include <QCborMap> +#include <QCborArray> +#include <QJsonDocument> +#include <QJsonObject> +#include <QJsonArray> +#include <QJsonValue> + +// Forward declare factory +std::unique_ptr<TextFormatEngine> createJsonEngine(); + +/// CBOR engine: binary JSON format. +/// +/// Converts CBOR → JSON → delegates to JsonEngine's tree builder. +/// Serializes back via JSON → CBOR. +class CborEngine : public TextFormatEngine { +public: + bool parse(const QByteArray &data) override; + DocumentNode *rootNode() const override { return m_jsonEngine ? m_jsonEngine->rootNode() : nullptr; } + QByteArray serialize() const override; + QString rawText() const override { return m_rawText; } + QString formatName() const override { return QStringLiteral("CBOR"); } + +private: + std::unique_ptr<TextFormatEngine> m_jsonEngine; + QString m_rawText; +}; + +bool CborEngine::parse(const QByteArray &data) +{ + QCborParserError err; + QCborValue cbor = QCborValue::fromCbor(data, &err); + if (err.error != QCborError::NoError) + return false; + + // Convert to JSON for tree building and text display + QJsonValue jsonVal = cbor.toJsonValue(); + QJsonDocument doc; + if (jsonVal.isObject()) + doc = QJsonDocument(jsonVal.toObject()); + else if (jsonVal.isArray()) + doc = QJsonDocument(jsonVal.toArray()); + else + return false; + + m_rawText = QString::fromUtf8(doc.toJson(QJsonDocument::Indented)); + + // Delegate to JsonEngine: parse the JSON bytes + m_jsonEngine = createJsonEngine(); + QByteArray jsonBytes = doc.toJson(QJsonDocument::Compact); + return m_jsonEngine->parse(jsonBytes); +} + +QByteArray CborEngine::serialize() const +{ + if (!m_jsonEngine) return {}; + + // Get JSON bytes from the JSON engine + QByteArray jsonBytes = m_jsonEngine->serialize(); + + // Convert JSON → CBOR + QJsonDocument doc = QJsonDocument::fromJson(jsonBytes); + QCborValue cbor; + if (doc.isObject()) + cbor = QCborValue::fromJsonValue(QJsonValue(doc.object())); + else if (doc.isArray()) + cbor = QCborValue::fromJsonValue(QJsonValue(doc.array())); + else + return {}; + + return cbor.toCbor(); +} + +std::unique_ptr<TextFormatEngine> createCborEngine() +{ + return std::make_unique<CborEngine>(); +} diff --git a/wlx/structview/src/IniEngine.cpp b/wlx/structview/src/IniEngine.cpp new file mode 100644 index 0000000..e44b440 --- /dev/null +++ b/wlx/structview/src/IniEngine.cpp @@ -0,0 +1,124 @@ +#include "TextFormatEngine.h" + +#include <QSettings> +#include <QTemporaryFile> +#include <QFileInfo> + +/// INI engine: sections as tree nodes, keys as 2-column grid. +class IniEngine : public TextFormatEngine { +public: + bool parse(const QByteArray &data) override; + DocumentNode *rootNode() const override { return m_root.get(); } + QByteArray serialize() const override; + QString rawText() const override { return m_rawText; } + QString formatName() const override { return QStringLiteral("INI"); } + +private: + std::unique_ptr<DocumentNode> m_root; + QString m_rawText; + QString m_filepath; +}; + +bool IniEngine::parse(const QByteArray &data) +{ + m_rawText = QString::fromUtf8(data); + + // Write to temp file for QSettings to parse + QTemporaryFile tmp; + tmp.setAutoRemove(true); + if (!tmp.open()) return false; + tmp.write(data); + tmp.flush(); + + QSettings ini(tmp.fileName(), QSettings::IniFormat); + if (ini.status() != QSettings::NoError) + return false; + + m_root = std::make_unique<DocumentNode>(QStringLiteral("root")); + + // Get all groups (sections) + QStringList groups = ini.childGroups(); + + // General section (keys not in any group) + QStringList generalKeys = ini.childKeys(); + if (!generalKeys.isEmpty()) { + auto *general = m_root->addChild(QStringLiteral("General")); + general->columnNames = {QStringLiteral("Key"), QStringLiteral("Value")}; + for (const auto &key : generalKeys) { + general->rows.append({QVariant(key), ini.value(key)}); + } + } + + // Named sections + for (const auto &group : groups) { + auto *section = m_root->addChild(group); + section->columnNames = {QStringLiteral("Key"), QStringLiteral("Value")}; + + ini.beginGroup(group); + QStringList keys = ini.childKeys(); + for (const auto &key : keys) { + section->rows.append({QVariant(key), ini.value(key)}); + } + ini.endGroup(); + } + + return !m_root->children.isEmpty(); +} + +QByteArray IniEngine::serialize() const +{ + if (!m_root) return {}; + + QByteArray result; + for (const auto *section : m_root->children) { + if (section->name != QStringLiteral("General")) { + result.append('['); + result.append(section->name.toUtf8()); + result.append("]\n"); + } + for (const auto &row : section->rows) { + result.append(row[0].toString().toUtf8()); + result.append('='); + result.append(row[1].toString().toUtf8()); + result.append('\n'); + } + result.append('\n'); + } + return result; +} + +// Factory helpers — called by TextFormatEngine::createForFile() +std::unique_ptr<TextFormatEngine> createJsonEngine(); +std::unique_ptr<TextFormatEngine> createXmlEngine(); +std::unique_ptr<TextFormatEngine> createCborEngine(); +std::unique_ptr<TextFormatEngine> createYamlEngine(); +std::unique_ptr<TextFormatEngine> createTomlEngine(); + +std::unique_ptr<TextFormatEngine> createIniEngine() +{ + return std::make_unique<IniEngine>(); +} + +std::unique_ptr<TextFormatEngine> TextFormatEngine::createForFile(const QString &filepath) +{ + QFileInfo fi(filepath); + QString ext = fi.suffix().toLower(); + + if (ext == QStringLiteral("json")) + return createJsonEngine(); + if (ext == QStringLiteral("xml") || ext == QStringLiteral("svg") + || ext == QStringLiteral("xhtml") || ext == QStringLiteral("plist")) + return createXmlEngine(); + if (ext == QStringLiteral("cbor")) + return createCborEngine(); + if (ext == QStringLiteral("ini") || ext == QStringLiteral("cfg") + || ext == QStringLiteral("conf") || ext == QStringLiteral("desktop") + || ext == QStringLiteral("inf")) + return createIniEngine(); + if (ext == QStringLiteral("yaml") || ext == QStringLiteral("yml")) + return createYamlEngine(); + if (ext == QStringLiteral("toml")) + return createTomlEngine(); + + return nullptr; +} diff --git a/wlx/structview/src/JsonEngine.cpp b/wlx/structview/src/JsonEngine.cpp new file mode 100644 index 0000000..5f4b6c5 --- /dev/null +++ b/wlx/structview/src/JsonEngine.cpp @@ -0,0 +1,364 @@ +#include "TextFormatEngine.h" + +#include <QJsonDocument> +#include <QJsonObject> +#include <QJsonArray> +#include <QJsonValue> + +/// JSON engine: builds a document tree from JSON. +/// +/// - Objects → child nodes for nested objects/arrays, grid rows for scalars +/// - Arrays of objects with shared keys → tabular grid on parent +/// - Arrays of primitives → 1-column Value grid +class JsonEngine : public TextFormatEngine { +public: + bool parse(const QByteArray &data) override; + DocumentNode *rootNode() const override { return m_root.get(); } + QByteArray serialize() const override; + QString rawText() const override { return m_rawText; } + QString formatName() const override { return QStringLiteral("JSON"); } + + /// Also used by CborEngine + bool parseFromJson(const QJsonValue &root, const QString &rootName); + +private: + void buildTree(DocumentNode *node, const QJsonValue &value); + QJsonValue treeToJson(const DocumentNode *node) const; + + /// Check if a JSON array is "tabular" (array of objects with shared keys) + static bool isTabularArray(const QJsonArray &arr, QStringList &columns); + + /// Convert a QJsonValue to a display string + static QString valueToString(const QJsonValue &v); + + std::unique_ptr<DocumentNode> m_root; + QString m_rawText; +}; + +// --------------------------------------------------------------------------- +// Helpers +// --------------------------------------------------------------------------- + +QString JsonEngine::valueToString(const QJsonValue &v) +{ + switch (v.type()) { + case QJsonValue::String: return v.toString(); + case QJsonValue::Double: return QString::number(v.toDouble(), 'g', 15); + case QJsonValue::Bool: return v.toBool() ? QStringLiteral("true") : QStringLiteral("false"); + case QJsonValue::Null: return QStringLiteral("null"); + case QJsonValue::Object: + return QString::fromUtf8(QJsonDocument(v.toObject()).toJson(QJsonDocument::Compact)); + case QJsonValue::Array: + return QString::fromUtf8(QJsonDocument(v.toArray()).toJson(QJsonDocument::Compact)); + default: return QString(); + } +} + +bool JsonEngine::isTabularArray(const QJsonArray &arr, QStringList &columns) +{ + if (arr.isEmpty()) return false; + + // All elements must be objects + for (const auto &elem : arr) { + if (!elem.isObject()) return false; + } + + // Collect union of keys preserving first-seen order + QSet<QString> seen; + for (const auto &elem : arr) { + QJsonObject obj = elem.toObject(); + for (auto it = obj.begin(); it != obj.end(); ++it) { + if (!seen.contains(it.key())) { + seen.insert(it.key()); + columns.append(it.key()); + } + } + } + + return columns.size() >= 1; +} + +// --------------------------------------------------------------------------- +// Tree building +// --------------------------------------------------------------------------- + +void JsonEngine::buildTree(DocumentNode *node, const QJsonValue &value) +{ + if (value.isObject()) { + QJsonObject obj = value.toObject(); + + // Separate scalars (grid rows) from containers (child nodes) + QStringList scalarKeys; + QList<QPair<QString, QJsonValue>> containers; + + for (auto it = obj.begin(); it != obj.end(); ++it) { + if (it.value().isObject() || it.value().isArray()) { + containers.append({it.key(), it.value()}); + } else { + scalarKeys.append(it.key()); + } + } + + // Scalars → 2-column grid: Key | Value + if (!scalarKeys.isEmpty()) { + node->columnNames = {QStringLiteral("Key"), QStringLiteral("Value")}; + for (const auto &key : scalarKeys) { + node->rows.append({QVariant(key), QVariant(valueToString(obj[key]))}); + } + } + + // Containers → child nodes + for (const auto &[key, val] : containers) { + auto *child = node->addChild(key); + buildTree(child, val); + } + + } else if (value.isArray()) { + QJsonArray arr = value.toArray(); + QStringList tabularCols; + + if (isTabularArray(arr, tabularCols)) { + // Tabular: display as multi-column grid + node->columnNames = tabularCols; + for (const auto &elem : arr) { + QJsonObject obj = elem.toObject(); + QVector<QVariant> row; + row.reserve(tabularCols.size()); + for (const auto &col : tabularCols) { + row.append(QVariant(valueToString(obj[col]))); + } + node->rows.append(std::move(row)); + } + + // But also check for nested containers in each object + for (int i = 0; i < arr.size(); ++i) { + QJsonObject obj = arr[i].toObject(); + bool hasContainers = false; + for (auto it = obj.begin(); it != obj.end(); ++it) { + if (it.value().isObject() || it.value().isArray()) { + hasContainers = true; + break; + } + } + if (hasContainers) { + auto *child = node->addChild(QStringLiteral("[%1]").arg(i)); + buildTree(child, arr[i]); + } + } + } else { + // Non-tabular: individual items + if (arr.isEmpty()) return; + + // Check if all elements are primitives + bool allPrimitive = true; + for (const auto &elem : arr) { + if (elem.isObject() || elem.isArray()) { + allPrimitive = false; + break; + } + } + + if (allPrimitive) { + // Value grid + node->columnNames = {QStringLiteral("Value")}; + for (int i = 0; i < arr.size(); ++i) { + node->rows.append({QVariant(valueToString(arr[i]))}); + } + } else { + // Mixed: child nodes for each element + for (int i = 0; i < arr.size(); ++i) { + auto *child = node->addChild(QStringLiteral("[%1]").arg(i)); + buildTree(child, arr[i]); + } + } + } + } + // Scalars at root level are handled by the parent +} + +// --------------------------------------------------------------------------- +// Parsing +// --------------------------------------------------------------------------- + +bool JsonEngine::parse(const QByteArray &data) +{ + QJsonParseError err; + QJsonDocument doc = QJsonDocument::fromJson(data, &err); + if (err.error != QJsonParseError::NoError) + return false; + + m_rawText = QString::fromUtf8(doc.toJson(QJsonDocument::Indented)); + + QJsonValue root; + QString rootName = QStringLiteral("root"); + if (doc.isObject()) { + root = doc.object(); + } else if (doc.isArray()) { + root = doc.array(); + } else { + return false; + } + + return parseFromJson(root, rootName); +} + +bool JsonEngine::parseFromJson(const QJsonValue &root, const QString &rootName) +{ + m_root = std::make_unique<DocumentNode>(rootName); + buildTree(m_root.get(), root); + return true; +} + +// --------------------------------------------------------------------------- +// Serialization +// --------------------------------------------------------------------------- + +QJsonValue JsonEngine::treeToJson(const DocumentNode *node) const +{ + // If node has child nodes, it's a container + if (!node->children.isEmpty()) { + // Check if children are array-indexed + bool isArray = !node->children.isEmpty() + && node->children[0]->name.startsWith('['); + + if (isArray) { + QJsonArray arr; + for (const auto *child : node->children) { + arr.append(treeToJson(child)); + } + return arr; + } else { + QJsonObject obj; + // First add grid rows (Key | Value scalars) + if (node->columnNames.size() == 2 + && node->columnNames[0] == QStringLiteral("Key")) { + for (const auto &row : node->rows) { + QString key = row[0].toString(); + QString val = row[1].toString(); + // Try to preserve types + if (val == QStringLiteral("null")) + obj[key] = QJsonValue::Null; + else if (val == QStringLiteral("true")) + obj[key] = true; + else if (val == QStringLiteral("false")) + obj[key] = false; + else { + bool ok; + double num = val.toDouble(&ok); + if (ok) obj[key] = num; + else obj[key] = val; + } + } + } + // Then add child containers + for (const auto *child : node->children) { + obj[child->name] = treeToJson(child); + } + return obj; + } + } + + // Leaf node with tabular grid → array of objects + bool isTabular = false; + if (node->columnNames.size() > 2) { + isTabular = true; + } else if (node->columnNames.size() == 2 + && node->columnNames[0] != QStringLiteral("Key") + && node->columnNames[0] != QStringLiteral("Index")) { + isTabular = true; + } else if (node->columnNames.size() == 1 + && node->columnNames[0] != QStringLiteral("Value")) { + isTabular = true; + } + + if (isTabular) { + QJsonArray arr; + for (const auto &row : node->rows) { + QJsonObject obj; + for (int c = 0; c < node->columnNames.size() && c < row.size(); ++c) { + QString val = row[c].toString(); + if (val == QStringLiteral("null")) + obj[node->columnNames[c]] = QJsonValue::Null; + else if (val == QStringLiteral("true")) + obj[node->columnNames[c]] = true; + else if (val == QStringLiteral("false")) + obj[node->columnNames[c]] = false; + else { + bool ok; + double num = val.toDouble(&ok); + if (ok) obj[node->columnNames[c]] = num; + else obj[node->columnNames[c]] = val; + } + } + arr.append(obj); + } + return arr; + } + + // Key | Value → object + if (node->columnNames.size() == 2 + && node->columnNames[0] == QStringLiteral("Key")) { + QJsonObject obj; + for (const auto &row : node->rows) { + QString key = row[0].toString(); + QString val = row[1].toString(); + if (val == QStringLiteral("null")) + obj[key] = QJsonValue::Null; + else if (val == QStringLiteral("true")) + obj[key] = true; + else if (val == QStringLiteral("false")) + obj[key] = false; + else { + bool ok; + double num = val.toDouble(&ok); + if (ok) obj[key] = num; + else obj[key] = val; + } + } + return obj; + } + + // Value only → array + if (node->columnNames.size() == 1 + && node->columnNames[0] == QStringLiteral("Value")) { + QJsonArray arr; + for (const auto &row : node->rows) { + QString val = row[0].toString(); + if (val == QStringLiteral("null")) + arr.append(QJsonValue::Null); + else if (val == QStringLiteral("true")) + arr.append(true); + else if (val == QStringLiteral("false")) + arr.append(false); + else { + bool ok; + double num = val.toDouble(&ok); + if (ok) arr.append(num); + else arr.append(val); + } + } + return arr; + } + + return QJsonValue(); +} + +QByteArray JsonEngine::serialize() const +{ + if (!m_root) return {}; + + QJsonValue val = treeToJson(m_root.get()); + QJsonDocument doc; + if (val.isObject()) + doc = QJsonDocument(val.toObject()); + else if (val.isArray()) + doc = QJsonDocument(val.toArray()); + + return doc.toJson(QJsonDocument::Indented); +} + +// Factory helper +std::unique_ptr<TextFormatEngine> createJsonEngine() +{ + return std::make_unique<JsonEngine>(); +} diff --git a/wlx/structview/src/StructViewWidget.cpp b/wlx/structview/src/StructViewWidget.cpp new file mode 100644 index 0000000..dd7b92b --- /dev/null +++ b/wlx/structview/src/StructViewWidget.cpp @@ -0,0 +1,725 @@ +#include "StructViewWidget.h" + +#include <wlxbase_wlqt/FocusManager.h> +#include <wlxbase_wlqt/PluginToolBar.h> +#include <wlxbase_wlqt/EditableGridWidget.h> +#include <wlxbase_wlqt/ScopedFindReplacePanel.h> +#include <wlxbase_wlqt/FilterableHeaderView.h> +#include <wlxbase_wlqt/PluginStatusBar.h> +#include <wlxbase_wlqt/PluginSplitView.h> +#include <wlxbase_wlqt/ThemeManager.h> +#include <wlxbase_wlqt/EncodingUtils.h> +#include <wlxbase_wlqt/SequentialRowProxyModel.h> + +#include <QUndoStack> +#include <QUndoCommand> +#include <QStyledItemDelegate> +#include <QPrinter> +#include <QPrintDialog> +#include <QTextDocument> +#include <QDesktopServices> +#include <QIcon> +#include <QStyle> +#include <QUrl> +#include <QFileDialog> +#include <QCborValue> +#include <QJsonDocument> +#include <QJsonValue> +#include <QJsonObject> +#include <QJsonArray> +#include <QVBoxLayout> +#include <QHeaderView> +#include <QTableView> +#include <QFile> +#include <QFileInfo> +#include <QMessageBox> + +using namespace QtWlPlugin; + +namespace { +class StructEditCommand : public QUndoCommand { +public: + StructEditCommand(QStandardItemModel *model, + int rowId, + int col, + const QVariant &oldVal, + const QVariant &newVal) + : m_model(model), m_rowId(rowId), m_col(col) + , m_oldVal(oldVal), m_newVal(newVal) + { + setText(QStringLiteral("Edit cell")); + } + + void undo() override { + applyValue(m_oldVal); + } + + void redo() override { + applyValue(m_newVal); + } + +private: + void applyValue(const QVariant &value) { + int visualRow = -1; + for (int r = 0; r < m_model->rowCount(); ++r) { + if (m_model->data(m_model->index(r, 0), Qt::UserRole + 100).toInt() == m_rowId) { + visualRow = r; + break; + } + } + + if (visualRow >= 0) { + QModelIndex idx = m_model->index(visualRow, m_col); + m_model->setData(idx, value, Qt::EditRole); + } + } + + QStandardItemModel *m_model; + int m_rowId; + int m_col; + QVariant m_oldVal; + QVariant m_newVal; +}; + +class StructEditDelegate : public QStyledItemDelegate { +public: + StructEditDelegate(QUndoStack *undoStack, QObject *parent = nullptr) + : QStyledItemDelegate(parent), m_undoStack(undoStack) {} + + void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override { + QModelIndex srcIndex = index; + QStandardItemModel *srcModel = qobject_cast<QStandardItemModel*>(model); + if (auto *proxy = qobject_cast<const QAbstractProxyModel*>(model)) { + srcIndex = proxy->mapToSource(index); + srcModel = qobject_cast<QStandardItemModel*>(proxy->sourceModel()); + } + + if (!srcModel) { + QStyledItemDelegate::setModelData(editor, model, index); + return; + } + + QVariant oldValue = srcModel->data(srcIndex, Qt::EditRole); + + // Let default delegate set the model data + QStyledItemDelegate::setModelData(editor, model, index); + + QVariant newValue = srcModel->data(srcIndex, Qt::EditRole); + + if (oldValue != newValue) { + int rowId = srcModel->data(srcModel->index(srcIndex.row(), 0), Qt::UserRole + 100).toInt(); + + // Revert temporarily so push can apply it cleanly + srcModel->setData(srcIndex, oldValue, Qt::EditRole); + + m_undoStack->push(new StructEditCommand(srcModel, rowId, srcIndex.column(), oldValue, newValue)); + } + } + +private: + QUndoStack *m_undoStack; +}; +} + +StructViewWidget::StructViewWidget(QWidget *parent) + : QWidget(parent) + , m_fm(nullptr) +{ + m_undoStack = new QUndoStack(this); + setupUi(); + + // Apply saved theme + ThemeManager::applyTheme(this, ThemeManager::currentTheme()); +} + +StructViewWidget::~StructViewWidget() +{ + // Disconnect all signals BEFORE child widgets start being destroyed. + // Without this, Qt's arbitrary child destruction order can trigger + // callbacks (e.g. selectionChanged, dataChanged) on half-destroyed objects, + // causing crashes when the user navigates away with unsaved edits. + if (m_treeView && m_treeView->selectionModel()) + disconnect(m_treeView->selectionModel(), nullptr, this, nullptr); + if (m_gridModel) + disconnect(m_gridModel, nullptr, this, nullptr); + if (m_filterProxy) + disconnect(m_filterProxy, nullptr, this, nullptr); + if (m_fm) + m_fm->setActive(false); +} + +void StructViewWidget::setupUi() +{ + auto *mainLayout = new QVBoxLayout(this); + mainLayout->setContentsMargins(0, 0, 0, 0); + mainLayout->setSpacing(0); + + // --- Create the primary view and FocusManager FIRST --- + // (setupToolbar needs m_fm for shortcut registration) + m_gridView = new QTableView; + m_gridModel = new QStandardItemModel(this); + m_filterProxy = new SequentialRowProxyModel(this); + m_filterProxy->setSourceModel(m_gridModel); + m_filterProxy->setFilterCaseSensitivity(Qt::CaseInsensitive); + + // Install filterable header (must be before setModel) + m_filterHeader = new FilterableHeaderView(Qt::Horizontal, m_gridView); + m_filterHeader->setFilterEnabled(true); + m_filterHeader->setStretchLastSection(true); + m_gridView->setHorizontalHeader(m_filterHeader); + + m_gridView->setModel(m_filterProxy); + m_gridView->setSortingEnabled(true); + m_gridView->setAlternatingRowColors(true); + m_gridView->setSelectionBehavior(QAbstractItemView::SelectItems); + m_gridView->setSelectionMode(QAbstractItemView::ExtendedSelection); + m_gridView->setItemDelegate(new StructEditDelegate(m_undoStack, this)); + + connect(m_filterHeader, &FilterableHeaderView::filterChanged, this, + [this](int column, const QString &text) { + if (m_filterProxy) { + m_filterProxy->setFilterKeyColumn(column); + m_filterProxy->setFilterFixedString(text); + updateStatusBar(); + } + }); + + m_fm = new FocusManager(this, m_gridView, this); + m_grid = new EditableGridWidget(m_gridView, GridMode::MemoryDocument, m_fm, this); + + // --- Toolbar --- + setupToolbar(); + mainLayout->addWidget(m_toolbar); + + // --- Left panel: Tree view --- + m_treeView = new QTreeView; + m_treeModel = new QStandardItemModel(this); + m_treeView->setModel(m_treeModel); + m_treeView->setHeaderHidden(true); + m_treeView->setEditTriggers(QAbstractItemView::NoEditTriggers); + m_treeView->setMinimumWidth(120); + + // --- Right panel: Tabs --- + m_tabWidget = new QTabWidget; + + // Grid tab + auto *gridContainer = new QWidget; + auto *gridLayout = new QVBoxLayout(gridContainer); + gridLayout->setContentsMargins(0, 0, 0, 0); + gridLayout->setSpacing(0); + + m_grid->setThemeToggleEnabled(true); + + gridLayout->addWidget(m_grid); + + m_tabWidget->addTab(gridContainer, QStringLiteral("Grid")); + + // Text tab (read-only) + m_textView = new QPlainTextEdit; + m_textView->setReadOnly(true); + m_textView->setFont(QFont(QStringLiteral("monospace"), 10)); + m_textView->setLineWrapMode(QPlainTextEdit::NoWrap); + m_tabWidget->addTab(m_textView, QStringLiteral("Text")); + + // --- Split view --- + m_splitView = new PluginSplitView(m_treeView, m_tabWidget, this); + mainLayout->addWidget(m_splitView, 1); + + // --- Find/replace --- + setupFindReplace(); + mainLayout->addWidget(m_findReplace); + + // --- Status bar --- + m_statusBar = new PluginStatusBar(this); + mainLayout->addWidget(m_statusBar); + + // --- Connect tree selection --- + connect(m_treeView->selectionModel(), &QItemSelectionModel::currentChanged, + this, &StructViewWidget::onTreeNodeSelected); + + // --- Connect tab widget changes --- + connect(m_tabWidget, &QTabWidget::currentChanged, this, [this](int index) { + if (index == 1) { + updateTextTab(); + } + if (m_actShowText) { + QSignalBlocker blocker(m_actShowText); + m_actShowText->setChecked(index == 1); + } + }); +} + +void StructViewWidget::setupToolbar() +{ + m_toolbar = new PluginToolBar(m_fm, this); + + // Save (Ctrl+S) + auto *actSave = m_toolbar->addToolAction( + QStringLiteral("Save"), + QKeySequence::Save, + FocusManager::Always, + QStringLiteral("document-save")); + connect(actSave, &QAction::triggered, this, &StructViewWidget::onSave); + + // Save As (Ctrl+Shift+S) + auto *actSaveAs = m_toolbar->addToolAction( + QStringLiteral("Save As"), + QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_S), + FocusManager::Always, + QStringLiteral("document-save-as")); + connect(actSaveAs, &QAction::triggered, this, &StructViewWidget::onSaveAs); + + // Undo (Ctrl+Z) + auto *actUndo = m_toolbar->addToolAction( + QStringLiteral("Undo"), + QKeySequence::Undo, + FocusManager::Always, + QStringLiteral("edit-undo")); + connect(actUndo, &QAction::triggered, m_undoStack, &QUndoStack::undo); + + // Redo (Ctrl+Y, Ctrl+Shift+Z) + auto *actRedo = m_toolbar->addToolAction( + QStringLiteral("Redo"), + QKeySequence::Redo, + FocusManager::Always, + QStringLiteral("edit-redo")); + actRedo->setShortcuts({QKeySequence::Redo, QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_Z)}); + connect(actRedo, &QAction::triggered, m_undoStack, &QUndoStack::redo); + + // Print (Ctrl+P) + auto *actPrint = m_toolbar->addToolAction( + QStringLiteral("Print"), + QKeySequence::Print, + FocusManager::Always, + QStringLiteral("document-print")); + connect(actPrint, &QAction::triggered, this, &StructViewWidget::onPrint); + + // Reload (F5) + auto *actReload = m_toolbar->addToolAction( + QStringLiteral("Reload"), + QKeySequence(Qt::Key_F5), + FocusManager::Always, + QStringLiteral("view-refresh")); + connect(actReload, &QAction::triggered, this, &StructViewWidget::onReload); + + // Show Text + m_actShowText = m_toolbar->addToolAction( + QStringLiteral("Show Text"), + QKeySequence(), + FocusManager::Always, + QStringLiteral("visibility")); + m_actShowText->setCheckable(true); + connect(m_actShowText, &QAction::toggled, this, [this](bool on) { + m_tabWidget->setCurrentIndex(on ? 1 : 0); + }); + + // Word Wrap / Line Wrap + auto *actWrap = m_toolbar->addToolAction( + QStringLiteral("Word Wrap"), + QKeySequence(), + FocusManager::Always, + QStringLiteral("format-text-direction-ltr")); + actWrap->setCheckable(true); + connect(actWrap, &QAction::toggled, this, [this](bool on) { + m_grid->setWordWrap(on); + if (m_textView) { + m_textView->setLineWrapMode(on ? QPlainTextEdit::WidgetWidth : QPlainTextEdit::NoWrap); + } + }); + + // Open Externally (Ctrl+O) + auto *actOpen = m_toolbar->addToolAction( + QStringLiteral("Open Externally"), + QKeySequence(Qt::CTRL | Qt::Key_O), + FocusManager::Always, + QStringLiteral("document-open")); + connect(actOpen, &QAction::triggered, this, &StructViewWidget::onOpenExternally); +} + +void StructViewWidget::setupFindReplace() +{ + m_findReplace = new ScopedFindReplacePanel(m_fm, this); + auto *actFind = m_toolbar->addToolAction( + QStringLiteral("Find"), + QKeySequence::Find, + 0, + QStringLiteral("edit-find")); + connect(actFind, &QAction::triggered, this, [this]() { + m_findReplace->showPanel(!m_findReplace->isPanelVisible()); + }); + connect(m_findReplace, &ScopedFindReplacePanel::findRequested, this, + &StructViewWidget::onFind); +} + +bool StructViewWidget::loadFile(const QString &filepath) +{ + QFile file(filepath); + if (!file.open(QIODevice::ReadOnly)) + return false; + + QByteArray data = file.readAll(); + file.close(); + + m_engine = TextFormatEngine::createForFile(filepath); + if (!m_engine) return false; + + if (!m_engine->parse(data)) + return false; + + m_filepath = filepath; + + // Populate tree + populateTree(); + + // Set text tab + m_textView->setPlainText(m_engine->rawText()); + + // Status bar + QFileInfo fi(filepath); + m_statusBar->setFormatInfo(m_engine->formatName()); + m_statusBar->setEncoding(EncodingUtils::detectEncoding(data)); + + // Select root node + if (m_treeModel->rowCount() > 0) { + m_treeView->setCurrentIndex(m_treeModel->index(0, 0)); + m_treeView->expandAll(); + } + + return true; +} + +void StructViewWidget::populateTree() +{ + m_treeModel->clear(); + DocumentNode *root = m_engine->rootNode(); + if (!root) return; + + auto *rootItem = new QStandardItem(root->name); + rootItem->setData(QVariant::fromValue(reinterpret_cast<quintptr>(root)), + Qt::UserRole); + m_treeModel->appendRow(rootItem); + + populateTreeNode(rootItem, root); +} + +void StructViewWidget::populateTreeNode(QStandardItem *parentItem, DocumentNode *node) +{ + for (auto *child : node->children) { + auto *item = new QStandardItem(child->name); + item->setData(QVariant::fromValue(reinterpret_cast<quintptr>(child)), + Qt::UserRole); + item->setEditable(false); + + // Icon: folder for containers, document for leaves + if (child->isContainer()) { + item->setIcon(style()->standardIcon(QStyle::SP_DirIcon)); + } else { + item->setIcon(style()->standardIcon(QStyle::SP_FileIcon)); + } + + parentItem->appendRow(item); + populateTreeNode(item, child); + } +} + +void StructViewWidget::onTreeNodeSelected(const QModelIndex ¤t, + const QModelIndex & /*previous*/) +{ + if (!current.isValid()) return; + + auto ptr = current.data(Qt::UserRole).value<quintptr>(); + auto *node = reinterpret_cast<DocumentNode*>(ptr); + if (!node) return; + + showNodeData(node); +} + +void StructViewWidget::showNodeData(DocumentNode *node) +{ + m_currentNode = node; + + m_gridModel->clear(); + if (m_undoStack) + m_undoStack->clear(); + + if (node->columnNames.isEmpty() && node->rows.isEmpty()) { + // No grid data — show message + m_gridModel->setHorizontalHeaderLabels({QStringLiteral("Info")}); + auto *item = new QStandardItem( + QStringLiteral("Select a child node to view data.")); + item->setFlags(item->flags() & ~Qt::ItemIsEditable); + m_gridModel->appendRow(item); + } else { + // Set column headers + m_gridModel->setHorizontalHeaderLabels(node->columnNames); + + // Populate rows + int rowId = 0; + for (const auto &row : node->rows) { + QList<QStandardItem*> items; + for (const auto &val : row) { + auto *item = new QStandardItem(val.toString()); + if (!node->editable) + item->setFlags(item->flags() & ~Qt::ItemIsEditable); + items.append(item); + } + if (!items.isEmpty()) { + items.first()->setData(rowId++, Qt::UserRole + 100); + } + m_gridModel->appendRow(items); + } + } + + m_filterHeader->clearFilters(); + + updateStatusBar(); + + // Hide header if virtual (e.g. Key/Value, Name/Value, or Value only) + bool isVirtual = false; + if (node->columnNames.isEmpty()) { + isVirtual = true; + } else if (node->columnNames.size() == 1 && node->columnNames[0] == QStringLiteral("Value")) { + isVirtual = true; + } else if (node->columnNames.size() == 2 && + (node->columnNames[0] == QStringLiteral("Key") || node->columnNames[0] == QStringLiteral("Name")) && + node->columnNames[1] == QStringLiteral("Value")) { + isVirtual = true; + } + + m_gridView->horizontalHeader()->show(); + m_filterHeader->setHeaderVisible(!isVirtual); + + // Resize columns + m_gridView->horizontalHeader()->setStretchLastSection(true); + m_gridView->resizeColumnsToContents(); +} + +void StructViewWidget::updateStatusBar() +{ + int total = m_gridModel->rowCount(); + int filtered = m_filterProxy->rowCount(); + m_statusBar->setRowCount(filtered, total); +} + +void StructViewWidget::syncGridToNode() +{ + if (m_currentNode && !m_currentNode->columnNames.isEmpty()) { + m_currentNode->rows.clear(); + for (int r = 0; r < m_gridModel->rowCount(); ++r) { + QVector<QVariant> row; + for (int c = 0; c < m_gridModel->columnCount(); ++c) { + auto *item = m_gridModel->item(r, c); + row.append(item ? item->data(Qt::DisplayRole) : QVariant()); + } + m_currentNode->rows.append(std::move(row)); + } + } +} + +bool StructViewWidget::saveFile() +{ + return saveFileAs(m_filepath); +} + +bool StructViewWidget::saveFileAs(const QString &path) +{ + if (!m_engine) return false; + + // Sync current grid data back to the node + syncGridToNode(); + + QByteArray output = m_engine->serialize(); + if (output.isEmpty()) return false; + + QFile file(path); + if (!file.open(QIODevice::WriteOnly | QIODevice::Truncate)) + return false; + + file.write(output); + file.close(); + + // Update m_textView so it matches the saved content + if (m_engine->formatName() == QStringLiteral("CBOR")) { + QCborParserError err; + QCborValue cbor = QCborValue::fromCbor(output, &err); + if (err.error == QCborError::NoError) { + QJsonValue jsonVal = cbor.toJsonValue(); + QJsonDocument doc; + if (jsonVal.isObject()) + doc = QJsonDocument(jsonVal.toObject()); + else if (jsonVal.isArray()) + doc = QJsonDocument(jsonVal.toArray()); + m_textView->setPlainText(QString::fromUtf8(doc.toJson(QJsonDocument::Indented))); + } + } else { + m_textView->setPlainText(QString::fromUtf8(output)); + } + + return true; +} + +void StructViewWidget::onSave() +{ + if (!saveFile()) { + QMessageBox::warning(this, QStringLiteral("Save Error"), + QStringLiteral("Could not save file.")); + } +} + +void StructViewWidget::onSaveAs() +{ + QString filter; + if (m_engine) { + if (m_engine->formatName() == QStringLiteral("JSON")) { + filter = QStringLiteral("JSON Files (*.json);;All Files (*)"); + } else if (m_engine->formatName() == QStringLiteral("XML")) { + filter = QStringLiteral("XML Files (*.xml);;All Files (*)"); + } else if (m_engine->formatName() == QStringLiteral("YAML")) { + filter = QStringLiteral("YAML Files (*.yaml *.yml);;All Files (*)"); + } else if (m_engine->formatName() == QStringLiteral("TOML")) { + filter = QStringLiteral("TOML Files (*.toml);;All Files (*)"); + } else if (m_engine->formatName() == QStringLiteral("INI")) { + filter = QStringLiteral("INI Files (*.ini);;All Files (*)"); + } else if (m_engine->formatName() == QStringLiteral("CBOR")) { + filter = QStringLiteral("CBOR Files (*.cbor);;All Files (*)"); + } + } + if (filter.isEmpty()) { + filter = QStringLiteral("All Files (*)"); + } + QString filePath = QFileDialog::getSaveFileName(this, QStringLiteral("Save As"), m_filepath, filter); + if (!filePath.isEmpty()) { + if (saveFileAs(filePath)) { + m_filepath = filePath; + } else { + QMessageBox::warning(this, QStringLiteral("Save Error"), + QStringLiteral("Could not save file.")); + } + } +} + +void StructViewWidget::onReload() +{ + if (!m_filepath.isEmpty()) { + if (loadFile(m_filepath)) { + m_undoStack->clear(); + } else { + QMessageBox::warning(this, QStringLiteral("Reload Error"), + QStringLiteral("Could not reload file.")); + } + } +} + +void StructViewWidget::onPrint() +{ + if (!m_engine) return; + + // Sync and serialize so raw text is up to date + syncGridToNode(); + QByteArray output = m_engine->serialize(); + + QString printText; + if (m_engine->formatName() == QStringLiteral("CBOR")) { + QCborParserError err; + QCborValue cbor = QCborValue::fromCbor(output, &err); + if (err.error == QCborError::NoError) { + QJsonValue jsonVal = cbor.toJsonValue(); + QJsonDocument doc; + if (jsonVal.isObject()) + doc = QJsonDocument(jsonVal.toObject()); + else if (jsonVal.isArray()) + doc = QJsonDocument(jsonVal.toArray()); + printText = QString::fromUtf8(doc.toJson(QJsonDocument::Indented)); + } else { + printText = QStringLiteral("<Failed to parse CBOR to JSON>"); + } + } else { + printText = QString::fromUtf8(output); + } + + QPrinter printer(QPrinter::HighResolution); + QPrintDialog dialog(&printer, this); + dialog.setWindowTitle(QStringLiteral("Print Document")); + + if (dialog.exec() == QDialog::Accepted) { + QTextDocument doc; + doc.setPlainText(printText); + doc.print(&printer); + } +} + +void StructViewWidget::onOpenExternally() +{ + if (!m_filepath.isEmpty()) { + QDesktopServices::openUrl(QUrl::fromLocalFile(m_filepath)); + } +} + +void StructViewWidget::updateTextTab() +{ + if (!m_engine) return; + + // Sync current grid data + syncGridToNode(); + + QByteArray output = m_engine->serialize(); + if (m_engine->formatName() == QStringLiteral("CBOR")) { + // CBOR should show indented JSON + QCborParserError err; + QCborValue cbor = QCborValue::fromCbor(output, &err); + if (err.error == QCborError::NoError) { + QJsonValue jsonVal = cbor.toJsonValue(); + QJsonDocument doc; + if (jsonVal.isObject()) + doc = QJsonDocument(jsonVal.toObject()); + else if (jsonVal.isArray()) + doc = QJsonDocument(jsonVal.toArray()); + m_textView->setPlainText(QString::fromUtf8(doc.toJson(QJsonDocument::Indented))); + } else { + m_textView->setPlainText(QStringLiteral("<Failed to parse CBOR to JSON>")); + } + } else { + m_textView->setPlainText(QString::fromUtf8(output)); + } +} + +void StructViewWidget::onFind(bool forward) +{ + // Delegate to grid search + if (!m_gridView->model()) return; + + QString searchText = m_findReplace->findText(); + if (searchText.isEmpty()) return; + + QModelIndex start = m_gridView->currentIndex(); + if (!start.isValid()) + start = m_gridView->model()->index(0, 0); + + QAbstractItemModel *model = m_gridView->model(); + int rows = model->rowCount(); + int cols = model->columnCount(); + int startRow = start.row(); + int startCol = start.column(); + + // Search from current position + for (int i = 0; i < rows * cols; ++i) { + int offset = forward ? (i + 1) : (rows * cols - i - 1); + int r = (startRow + offset / cols) % rows; + int c = (startCol + offset % cols) % cols; + QModelIndex idx = model->index(r, c); + QString text = model->data(idx, Qt::DisplayRole).toString(); + if (text.contains(searchText, Qt::CaseInsensitive)) { + m_gridView->setCurrentIndex(idx); + m_gridView->scrollTo(idx); + return; + } + } +} + +FocusManager *StructViewWidget::focusManager() const { return m_fm; } +EditableGridWidget *StructViewWidget::grid() const { return m_grid; } + +QString StructViewWidget::getSelectionAsText(char sep) +{ + return m_grid->getSelectionAsText(sep); +} diff --git a/wlx/structview/src/TomlEngine.cpp b/wlx/structview/src/TomlEngine.cpp new file mode 100644 index 0000000..9f1f19d --- /dev/null +++ b/wlx/structview/src/TomlEngine.cpp @@ -0,0 +1,251 @@ +#include "TextFormatEngine.h" + +#define TOML_IMPLEMENTATION +#include <toml++/toml.hpp> + +#include <sstream> + +/// TOML engine: builds a document tree from TOML tables. +/// +/// - Tables → child nodes +/// - Arrays of tables → repeated children with tabular grid +/// - Values → Key | Value grid rows +class TomlEngine : public TextFormatEngine { +public: + bool parse(const QByteArray &data) override; + DocumentNode *rootNode() const override { return m_root.get(); } + QByteArray serialize() const override; + QString rawText() const override { return m_rawText; } + QString formatName() const override { return QStringLiteral("TOML"); } + +private: + void buildTree(DocumentNode *node, const toml::table &tbl); + void buildFromArray(DocumentNode *node, const toml::array &arr); + toml::table treeToToml(const DocumentNode *node) const; + + static QString tomlValueToString(const toml::node &val); + + std::unique_ptr<DocumentNode> m_root; + QString m_rawText; +}; + +QString TomlEngine::tomlValueToString(const toml::node &val) +{ + if (val.is_string()) return QString::fromStdString(*val.value<std::string>()); + if (val.is_integer()) return QString::number(*val.value<int64_t>()); + if (val.is_floating_point()) return QString::number(*val.value<double>(), 'g', 15); + if (val.is_boolean()) return *val.value<bool>() ? QStringLiteral("true") : QStringLiteral("false"); + if (val.is_date()) { + std::ostringstream ss; ss << *val.as_date(); + return QString::fromStdString(ss.str()); + } + if (val.is_time()) { + std::ostringstream ss; ss << *val.as_time(); + return QString::fromStdString(ss.str()); + } + if (val.is_date_time()) { + std::ostringstream ss; ss << *val.as_date_time(); + return QString::fromStdString(ss.str()); + } + return QString(); +} + +void TomlEngine::buildTree(DocumentNode *node, const toml::table &tbl) +{ + QStringList scalarKeys; + QStringList scalarValues; + + for (auto it = tbl.begin(); it != tbl.end(); ++it) { + QString key = QString::fromStdString(std::string(it->first.str())); + const toml::node &val = it->second; + + if (val.is_table()) { + auto *child = node->addChild(key); + buildTree(child, *val.as_table()); + } else if (val.is_array()) { + const toml::array &arr = *val.as_array(); + // Check if it's an array of tables + if (!arr.empty() && arr.front().is_table()) { + auto *child = node->addChild(QStringLiteral("[[%1]]").arg(key)); + buildFromArray(child, arr); + } else { + // Simple array → display as comma-separated string + QStringList items; + for (size_t i = 0; i < arr.size(); ++i) { + const auto &elem = arr[i]; + if (elem.is_string()) + items << QString::fromStdString(*elem.value<std::string>()); + else if (elem.is_integer()) + items << QString::number(*elem.value<int64_t>()); + else if (elem.is_floating_point()) + items << QString::number(*elem.value<double>(), 'g', 15); + else if (elem.is_boolean()) + items << (*elem.value<bool>() ? QStringLiteral("true") : QStringLiteral("false")); + else + items << QStringLiteral("?"); + } + scalarKeys.append(key); + scalarValues.append(QStringLiteral("[%1]").arg(items.join(QStringLiteral(", ")))); + } + } else { + scalarKeys.append(key); + scalarValues.append(tomlValueToString(val)); + } + } + + if (!scalarKeys.isEmpty()) { + node->columnNames = {QStringLiteral("Key"), QStringLiteral("Value")}; + for (int i = 0; i < scalarKeys.size(); ++i) { + node->rows.append({QVariant(scalarKeys[i]), QVariant(scalarValues[i])}); + } + } +} + +void TomlEngine::buildFromArray(DocumentNode *node, const toml::array &arr) +{ + // Array of tables → tabular grid + QStringList columns; + QSet<QString> seen; + + // Collect all keys + for (size_t i = 0; i < arr.size(); ++i) { + if (!arr[i].is_table()) continue; + const toml::table &tbl = *arr[i].as_table(); + for (auto it = tbl.begin(); it != tbl.end(); ++it) { + QString key = QString::fromStdString(std::string(it->first.str())); + if (!it->second.is_table() && !it->second.is_array()) { + if (!seen.contains(key)) { + seen.insert(key); + columns.append(key); + } + } + } + } + + if (!columns.isEmpty()) { + node->columnNames = columns; + for (size_t i = 0; i < arr.size(); ++i) { + if (!arr[i].is_table()) continue; + const toml::table &tbl = *arr[i].as_table(); + QVector<QVariant> row; + row.reserve(columns.size()); + for (const auto &col : columns) { + auto val = tbl[col.toStdString()]; + if (val) { + // node_view → get the underlying node by reference + const toml::node &n = *val.node(); + row.append(QVariant(tomlValueToString(n))); + } else { + row.append(QVariant()); + } + } + node->rows.append(std::move(row)); + } + } + + // Also add child nodes for tables that have nested tables + for (size_t i = 0; i < arr.size(); ++i) { + if (!arr[i].is_table()) continue; + const toml::table &tbl = *arr[i].as_table(); + bool hasNested = false; + for (auto it = tbl.begin(); it != tbl.end(); ++it) { + if (it->second.is_table() || it->second.is_array()) { + hasNested = true; + break; + } + } + if (hasNested) { + auto *child = node->addChild(QStringLiteral("[%1]").arg(i)); + buildTree(child, tbl); + } + } +} + +bool TomlEngine::parse(const QByteArray &data) +{ + try { + m_rawText = QString::fromUtf8(data); + + std::string str = data.toStdString(); + toml::table tbl = toml::parse(str); + + m_root = std::make_unique<DocumentNode>(QStringLiteral("root")); + buildTree(m_root.get(), tbl); + return true; + + } catch (const toml::parse_error &) { + return false; + } +} + +toml::table TomlEngine::treeToToml(const DocumentNode *node) const +{ + toml::table tbl; + + // Grid rows (Key | Value) + if (node->columnNames.size() == 2 + && node->columnNames[0] == QStringLiteral("Key")) { + for (const auto &row : node->rows) { + std::string key = row[0].toString().toStdString(); + std::string val = row[1].toString().toStdString(); + // Try to preserve types + if (val == "true") tbl.insert(key, true); + else if (val == "false") tbl.insert(key, false); + else { + try { + size_t pos; + int64_t ival = std::stoll(val, &pos); + if (pos == val.size()) { tbl.insert(key, ival); continue; } + } catch (...) {} + try { + size_t pos; + double dval = std::stod(val, &pos); + if (pos == val.size()) { tbl.insert(key, dval); continue; } + } catch (...) {} + tbl.insert(key, val); + } + } + } + + // Child nodes + for (const auto *child : node->children) { + std::string childKey = child->name.toStdString(); + // Strip [[ ]] for array of tables + if (child->name.startsWith(QStringLiteral("[["))) { + childKey = child->name.mid(2, child->name.size() - 4).toStdString(); + toml::array arr; + // If child has tabular data, each row is a table + if (!child->columnNames.isEmpty()) { + for (const auto &row : child->rows) { + toml::table entry; + for (int c = 0; c < child->columnNames.size() && c < row.size(); ++c) { + entry.insert(child->columnNames[c].toStdString(), + row[c].toString().toStdString()); + } + arr.push_back(std::move(entry)); + } + } + tbl.insert(childKey, std::move(arr)); + } else { + tbl.insert(childKey, treeToToml(child)); + } + } + + return tbl; +} + +QByteArray TomlEngine::serialize() const +{ + if (!m_root) return {}; + + toml::table tbl = treeToToml(m_root.get()); + + std::ostringstream ss; + ss << toml::toml_formatter(tbl); + return QByteArray::fromStdString(ss.str()); +} + +std::unique_ptr<TextFormatEngine> createTomlEngine() +{ + return std::make_unique<TomlEngine>(); +} diff --git a/wlx/structview/src/XmlEngine.cpp b/wlx/structview/src/XmlEngine.cpp new file mode 100644 index 0000000..84db913 --- /dev/null +++ b/wlx/structview/src/XmlEngine.cpp @@ -0,0 +1,255 @@ +#include "TextFormatEngine.h" + +#include <QDomDocument> +#include <QDomElement> +#include <QDomNodeList> +#include <QSet> +#include <QMap> + +/// XML engine: builds a document tree from the DOM. +/// +/// - Each element → tree node +/// - Repeating children with same tag → tabular grid on parent (attributes as @columns) +/// - Non-repeating children with text → 2-column Name | Value grid +class XmlEngine : public TextFormatEngine { +public: + bool parse(const QByteArray &data) override; + DocumentNode *rootNode() const override { return m_root.get(); } + QByteArray serialize() const override; + QString rawText() const override { return m_rawText; } + QString formatName() const override { return QStringLiteral("XML"); } + +private: + void buildTree(DocumentNode *node, const QDomElement &elem); + QDomElement treeToXml(QDomDocument &doc, const DocumentNode *node) const; + + std::unique_ptr<DocumentNode> m_root; + QString m_rawText; + QDomDocument m_originalDoc; +}; + +void XmlEngine::buildTree(DocumentNode *node, const QDomElement &elem) +{ + // Count child element tag frequencies + QMap<QString, int> tagCounts; + QMap<QString, QList<QDomElement>> tagElements; + QDomNodeList children = elem.childNodes(); + + for (int i = 0; i < children.count(); ++i) { + QDomNode child = children.at(i); + if (child.isElement()) { + QString tag = child.toElement().tagName(); + tagCounts[tag]++; + tagElements[tag].append(child.toElement()); + } + } + + // Find repeating tags (tabular data) + QString tabularTag; + int maxCount = 0; + for (auto it = tagCounts.begin(); it != tagCounts.end(); ++it) { + if (it.value() > maxCount) { + maxCount = it.value(); + tabularTag = it.key(); + } + } + + if (maxCount > 1) { + // Repeating elements → tabular grid + QStringList columns; + QSet<QString> seen; + const auto &elems = tagElements[tabularTag]; + + for (const auto &rowEl : elems) { + // Attributes (prefixed with @) + QDomNamedNodeMap attrs = rowEl.attributes(); + for (int a = 0; a < attrs.count(); ++a) { + QString attrName = QStringLiteral("@") + attrs.item(a).toAttr().name(); + if (!seen.contains(attrName)) { + seen.insert(attrName); + columns.append(attrName); + } + } + // Child element text values + QDomNodeList rowChildren = rowEl.childNodes(); + for (int j = 0; j < rowChildren.count(); ++j) { + if (rowChildren.at(j).isElement()) { + QString tag = rowChildren.at(j).toElement().tagName(); + if (!seen.contains(tag)) { + seen.insert(tag); + columns.append(tag); + } + } + } + } + + node->columnNames = columns; + for (const auto &rowEl : elems) { + QVector<QVariant> row; + row.reserve(columns.size()); + for (const auto &col : columns) { + if (col.startsWith('@')) { + row.append(QVariant(rowEl.attribute(col.mid(1)))); + } else { + QDomElement sub = rowEl.firstChildElement(col); + row.append(QVariant(sub.isNull() ? QString() : sub.text())); + } + } + node->rows.append(std::move(row)); + } + + // Also create child nodes for each repeating element (for deep navigation) + for (int i = 0; i < elems.size(); ++i) { + const auto &rowEl = elems[i]; + // Check if element has nested elements (not just text children) + bool hasNestedElements = false; + QDomNodeList rowChildren = rowEl.childNodes(); + for (int j = 0; j < rowChildren.count(); ++j) { + if (rowChildren.at(j).isElement()) { + QDomElement childEl = rowChildren.at(j).toElement(); + // Check if the child itself has children (deep nesting) + if (childEl.hasChildNodes() && !childEl.firstChildElement().isNull()) { + hasNestedElements = true; + break; + } + } + } + if (hasNestedElements) { + auto *child = node->addChild( + QStringLiteral("%1[%2]").arg(tabularTag).arg(i)); + buildTree(child, rowEl); + } + } + + // Non-repeating elements → also add as child nodes + for (auto it = tagElements.begin(); it != tagElements.end(); ++it) { + if (it.key() == tabularTag) continue; + for (const auto &el : it.value()) { + auto *child = node->addChild(el.tagName()); + buildTree(child, el); + } + } + } else { + // No repeating elements → either leaf text or mixed content + // Collect all child elements as Key | Value pairs or child nodes + QStringList scalarNames; + QStringList scalarValues; + + for (int i = 0; i < children.count(); ++i) { + QDomNode child = children.at(i); + if (!child.isElement()) continue; + + QDomElement childEl = child.toElement(); + + // If element has child elements itself, make it a tree node + if (!childEl.firstChildElement().isNull()) { + auto *childNode = node->addChild(childEl.tagName()); + buildTree(childNode, childEl); + } else { + // Leaf element → grid row + scalarNames.append(childEl.tagName()); + scalarValues.append(childEl.text()); + } + } + + // Add attributes to grid too + QDomNamedNodeMap attrs = elem.attributes(); + for (int a = 0; a < attrs.count(); ++a) { + scalarNames.prepend(QStringLiteral("@") + attrs.item(a).toAttr().name()); + scalarValues.prepend(attrs.item(a).toAttr().value()); + } + + if (!scalarNames.isEmpty()) { + node->columnNames = {QStringLiteral("Name"), QStringLiteral("Value")}; + for (int i = 0; i < scalarNames.size(); ++i) { + node->rows.append({QVariant(scalarNames[i]), QVariant(scalarValues[i])}); + } + } + } +} + +bool XmlEngine::parse(const QByteArray &data) +{ + QString errorMsg; + int errorLine, errorCol; + if (!m_originalDoc.setContent(data, &errorMsg, &errorLine, &errorCol)) + return false; + + m_rawText = m_originalDoc.toString(2); + + QDomElement rootEl = m_originalDoc.documentElement(); + if (rootEl.isNull()) return false; + + m_root = std::make_unique<DocumentNode>(rootEl.tagName()); + buildTree(m_root.get(), rootEl); + + return true; +} + +QDomElement XmlEngine::treeToXml(QDomDocument &doc, const DocumentNode *node) const +{ + QDomElement elem = doc.createElement(node->name.contains('[') + ? node->name.section('[', 0, 0) : node->name); + + // Grid data: Name | Value → child elements or attributes + if (node->columnNames.size() == 2 + && node->columnNames[0] == QStringLiteral("Name")) { + for (const auto &row : node->rows) { + QString name = row[0].toString(); + QString value = row[1].toString(); + if (name.startsWith('@')) { + elem.setAttribute(name.mid(1), value); + } else { + QDomElement child = doc.createElement(name); + child.appendChild(doc.createTextNode(value)); + elem.appendChild(child); + } + } + } + // Tabular grid → repeating child elements + else if (!node->columnNames.isEmpty()) { + // Determine the tag name from the first column or node context + QString rowTag = node->name; + for (const auto &row : node->rows) { + QDomElement rowElem = doc.createElement(rowTag); + for (int c = 0; c < node->columnNames.size() && c < row.size(); ++c) { + QString col = node->columnNames[c]; + QString val = row[c].toString(); + if (col.startsWith('@')) { + if (!val.isEmpty()) + rowElem.setAttribute(col.mid(1), val); + } else { + QDomElement child = doc.createElement(col); + child.appendChild(doc.createTextNode(val)); + rowElem.appendChild(child); + } + } + elem.appendChild(rowElem); + } + } + + // Child nodes + for (const auto *child : node->children) { + elem.appendChild(treeToXml(doc, child)); + } + + return elem; +} + +QByteArray XmlEngine::serialize() const +{ + if (!m_root) return {}; + + QDomDocument doc; + QDomProcessingInstruction pi = doc.createProcessingInstruction( + QStringLiteral("xml"), QStringLiteral("version=\"1.0\" encoding=\"UTF-8\"")); + doc.appendChild(pi); + doc.appendChild(treeToXml(doc, m_root.get())); + + return doc.toByteArray(2); +} + +std::unique_ptr<TextFormatEngine> createXmlEngine() +{ + return std::make_unique<XmlEngine>(); +} diff --git a/wlx/structview/src/YamlEngine.cpp b/wlx/structview/src/YamlEngine.cpp new file mode 100644 index 0000000..7689b9c --- /dev/null +++ b/wlx/structview/src/YamlEngine.cpp @@ -0,0 +1,229 @@ +#include "TextFormatEngine.h" + +#include <yaml-cpp/yaml.h> +#include <sstream> + +/// YAML engine: builds a document tree from YAML mappings/sequences. +/// +/// - Mapping → child nodes for nested mappings, grid rows for scalars +/// - Sequence → numbered children [0], [1], ... +/// - Scalar → leaf value in parent's grid +class YamlEngine : public TextFormatEngine { +public: + bool parse(const QByteArray &data) override; + DocumentNode *rootNode() const override { return m_root.get(); } + QByteArray serialize() const override; + QString rawText() const override { return m_rawText; } + QString formatName() const override { return QStringLiteral("YAML"); } + +private: + void buildTree(DocumentNode *node, const YAML::Node &yamlNode); + YAML::Node treeToYaml(const DocumentNode *node) const; + + std::unique_ptr<DocumentNode> m_root; + QString m_rawText; +}; + +void YamlEngine::buildTree(DocumentNode *node, const YAML::Node &yamlNode) +{ + if (yamlNode.IsMap()) { + QStringList scalarKeys; + QStringList scalarValues; + QList<QPair<QString, YAML::Node>> containers; + + for (auto it = yamlNode.begin(); it != yamlNode.end(); ++it) { + QString key = QString::fromStdString(it->first.as<std::string>()); + const YAML::Node &val = it->second; + + if (val.IsMap() || val.IsSequence()) { + containers.append({key, val}); + } else { + scalarKeys.append(key); + scalarValues.append( + val.IsNull() ? QStringLiteral("null") + : QString::fromStdString(val.as<std::string>())); + } + } + + if (!scalarKeys.isEmpty()) { + node->columnNames = {QStringLiteral("Key"), QStringLiteral("Value")}; + for (int i = 0; i < scalarKeys.size(); ++i) { + node->rows.append({QVariant(scalarKeys[i]), QVariant(scalarValues[i])}); + } + } + + for (const auto &[key, val] : containers) { + auto *child = node->addChild(key); + buildTree(child, val); + } + + } else if (yamlNode.IsSequence()) { + // Check if all elements are maps with shared keys (tabular) + bool allMaps = true; + QStringList columns; + QSet<QString> seen; + + for (size_t i = 0; i < yamlNode.size(); ++i) { + if (!yamlNode[i].IsMap()) { + allMaps = false; + break; + } + for (auto it = yamlNode[i].begin(); it != yamlNode[i].end(); ++it) { + QString key = QString::fromStdString(it->first.as<std::string>()); + if (!seen.contains(key)) { + seen.insert(key); + columns.append(key); + } + } + } + + if (allMaps && !columns.isEmpty()) { + // Tabular grid + node->columnNames = columns; + for (size_t i = 0; i < yamlNode.size(); ++i) { + QVector<QVariant> row; + row.reserve(columns.size()); + for (const auto &col : columns) { + auto val = yamlNode[i][col.toStdString()]; + if (val && val.IsScalar()) + row.append(QVariant(QString::fromStdString(val.as<std::string>()))); + else if (val && val.IsNull()) + row.append(QVariant(QStringLiteral("null"))); + else + row.append(QVariant()); + } + node->rows.append(std::move(row)); + } + } else { + // Check if all scalars + bool allScalar = true; + for (size_t i = 0; i < yamlNode.size(); ++i) { + if (!yamlNode[i].IsScalar() && !yamlNode[i].IsNull()) { + allScalar = false; + break; + } + } + + if (allScalar) { + node->columnNames = {QStringLiteral("Value")}; + for (size_t i = 0; i < yamlNode.size(); ++i) { + QString val = yamlNode[i].IsNull() + ? QStringLiteral("null") + : QString::fromStdString(yamlNode[i].as<std::string>()); + node->rows.append({QVariant(val)}); + } + } else { + // Mixed: numbered children + for (size_t i = 0; i < yamlNode.size(); ++i) { + auto *child = node->addChild(QStringLiteral("[%1]").arg(i)); + buildTree(child, yamlNode[i]); + } + } + } + } +} + +bool YamlEngine::parse(const QByteArray &data) +{ + try { + fprintf(stderr, "[structview/yaml] parse() called, data size=%d\n", data.size()); + m_rawText = QString::fromUtf8(data); + + YAML::Node yamlRoot = YAML::Load(data.toStdString()); + fprintf(stderr, "[structview/yaml] YAML::Load OK, type=%d IsNull=%d\n", + static_cast<int>(yamlRoot.Type()), yamlRoot.IsNull()); + if (yamlRoot.IsNull()) return false; + + m_root = std::make_unique<DocumentNode>(QStringLiteral("root")); + buildTree(m_root.get(), yamlRoot); + fprintf(stderr, "[structview/yaml] parse() succeeded\n"); + return true; + + } catch (const YAML::Exception &e) { + fprintf(stderr, "[structview/yaml] YAML::Exception: %s\n", e.what()); + return false; + } catch (const std::exception &e) { + fprintf(stderr, "[structview/yaml] std::exception: %s\n", e.what()); + return false; + } catch (...) { + fprintf(stderr, "[structview/yaml] unknown exception\n"); + return false; + } +} + +YAML::Node YamlEngine::treeToYaml(const DocumentNode *node) const +{ + // Key | Value grid → map + if (node->columnNames.size() == 2 + && node->columnNames[0] == QStringLiteral("Key")) { + YAML::Node map(YAML::NodeType::Map); + for (const auto &row : node->rows) { + std::string key = row[0].toString().toStdString(); + std::string val = row[1].toString().toStdString(); + map[key] = val; + } + // Add child containers + for (const auto *child : node->children) { + map[child->name.toStdString()] = treeToYaml(child); + } + return map; + } + + // Value only → sequence + if (node->columnNames.size() == 1 + && node->columnNames[0] == QStringLiteral("Value")) { + YAML::Node seq(YAML::NodeType::Sequence); + for (const auto &row : node->rows) { + seq.push_back(row[0].toString().toStdString()); + } + return seq; + } + + // Tabular → sequence of maps + if (!node->columnNames.isEmpty()) { + YAML::Node seq(YAML::NodeType::Sequence); + for (const auto &row : node->rows) { + YAML::Node map(YAML::NodeType::Map); + for (int c = 0; c < node->columnNames.size() && c < row.size(); ++c) { + map[node->columnNames[c].toStdString()] = row[c].toString().toStdString(); + } + seq.push_back(map); + } + return seq; + } + + // Container with children only + if (!node->children.isEmpty()) { + bool isArray = node->children[0]->name.startsWith('['); + if (isArray) { + YAML::Node seq(YAML::NodeType::Sequence); + for (const auto *child : node->children) + seq.push_back(treeToYaml(child)); + return seq; + } else { + YAML::Node map(YAML::NodeType::Map); + for (const auto *child : node->children) + map[child->name.toStdString()] = treeToYaml(child); + return map; + } + } + + return YAML::Node(); +} + +QByteArray YamlEngine::serialize() const +{ + if (!m_root) return {}; + + YAML::Node yamlRoot = treeToYaml(m_root.get()); + + YAML::Emitter out; + out << yamlRoot; + + return QByteArray(out.c_str()); +} + +std::unique_ptr<TextFormatEngine> createYamlEngine() +{ + return std::make_unique<YamlEngine>(); +} diff --git a/wlx/structview/src/wlx_entry.cpp b/wlx/structview/src/wlx_entry.cpp new file mode 100644 index 0000000..8188c6b --- /dev/null +++ b/wlx/structview/src/wlx_entry.cpp @@ -0,0 +1,164 @@ +#include <QApplication> +#include <QClipboard> +#include <QWidget> +#include <QTableView> + +#include <wlxbase_wlqt/FocusManager.h> +#include <wlxbase_wlqt/EditableGridWidget.h> +#include <wlxbase_wlqt/CrashLogger.h> + +#include "wlxplugin.h" +#include "StructViewWidget.h" + +// --------------------------------------------------------------------------- +// WLX Plugin Entry Points — all wrapped with WLX_TRY/WLX_CATCH +// --------------------------------------------------------------------------- + +HWND DCPCALL ListLoad(HWND ParentWin, char* FileToLoad, int ShowFlags) +{ + WLX_TRY { + Q_UNUSED(ShowFlags); + fprintf(stderr, "[structview] ListLoad called: %s\n", FileToLoad); + fflush(stderr); + + if (!QApplication::instance()) + return nullptr; + + auto *widget = new StructViewWidget(reinterpret_cast<QWidget*>(ParentWin)); + fprintf(stderr, "[structview] Widget created, calling loadFile\n"); + fflush(stderr); + + if (!widget->loadFile(QString::fromUtf8(FileToLoad))) { + fprintf(stderr, "[structview] loadFile FAILED for: %s\n", FileToLoad); + fflush(stderr); + delete widget; + return nullptr; + } + + fprintf(stderr, "[structview] loadFile OK, showing widget\n"); + fflush(stderr); + widget->show(); + return reinterpret_cast<HWND>(widget); + } WLX_CATCH("ListLoad"); + return nullptr; +} + +void DCPCALL ListCloseWindow(HWND ListWin) +{ + WLX_TRY { + fprintf(stderr, "[structview] ListCloseWindow\n"); + fflush(stderr); + auto *widget = reinterpret_cast<StructViewWidget*>(ListWin); + delete widget; + } WLX_CATCH("ListCloseWindow"); +} + +int DCPCALL ListSendCommand(HWND ListWin, int Command, int Parameter) +{ + WLX_TRY { + auto *widget = reinterpret_cast<StructViewWidget*>(ListWin); + + switch (Command) { + case lc_copy: { + QString text = widget->getSelectionAsText('\t'); + if (text.isEmpty()) return LISTPLUGIN_ERROR; + QApplication::clipboard()->setText(text); + break; + } + case lc_selectall: + if (widget->grid() && widget->grid()->view()) + widget->grid()->view()->selectAll(); + break; + case lc_focus: + if (Parameter) { + widget->focusManager()->setActive(true); + if (widget->grid() && widget->grid()->view()) + widget->grid()->view()->setFocus(Qt::OtherFocusReason); + } else { + widget->focusManager()->setActive(false); + if (QWidget *fw = QApplication::focusWidget()) { + if (fw == widget || widget->isAncestorOf(fw)) + fw->clearFocus(); + } + } + break; + default: + return LISTPLUGIN_ERROR; + } + return LISTPLUGIN_OK; + } WLX_CATCH("ListSendCommand"); + return LISTPLUGIN_ERROR; +} + +int DCPCALL ListSearchText(HWND ListWin, char* SearchString, int SearchParameter) +{ + WLX_TRY { + auto *widget = reinterpret_cast<StructViewWidget*>(ListWin); + if (!widget->grid() || !widget->grid()->view() || !widget->grid()->view()->model()) + return LISTPLUGIN_ERROR; + + QAbstractItemModel *model = widget->grid()->view()->model(); + QString needle = QString::fromUtf8(SearchString); + QTableView *view = widget->grid()->view(); + + // Track search state + QString prev = view->property("needle").value<QString>(); + view->setProperty("needle", needle); + + QModelIndex current = view->currentIndex(); + int startRow = 0, startCol = 0; + if (current.isValid()) { + startRow = current.row(); + startCol = current.column(); + } + + bool first = (needle != prev) || (SearchParameter & lcs_findfirst); + bool backward = (SearchParameter & lcs_backwards); + + if (!first) { + if (backward) { + startCol--; + if (startCol < 0) { startCol = model->columnCount() - 1; startRow--; } + } else { + startCol++; + if (startCol >= model->columnCount()) { startCol = 0; startRow++; } + } + } + + int rows = model->rowCount(); + int cols = model->columnCount(); + int total = rows * cols; + + for (int i = 0; i < total; ++i) { + int offset = backward ? -i : i; + int linearStart = startRow * cols + startCol; + int linearIdx = (linearStart + offset + total) % total; + int r = linearIdx / cols; + int c = linearIdx % cols; + + QModelIndex idx = model->index(r, c); + QString cellText = model->data(idx, Qt::DisplayRole).toString(); + + bool match = (SearchParameter & lcs_matchcase) + ? cellText.contains(needle, Qt::CaseSensitive) + : cellText.contains(needle, Qt::CaseInsensitive); + + if (match) { + view->setCurrentIndex(idx); + view->scrollTo(idx); + return LISTPLUGIN_OK; + } + } + + return LISTPLUGIN_ERROR; + } WLX_CATCH("ListSearchText"); + return LISTPLUGIN_ERROR; +} + +void DCPCALL ListGetDetectString(char* DetectString, int maxlen) +{ + snprintf(DetectString, maxlen - 1, + "EXT=\"JSON\" | EXT=\"XML\" | EXT=\"INI\" | EXT=\"CBOR\" | " + "EXT=\"YAML\" | EXT=\"YML\" | EXT=\"TOML\" | " + "EXT=\"DESKTOP\" | EXT=\"INF\""); +} diff --git a/wlx/wayland_qt_base/build/.qt/QtDeploySupport.cmake b/wlx/wayland_qt_base/build/.qt/QtDeploySupport.cmake new file mode 100644 index 0000000..b2f6f77 --- /dev/null +++ b/wlx/wayland_qt_base/build/.qt/QtDeploySupport.cmake @@ -0,0 +1,71 @@ +cmake_minimum_required(VERSION 3.16...3.21) + +# These are part of the public API. Projects should use them to provide a +# consistent set of prefix-relative destinations. +if(NOT QT_DEPLOY_BIN_DIR) + set(QT_DEPLOY_BIN_DIR "bin") +endif() +if(NOT QT_DEPLOY_LIBEXEC_DIR) + set(QT_DEPLOY_LIBEXEC_DIR "libexec") +endif() +if(NOT QT_DEPLOY_LIB_DIR) + set(QT_DEPLOY_LIB_DIR "lib") +endif() +if(NOT QT_DEPLOY_PLUGINS_DIR) + set(QT_DEPLOY_PLUGINS_DIR "lib/qt6/plugins") +endif() +if(NOT QT_DEPLOY_QML_DIR) + set(QT_DEPLOY_QML_DIR "lib/qt6/qml") +endif() +if(NOT QT_DEPLOY_TRANSLATIONS_DIR) + set(QT_DEPLOY_TRANSLATIONS_DIR "share/qt6/translations") +endif() +if(NOT QT_DEPLOY_PREFIX) + set(QT_DEPLOY_PREFIX "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}") +endif() +if(QT_DEPLOY_PREFIX STREQUAL "") + set(QT_DEPLOY_PREFIX .) +endif() +if(NOT QT_DEPLOY_IGNORED_LIB_DIRS) + set(QT_DEPLOY_IGNORED_LIB_DIRS "/lib") +endif() + +# These are internal implementation details. They may be removed at any time. +set(__QT_DEPLOY_SYSTEM_NAME "Linux") +set(__QT_DEPLOY_SHARED_LIBRARY_SUFFIX ".so") +set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON") +set(__QT_DEPLOY_TOOL "GRD") +set(__QT_DEPLOY_IMPL_DIR "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/.qt") +set(__QT_DEPLOY_VERBOSE "") +set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6") +set(__QT_LIBINFIX "") +set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "0") +set(__QT_DEPLOY_ACTIVE_CONFIG "") +set(__QT_NO_CREATE_VERSIONLESS_FUNCTIONS "") +set(__QT_DEFAULT_MAJOR_VERSION "6") +set(__QT_DEPLOY_QT_ADDITIONAL_PACKAGES_PREFIX_PATH "") +set(__QT_DEPLOY_QT_INSTALL_PREFIX "/usr") +set(__QT_DEPLOY_QT_INSTALL_BINS "lib/qt6/bin") +set(__QT_DEPLOY_QT_INSTALL_DATA "share/qt6") +set(__QT_DEPLOY_QT_INSTALL_DESCRIPTIONSDIR "lib/qt6/modules") +set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "lib/qt6") +set(__QT_DEPLOY_QT_INSTALL_PLUGINS "lib/qt6/plugins") +set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "share/qt6/translations") +set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "/usr/lib/qt6/bin/qtpaths6") +set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "ON") +set(__QT_DEPLOY_USE_PATCHELF "") +set(__QT_DEPLOY_PATCHELF_EXECUTABLE "") +set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "FALSE") +set(__QT_DEPLOY_QT_DEBUG_POSTFIX "") + +# Define the CMake commands to be made available during deployment. +set(__qt_deploy_support_files + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/.qt/QtDeployTargets.cmake" + "/usr/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake" +) +foreach(__qt_deploy_support_file IN LISTS __qt_deploy_support_files) + include("${__qt_deploy_support_file}") +endforeach() + +unset(__qt_deploy_support_file) +unset(__qt_deploy_support_files) diff --git a/wlx/wayland_qt_base/build/.qt/QtDeployTargets.cmake b/wlx/wayland_qt_base/build/.qt/QtDeployTargets.cmake new file mode 100644 index 0000000..e833112 --- /dev/null +++ b/wlx/wayland_qt_base/build/.qt/QtDeployTargets.cmake @@ -0,0 +1,2 @@ +set(__QT_DEPLOY_TARGET_wayland_qt_base_FILE /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/libwayland_qt_base.a) +set(__QT_DEPLOY_TARGET_wayland_qt_base_TYPE STATIC_LIBRARY) diff --git a/wlx/wayland_qt_base/build/CMakeCache.txt b/wlx/wayland_qt_base/build/CMakeCache.txt new file mode 100644 index 0000000..b94d5d0 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeCache.txt @@ -0,0 +1,1500 @@ +# This is the CMakeCache file. +# For build in directory: /home/pplupo/repos/plugins/wlx/wayland_qt_base/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_COMPAT_VERSION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=wayland_qt_base + +//Value Computed by CMake +CMAKE_PROJECT_SPDX_LICENSE:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the archiver during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the archiver during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the archiver during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the archiver during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the archiver during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Path to a file. +OPENGL_EGL_INCLUDE_DIR:PATH=/usr/include + +//Path to a file. +OPENGL_GLES2_INCLUDE_DIR:PATH=/usr/include + +//Path to a file. +OPENGL_GLES3_INCLUDE_DIR:PATH=/usr/include + +//Path to a file. +OPENGL_GLU_INCLUDE_DIR:PATH=/usr/include + +//Path to a file. +OPENGL_GLX_INCLUDE_DIR:PATH=/usr/include + +//Path to a file. +OPENGL_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +OPENGL_egl_LIBRARY:FILEPATH=/usr/lib/libEGL.so + +//Path to a library. +OPENGL_gles2_LIBRARY:FILEPATH=/usr/lib/libGLESv2.so + +//Path to a library. +OPENGL_gles3_LIBRARY:FILEPATH=/usr/lib/libGLESv2.so + +//Path to a library. +OPENGL_glu_LIBRARY:FILEPATH=/usr/lib/libGLU.so + +//Path to a library. +OPENGL_glx_LIBRARY:FILEPATH=/usr/lib/libGLX.so + +//Path to a library. +OPENGL_opengl_LIBRARY:FILEPATH=/usr/lib/libOpenGL.so + +//Path to a file. +OPENGL_xmesa_INCLUDE_DIR:PATH=OPENGL_xmesa_INCLUDE_DIR-NOTFOUND + +//Arguments to supply to pkg-config +PKG_CONFIG_ARGN:STRING= + +//pkg-config executable +PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config + +//Additional directories where find(Qt6 ...) host Qt components +// are searched +QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH:STRING= + +//Additional directories where find(Qt6 ...) components are searched +QT_ADDITIONAL_PACKAGES_PREFIX_PATH:STRING= + +//The directory containing a CMake configuration file for Qt6CoreTools. +Qt6CoreTools_DIR:PATH=/usr/lib/cmake/Qt6CoreTools + +//The directory containing a CMake configuration file for Qt6Core. +Qt6Core_DIR:PATH=/usr/lib/cmake/Qt6Core + +//The directory containing a CMake configuration file for Qt6DBusTools. +Qt6DBusTools_DIR:PATH=/usr/lib/cmake/Qt6DBusTools + +//The directory containing a CMake configuration file for Qt6DBus. +Qt6DBus_DIR:PATH=/usr/lib/cmake/Qt6DBus + +//The directory containing a CMake configuration file for Qt6GuiTools. +Qt6GuiTools_DIR:PATH=/usr/lib/cmake/Qt6GuiTools + +//The directory containing a CMake configuration file for Qt6Gui. +Qt6Gui_DIR:PATH=/usr/lib/cmake/Qt6Gui + +//The directory containing a CMake configuration file for Qt6WidgetsTools. +Qt6WidgetsTools_DIR:PATH=/usr/lib/cmake/Qt6WidgetsTools + +//The directory containing a CMake configuration file for Qt6Widgets. +Qt6Widgets_DIR:PATH=/usr/lib/cmake/Qt6Widgets + +//The directory containing a CMake configuration file for Qt6. +Qt6_DIR:PATH=/usr/lib/cmake/Qt6 + +//Path to a program. +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE:FILEPATH=/usr/bin/glslangValidator + +//Path to a program. +Vulkan_GLSLC_EXECUTABLE:FILEPATH=/usr/bin/glslc + +//Path to a file. +Vulkan_INCLUDE_DIR:PATH=Vulkan_INCLUDE_DIR-NOTFOUND + +//Path to a library. +Vulkan_LIBRARY:FILEPATH=/usr/lib/libvulkan.so + +//Path to a library. +pkgcfg_lib_GLIB2_glib-2.0:FILEPATH=/usr/lib/libglib-2.0.so + +//Value Computed by CMake +wayland_qt_base_BINARY_DIR:STATIC=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build + +//Value Computed by CMake +wayland_qt_base_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +wayland_qt_base_SOURCE_DIR:STATIC=/home/pplupo/repos/plugins/wlx/wayland_qt_base + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=3 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/pplupo/repos/plugins/wlx/wayland_qt_base +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//Name of CMakeLists files to read +CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding OpenGL +FIND_PACKAGE_MESSAGE_DETAILS_OpenGL:INTERNAL=[/usr/lib/libOpenGL.so][/usr/lib/libGLX.so][/usr/include][ ][v()] +//Details about finding PkgConfig +FIND_PACKAGE_MESSAGE_DETAILS_PkgConfig:INTERNAL=[/usr/bin/pkg-config][v2.5.1()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//Details about finding WrapAtomic +FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic:INTERNAL=[1][v()] +//Details about finding WrapOpenGL +FIND_PACKAGE_MESSAGE_DETAILS_WrapOpenGL:INTERNAL=[ON][v()] +GLIB2_CFLAGS:INTERNAL=-I/usr/include/glib-2.0;-I/usr/lib/glib-2.0/include;-I/usr/include/sysprof-6;-pthread;-I/usr/include +GLIB2_CFLAGS_I:INTERNAL= +GLIB2_CFLAGS_OTHER:INTERNAL=-pthread +GLIB2_FOUND:INTERNAL=1 +GLIB2_INCLUDEDIR:INTERNAL=/usr/include +GLIB2_INCLUDE_DIRS:INTERNAL=/usr/include/glib-2.0;/usr/lib/glib-2.0/include;/usr/include/sysprof-6;/usr/include +GLIB2_LDFLAGS:INTERNAL=-L/usr/lib;-lglib-2.0 +GLIB2_LDFLAGS_OTHER:INTERNAL= +GLIB2_LIBDIR:INTERNAL=/usr/lib +GLIB2_LIBRARIES:INTERNAL=glib-2.0 +GLIB2_LIBRARY_DIRS:INTERNAL=/usr/lib +GLIB2_LIBS:INTERNAL= +GLIB2_LIBS_L:INTERNAL= +GLIB2_LIBS_OTHER:INTERNAL= +GLIB2_LIBS_PATHS:INTERNAL= +GLIB2_MODULE_NAME:INTERNAL=glib-2.0 +GLIB2_PREFIX:INTERNAL=/usr +GLIB2_STATIC_CFLAGS:INTERNAL=-I/usr/include/glib-2.0;-I/usr/lib/glib-2.0/include;-I/usr/include/sysprof-6;-pthread;-I/usr/include +GLIB2_STATIC_CFLAGS_I:INTERNAL= +GLIB2_STATIC_CFLAGS_OTHER:INTERNAL=-pthread +GLIB2_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/glib-2.0;/usr/lib/glib-2.0/include;/usr/include/sysprof-6;/usr/include +GLIB2_STATIC_LDFLAGS:INTERNAL=-L/usr/lib;-lglib-2.0;-latomic;-lm;-lsysprof-capture-4;-Wl,-z,nodelete;-pthread;-lpcre2-8;-pthread;-lpthread +GLIB2_STATIC_LDFLAGS_OTHER:INTERNAL=-Wl,-z,nodelete;-pthread;-pthread +GLIB2_STATIC_LIBDIR:INTERNAL= +GLIB2_STATIC_LIBRARIES:INTERNAL=glib-2.0;atomic;m;sysprof-capture-4;pcre2-8;pthread +GLIB2_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib +GLIB2_STATIC_LIBS:INTERNAL= +GLIB2_STATIC_LIBS_L:INTERNAL= +GLIB2_STATIC_LIBS_OTHER:INTERNAL= +GLIB2_STATIC_LIBS_PATHS:INTERNAL= +GLIB2_VERSION:INTERNAL=2.88.1 +GLIB2_glib-2.0_INCLUDEDIR:INTERNAL= +GLIB2_glib-2.0_LIBDIR:INTERNAL= +GLIB2_glib-2.0_PREFIX:INTERNAL= +GLIB2_glib-2.0_VERSION:INTERNAL= +//Test HAVE_STDATOMIC +HAVE_STDATOMIC:INTERNAL=1 +//ADVANCED property for variable: OPENGL_EGL_INCLUDE_DIR +OPENGL_EGL_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_GLES2_INCLUDE_DIR +OPENGL_GLES2_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_GLES3_INCLUDE_DIR +OPENGL_GLES3_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_GLU_INCLUDE_DIR +OPENGL_GLU_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_GLX_INCLUDE_DIR +OPENGL_GLX_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_INCLUDE_DIR +OPENGL_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_egl_LIBRARY +OPENGL_egl_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_gles2_LIBRARY +OPENGL_gles2_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_gles3_LIBRARY +OPENGL_gles3_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_glu_LIBRARY +OPENGL_glu_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_glx_LIBRARY +OPENGL_glx_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_opengl_LIBRARY +OPENGL_opengl_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_xmesa_INCLUDE_DIR +OPENGL_xmesa_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PKG_CONFIG_ARGN +PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE +PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1 +//Qt feature: abstractbutton (from target Qt6::Widgets) +QT_FEATURE_abstractbutton:INTERNAL=ON +//Qt feature: abstractslider (from target Qt6::Widgets) +QT_FEATURE_abstractslider:INTERNAL=ON +//Qt feature: accept4 (from target Qt6::Core) +QT_FEATURE_accept4:INTERNAL=ON +//Qt feature: accessibility (from target Qt6::Gui) +QT_FEATURE_accessibility:INTERNAL=ON +//Qt feature: accessibility_atspi_bridge (from target Qt6::Gui) +QT_FEATURE_accessibility_atspi_bridge:INTERNAL=ON +//Qt feature: action (from target Qt6::Gui) +QT_FEATURE_action:INTERNAL=ON +//Qt feature: aesni (from target Qt6::Core) +QT_FEATURE_aesni:INTERNAL=ON +//Qt feature: android_16kb_pages (from target Qt6::Core) +QT_FEATURE_android_16kb_pages:INTERNAL=OFF +//Qt feature: android_style_assets (from target Qt6::Core) +QT_FEATURE_android_style_assets:INTERNAL=OFF +//Qt feature: animation (from target Qt6::Core) +QT_FEATURE_animation:INTERNAL=ON +//Qt feature: appstore_compliant (from target Qt6::Core) +QT_FEATURE_appstore_compliant:INTERNAL=OFF +//Qt feature: arm_crc32 (from target Qt6::Core) +QT_FEATURE_arm_crc32:INTERNAL=OFF +//Qt feature: arm_crypto (from target Qt6::Core) +QT_FEATURE_arm_crypto:INTERNAL=OFF +//Qt feature: arm_sve (from target Qt6::Core) +QT_FEATURE_arm_sve:INTERNAL=OFF +//Qt feature: async_io (from target Qt6::Core) +QT_FEATURE_async_io:INTERNAL=ON +//Qt feature: avx (from target Qt6::Core) +QT_FEATURE_avx:INTERNAL=ON +//Qt feature: avx2 (from target Qt6::Core) +QT_FEATURE_avx2:INTERNAL=ON +//Qt feature: avx512bw (from target Qt6::Core) +QT_FEATURE_avx512bw:INTERNAL=ON +//Qt feature: avx512cd (from target Qt6::Core) +QT_FEATURE_avx512cd:INTERNAL=ON +//Qt feature: avx512dq (from target Qt6::Core) +QT_FEATURE_avx512dq:INTERNAL=ON +//Qt feature: avx512er (from target Qt6::Core) +QT_FEATURE_avx512er:INTERNAL=ON +//Qt feature: avx512f (from target Qt6::Core) +QT_FEATURE_avx512f:INTERNAL=ON +//Qt feature: avx512ifma (from target Qt6::Core) +QT_FEATURE_avx512ifma:INTERNAL=ON +//Qt feature: avx512pf (from target Qt6::Core) +QT_FEATURE_avx512pf:INTERNAL=ON +//Qt feature: avx512vbmi (from target Qt6::Core) +QT_FEATURE_avx512vbmi:INTERNAL=ON +//Qt feature: avx512vbmi2 (from target Qt6::Core) +QT_FEATURE_avx512vbmi2:INTERNAL=ON +//Qt feature: avx512vl (from target Qt6::Core) +QT_FEATURE_avx512vl:INTERNAL=ON +//Qt feature: backtrace (from target Qt6::Core) +QT_FEATURE_backtrace:INTERNAL=ON +//Qt feature: broken_threadlocal_dtors (from target Qt6::Core) +QT_FEATURE_broken_threadlocal_dtors:INTERNAL=OFF +//Qt feature: buttongroup (from target Qt6::Widgets) +QT_FEATURE_buttongroup:INTERNAL=ON +//Qt feature: calendarwidget (from target Qt6::Widgets) +QT_FEATURE_calendarwidget:INTERNAL=ON +//Qt feature: cborstreamreader (from target Qt6::Core) +QT_FEATURE_cborstreamreader:INTERNAL=ON +//Qt feature: cborstreamwriter (from target Qt6::Core) +QT_FEATURE_cborstreamwriter:INTERNAL=ON +//Qt feature: checkbox (from target Qt6::Widgets) +QT_FEATURE_checkbox:INTERNAL=ON +//Qt feature: clipboard (from target Qt6::Gui) +QT_FEATURE_clipboard:INTERNAL=ON +//Qt feature: clock_gettime (from target Qt6::Core) +QT_FEATURE_clock_gettime:INTERNAL=ON +//Qt feature: clock_monotonic (from target Qt6::Core) +QT_FEATURE_clock_monotonic:INTERNAL=ON +//Qt feature: colordialog (from target Qt6::Widgets) +QT_FEATURE_colordialog:INTERNAL=ON +//Qt feature: colornames (from target Qt6::Gui) +QT_FEATURE_colornames:INTERNAL=ON +//Qt feature: columnview (from target Qt6::Widgets) +QT_FEATURE_columnview:INTERNAL=ON +//Qt feature: combobox (from target Qt6::Widgets) +QT_FEATURE_combobox:INTERNAL=ON +//Qt feature: commandlineparser (from target Qt6::Core) +QT_FEATURE_commandlineparser:INTERNAL=ON +//Qt feature: commandlinkbutton (from target Qt6::Widgets) +QT_FEATURE_commandlinkbutton:INTERNAL=ON +//Qt feature: completer (from target Qt6::Widgets) +QT_FEATURE_completer:INTERNAL=ON +//Qt feature: concatenatetablesproxymodel (from target Qt6::Core) +QT_FEATURE_concatenatetablesproxymodel:INTERNAL=ON +//Qt feature: concurrent (from target Qt6::Core) +QT_FEATURE_concurrent:INTERNAL=ON +//Qt feature: contextmenu (from target Qt6::Widgets) +QT_FEATURE_contextmenu:INTERNAL=ON +//Qt feature: copy_file_range (from target Qt6::Core) +QT_FEATURE_copy_file_range:INTERNAL=ON +//Qt feature: cpp_winrt (from target Qt6::Core) +QT_FEATURE_cpp_winrt:INTERNAL=OFF +//Qt feature: cross_compile (from target Qt6::Core) +QT_FEATURE_cross_compile:INTERNAL=OFF +//Qt feature: cssparser (from target Qt6::Gui) +QT_FEATURE_cssparser:INTERNAL=ON +//Qt feature: ctf (from target Qt6::Core) +QT_FEATURE_ctf:INTERNAL=OFF +//Qt feature: cursor (from target Qt6::Gui) +QT_FEATURE_cursor:INTERNAL=ON +//Qt feature: cxx11_future (from target Qt6::Core) +QT_FEATURE_cxx11_future:INTERNAL=ON +//Qt feature: cxx17_filesystem (from target Qt6::Core) +QT_FEATURE_cxx17_filesystem:INTERNAL=ON +//Qt feature: cxx20 (from target Qt6::Core) +QT_FEATURE_cxx20:INTERNAL=OFF +//Qt feature: cxx20_format (from target Qt6::Core) +QT_FEATURE_cxx20_format:INTERNAL=ON +//Qt feature: cxx23_stacktrace (from target Qt6::Core) +QT_FEATURE_cxx23_stacktrace:INTERNAL=OFF +//Qt feature: cxx2a (from target Qt6::Core) +QT_FEATURE_cxx2a:INTERNAL=OFF +//Qt feature: cxx2b (from target Qt6::Core) +QT_FEATURE_cxx2b:INTERNAL=OFF +//Qt feature: cxx2c (from target Qt6::Core) +QT_FEATURE_cxx2c:INTERNAL=OFF +//Qt feature: datawidgetmapper (from target Qt6::Widgets) +QT_FEATURE_datawidgetmapper:INTERNAL=ON +//Qt feature: datestring (from target Qt6::Core) +QT_FEATURE_datestring:INTERNAL=ON +//Qt feature: datetimeedit (from target Qt6::Widgets) +QT_FEATURE_datetimeedit:INTERNAL=ON +//Qt feature: datetimeparser (from target Qt6::Core) +QT_FEATURE_datetimeparser:INTERNAL=ON +//Qt feature: dbus (from target Qt6::Core) +QT_FEATURE_dbus:INTERNAL=ON +//Qt feature: dbus_linked (from target Qt6::Core) +QT_FEATURE_dbus_linked:INTERNAL=ON +//Qt feature: debug (from target Qt6::Core) +QT_FEATURE_debug:INTERNAL=OFF +//Qt feature: debug_and_release (from target Qt6::Core) +QT_FEATURE_debug_and_release:INTERNAL=OFF +//Qt feature: desktopservices (from target Qt6::Gui) +QT_FEATURE_desktopservices:INTERNAL=ON +//Qt feature: developer_build (from target Qt6::Core) +QT_FEATURE_developer_build:INTERNAL=OFF +//Qt feature: dial (from target Qt6::Widgets) +QT_FEATURE_dial:INTERNAL=ON +//Qt feature: dialog (from target Qt6::Widgets) +QT_FEATURE_dialog:INTERNAL=ON +//Qt feature: dialogbuttonbox (from target Qt6::Widgets) +QT_FEATURE_dialogbuttonbox:INTERNAL=ON +//Qt feature: direct2d (from target Qt6::Gui) +QT_FEATURE_direct2d:INTERNAL=OFF +//Qt feature: direct2d1_1 (from target Qt6::Gui) +QT_FEATURE_direct2d1_1:INTERNAL=OFF +//Qt feature: directfb (from target Qt6::Gui) +QT_FEATURE_directfb:INTERNAL=OFF +//Qt feature: directwrite (from target Qt6::Gui) +QT_FEATURE_directwrite:INTERNAL=OFF +//Qt feature: directwrite3 (from target Qt6::Gui) +QT_FEATURE_directwrite3:INTERNAL=OFF +//Qt feature: directwritecolrv1 (from target Qt6::Gui) +QT_FEATURE_directwritecolrv1:INTERNAL=OFF +//Qt feature: dladdr (from target Qt6::Core) +QT_FEATURE_dladdr:INTERNAL=ON +//Qt feature: dlopen (from target Qt6::Core) +QT_FEATURE_dlopen:INTERNAL=ON +//Qt feature: doc_snippets (from target Qt6::Core) +QT_FEATURE_doc_snippets:INTERNAL=OFF +//Qt feature: dockwidget (from target Qt6::Widgets) +QT_FEATURE_dockwidget:INTERNAL=ON +//Qt feature: doubleconversion (from target Qt6::Core) +QT_FEATURE_doubleconversion:INTERNAL=ON +//Qt feature: draganddrop (from target Qt6::Gui) +QT_FEATURE_draganddrop:INTERNAL=ON +//Qt feature: drm_atomic (from target Qt6::Gui) +QT_FEATURE_drm_atomic:INTERNAL=ON +//Qt feature: dup3 (from target Qt6::Core) +QT_FEATURE_dup3:INTERNAL=ON +//Qt feature: dynamicgl (from target Qt6::Gui) +QT_FEATURE_dynamicgl:INTERNAL=OFF +//Qt feature: easingcurve (from target Qt6::Core) +QT_FEATURE_easingcurve:INTERNAL=ON +//Qt feature: effects (from target Qt6::Widgets) +QT_FEATURE_effects:INTERNAL=ON +//Qt feature: egl (from target Qt6::Gui) +QT_FEATURE_egl:INTERNAL=ON +//Qt feature: egl_extension_platform_wayland (from target Qt6::Gui) +QT_FEATURE_egl_extension_platform_wayland:INTERNAL=ON +//Qt feature: egl_x11 (from target Qt6::Gui) +QT_FEATURE_egl_x11:INTERNAL=ON +//Qt feature: eglfs (from target Qt6::Gui) +QT_FEATURE_eglfs:INTERNAL=ON +//Qt feature: eglfs_brcm (from target Qt6::Gui) +QT_FEATURE_eglfs_brcm:INTERNAL=OFF +//Qt feature: eglfs_egldevice (from target Qt6::Gui) +QT_FEATURE_eglfs_egldevice:INTERNAL=ON +//Qt feature: eglfs_gbm (from target Qt6::Gui) +QT_FEATURE_eglfs_gbm:INTERNAL=ON +//Qt feature: eglfs_mali (from target Qt6::Gui) +QT_FEATURE_eglfs_mali:INTERNAL=OFF +//Qt feature: eglfs_openwfd (from target Qt6::Gui) +QT_FEATURE_eglfs_openwfd:INTERNAL=OFF +//Qt feature: eglfs_rcar (from target Qt6::Gui) +QT_FEATURE_eglfs_rcar:INTERNAL=OFF +//Qt feature: eglfs_viv (from target Qt6::Gui) +QT_FEATURE_eglfs_viv:INTERNAL=OFF +//Qt feature: eglfs_viv_wl (from target Qt6::Gui) +QT_FEATURE_eglfs_viv_wl:INTERNAL=OFF +//Qt feature: eglfs_vsp2 (from target Qt6::Gui) +QT_FEATURE_eglfs_vsp2:INTERNAL=OFF +//Qt feature: eglfs_x11 (from target Qt6::Gui) +QT_FEATURE_eglfs_x11:INTERNAL=ON +//Qt feature: elf_private_full_version (from target Qt6::Core) +QT_FEATURE_elf_private_full_version:INTERNAL=OFF +//Qt feature: emojisegmenter (from target Qt6::Gui) +QT_FEATURE_emojisegmenter:INTERNAL=ON +//Qt feature: enable_new_dtags (from target Qt6::Core) +QT_FEATURE_enable_new_dtags:INTERNAL=ON +//Qt feature: errormessage (from target Qt6::Widgets) +QT_FEATURE_errormessage:INTERNAL=ON +//Qt feature: etw (from target Qt6::Core) +QT_FEATURE_etw:INTERNAL=OFF +//Qt feature: evdev (from target Qt6::Gui) +QT_FEATURE_evdev:INTERNAL=ON +//Qt feature: f16c (from target Qt6::Core) +QT_FEATURE_f16c:INTERNAL=ON +//Qt feature: filedialog (from target Qt6::Widgets) +QT_FEATURE_filedialog:INTERNAL=ON +//Qt feature: filesystemiterator (from target Qt6::Core) +QT_FEATURE_filesystemiterator:INTERNAL=ON +//Qt feature: filesystemmodel (from target Qt6::Gui) +QT_FEATURE_filesystemmodel:INTERNAL=ON +//Qt feature: filesystemwatcher (from target Qt6::Core) +QT_FEATURE_filesystemwatcher:INTERNAL=ON +//Qt feature: fontcombobox (from target Qt6::Widgets) +QT_FEATURE_fontcombobox:INTERNAL=ON +//Qt feature: fontconfig (from target Qt6::Gui) +QT_FEATURE_fontconfig:INTERNAL=ON +//Qt feature: fontdialog (from target Qt6::Widgets) +QT_FEATURE_fontdialog:INTERNAL=ON +//Qt feature: force_asserts (from target Qt6::Core) +QT_FEATURE_force_asserts:INTERNAL=OFF +//Qt feature: force_bundled_libs (from target Qt6::Core) +QT_FEATURE_force_bundled_libs:INTERNAL=OFF +//Qt feature: force_debug_info (from target Qt6::Core) +QT_FEATURE_force_debug_info:INTERNAL=ON +//Qt feature: force_system_libs (from target Qt6::Core) +QT_FEATURE_force_system_libs:INTERNAL=OFF +//Qt feature: forkfd_pidfd (from target Qt6::Core) +QT_FEATURE_forkfd_pidfd:INTERNAL=ON +//Qt feature: formlayout (from target Qt6::Widgets) +QT_FEATURE_formlayout:INTERNAL=ON +//Qt feature: framework (from target Qt6::Core) +QT_FEATURE_framework:INTERNAL=OFF +//Qt feature: freetype (from target Qt6::Gui) +QT_FEATURE_freetype:INTERNAL=ON +//Qt feature: fscompleter (from target Qt6::Widgets) +QT_FEATURE_fscompleter:INTERNAL=ON +//Qt feature: futimens (from target Qt6::Core) +QT_FEATURE_futimens:INTERNAL=ON +//Qt feature: future (from target Qt6::Core) +QT_FEATURE_future:INTERNAL=ON +//Qt feature: gbm (from target Qt6::Gui) +QT_FEATURE_gbm:INTERNAL=ON +//Qt feature: gc_binaries (from target Qt6::Core) +QT_FEATURE_gc_binaries:INTERNAL=OFF +//Qt feature: gestures (from target Qt6::Core) +QT_FEATURE_gestures:INTERNAL=ON +//Qt feature: getauxval (from target Qt6::Core) +QT_FEATURE_getauxval:INTERNAL=ON +//Qt feature: getentropy (from target Qt6::Core) +QT_FEATURE_getentropy:INTERNAL=ON +//Qt feature: gif (from target Qt6::Gui) +QT_FEATURE_gif:INTERNAL=ON +//Qt feature: glib (from target Qt6::Core) +QT_FEATURE_glib:INTERNAL=ON +//Qt feature: glibc_fortify_source (from target Qt6::Core) +QT_FEATURE_glibc_fortify_source:INTERNAL=ON +//Qt feature: graphicseffect (from target Qt6::Widgets) +QT_FEATURE_graphicseffect:INTERNAL=ON +//Qt feature: graphicsframecapture (from target Qt6::Gui) +QT_FEATURE_graphicsframecapture:INTERNAL=ON +//Qt feature: graphicsview (from target Qt6::Widgets) +QT_FEATURE_graphicsview:INTERNAL=ON +//Qt feature: groupbox (from target Qt6::Widgets) +QT_FEATURE_groupbox:INTERNAL=ON +//Qt feature: gtk3 (from target Qt6::Widgets) +QT_FEATURE_gtk3:INTERNAL=ON +//Qt feature: gui (from target Qt6::Core) +QT_FEATURE_gui:INTERNAL=ON +//Qt feature: harfbuzz (from target Qt6::Gui) +QT_FEATURE_harfbuzz:INTERNAL=ON +//Qt feature: highdpiscaling (from target Qt6::Gui) +QT_FEATURE_highdpiscaling:INTERNAL=ON +//Qt feature: hijricalendar (from target Qt6::Core) +QT_FEATURE_hijricalendar:INTERNAL=ON +//Qt feature: ico (from target Qt6::Gui) +QT_FEATURE_ico:INTERNAL=ON +//Qt feature: icu (from target Qt6::Core) +QT_FEATURE_icu:INTERNAL=ON +//Qt feature: identityproxymodel (from target Qt6::Core) +QT_FEATURE_identityproxymodel:INTERNAL=ON +//Qt feature: im (from target Qt6::Gui) +QT_FEATURE_im:INTERNAL=ON +//Qt feature: image_heuristic_mask (from target Qt6::Gui) +QT_FEATURE_image_heuristic_mask:INTERNAL=ON +//Qt feature: image_text (from target Qt6::Gui) +QT_FEATURE_image_text:INTERNAL=ON +//Qt feature: imageformat_bmp (from target Qt6::Gui) +QT_FEATURE_imageformat_bmp:INTERNAL=ON +//Qt feature: imageformat_jpeg (from target Qt6::Gui) +QT_FEATURE_imageformat_jpeg:INTERNAL=ON +//Qt feature: imageformat_png (from target Qt6::Gui) +QT_FEATURE_imageformat_png:INTERNAL=ON +//Qt feature: imageformat_ppm (from target Qt6::Gui) +QT_FEATURE_imageformat_ppm:INTERNAL=ON +//Qt feature: imageformat_xbm (from target Qt6::Gui) +QT_FEATURE_imageformat_xbm:INTERNAL=ON +//Qt feature: imageformat_xpm (from target Qt6::Gui) +QT_FEATURE_imageformat_xpm:INTERNAL=ON +//Qt feature: imageformatplugin (from target Qt6::Gui) +QT_FEATURE_imageformatplugin:INTERNAL=ON +//Qt feature: imageio_text_loading (from target Qt6::Gui) +QT_FEATURE_imageio_text_loading:INTERNAL=ON +//Qt feature: inotify (from target Qt6::Core) +QT_FEATURE_inotify:INTERNAL=ON +//Qt feature: inputdialog (from target Qt6::Widgets) +QT_FEATURE_inputdialog:INTERNAL=ON +//Qt feature: integrityfb (from target Qt6::Gui) +QT_FEATURE_integrityfb:INTERNAL=OFF +//Qt feature: integrityhid (from target Qt6::Gui) +QT_FEATURE_integrityhid:INTERNAL=OFF +//Qt feature: intelcet (from target Qt6::Core) +QT_FEATURE_intelcet:INTERNAL=ON +//Qt feature: islamiccivilcalendar (from target Qt6::Core) +QT_FEATURE_islamiccivilcalendar:INTERNAL=ON +//Qt feature: itemmodel (from target Qt6::Core) +QT_FEATURE_itemmodel:INTERNAL=ON +//Qt feature: itemviews (from target Qt6::Widgets) +QT_FEATURE_itemviews:INTERNAL=ON +//Qt feature: jalalicalendar (from target Qt6::Core) +QT_FEATURE_jalalicalendar:INTERNAL=ON +//Qt feature: jemalloc (from target Qt6::Core) +QT_FEATURE_jemalloc:INTERNAL=OFF +//Qt feature: journald (from target Qt6::Core) +QT_FEATURE_journald:INTERNAL=ON +//Qt feature: jpeg (from target Qt6::Gui) +QT_FEATURE_jpeg:INTERNAL=ON +//Qt feature: keysequenceedit (from target Qt6::Widgets) +QT_FEATURE_keysequenceedit:INTERNAL=ON +//Qt feature: kms (from target Qt6::Gui) +QT_FEATURE_kms:INTERNAL=ON +//Qt feature: label (from target Qt6::Widgets) +QT_FEATURE_label:INTERNAL=ON +//Qt feature: largefile (from target Qt6::Core) +QT_FEATURE_largefile:INTERNAL=ON +//Qt feature: lasx (from target Qt6::Core) +QT_FEATURE_lasx:INTERNAL=OFF +//Qt feature: lcdnumber (from target Qt6::Widgets) +QT_FEATURE_lcdnumber:INTERNAL=ON +//Qt feature: libcpp_hardening (from target Qt6::Core) +QT_FEATURE_libcpp_hardening:INTERNAL=OFF +//Qt feature: libinput (from target Qt6::Gui) +QT_FEATURE_libinput:INTERNAL=ON +//Qt feature: libinput_axis_api (from target Qt6::Gui) +QT_FEATURE_libinput_axis_api:INTERNAL=ON +//Qt feature: libinput_hires_wheel_support (from target Qt6::Gui) +QT_FEATURE_libinput_hires_wheel_support:INTERNAL=ON +//Qt feature: library (from target Qt6::Core) +QT_FEATURE_library:INTERNAL=ON +//Qt feature: libstdcpp_assertions (from target Qt6::Core) +QT_FEATURE_libstdcpp_assertions:INTERNAL=ON +//Qt feature: libudev (from target Qt6::Core) +QT_FEATURE_libudev:INTERNAL=ON +//Qt feature: liburing (from target Qt6::Core) +QT_FEATURE_liburing:INTERNAL=ON +//Qt feature: lineedit (from target Qt6::Widgets) +QT_FEATURE_lineedit:INTERNAL=ON +//Qt feature: linkat (from target Qt6::Core) +QT_FEATURE_linkat:INTERNAL=ON +//Qt feature: linuxfb (from target Qt6::Gui) +QT_FEATURE_linuxfb:INTERNAL=ON +//Qt feature: listview (from target Qt6::Widgets) +QT_FEATURE_listview:INTERNAL=ON +//Qt feature: listwidget (from target Qt6::Widgets) +QT_FEATURE_listwidget:INTERNAL=ON +//Qt feature: localtime_r (from target Qt6::Core) +QT_FEATURE_localtime_r:INTERNAL=ON +//Qt feature: localtime_s (from target Qt6::Core) +QT_FEATURE_localtime_s:INTERNAL=OFF +//Qt feature: lsx (from target Qt6::Core) +QT_FEATURE_lsx:INTERNAL=OFF +//Qt feature: ltcg (from target Qt6::Core) +QT_FEATURE_ltcg:INTERNAL=ON +//Qt feature: lttng (from target Qt6::Core) +QT_FEATURE_lttng:INTERNAL=OFF +//Qt feature: mainwindow (from target Qt6::Widgets) +QT_FEATURE_mainwindow:INTERNAL=ON +//Qt feature: mdiarea (from target Qt6::Widgets) +QT_FEATURE_mdiarea:INTERNAL=ON +//Qt feature: memmem (from target Qt6::Core) +QT_FEATURE_memmem:INTERNAL=ON +//Qt feature: memrchr (from target Qt6::Core) +QT_FEATURE_memrchr:INTERNAL=ON +//Qt feature: menu (from target Qt6::Widgets) +QT_FEATURE_menu:INTERNAL=ON +//Qt feature: menubar (from target Qt6::Widgets) +QT_FEATURE_menubar:INTERNAL=ON +//Qt feature: messagebox (from target Qt6::Widgets) +QT_FEATURE_messagebox:INTERNAL=ON +//Qt feature: metal (from target Qt6::Gui) +QT_FEATURE_metal:INTERNAL=OFF +//Qt feature: mimetype (from target Qt6::Core) +QT_FEATURE_mimetype:INTERNAL=ON +//Qt feature: mimetype_database (from target Qt6::Core) +QT_FEATURE_mimetype_database:INTERNAL=OFF +//Qt feature: mips_dsp (from target Qt6::Core) +QT_FEATURE_mips_dsp:INTERNAL=OFF +//Qt feature: mips_dspr2 (from target Qt6::Core) +QT_FEATURE_mips_dspr2:INTERNAL=OFF +//Qt feature: movie (from target Qt6::Gui) +QT_FEATURE_movie:INTERNAL=ON +//Qt feature: mtdev (from target Qt6::Gui) +QT_FEATURE_mtdev:INTERNAL=ON +//Qt feature: multiprocess (from target Qt6::Gui) +QT_FEATURE_multiprocess:INTERNAL=ON +//Qt feature: neon (from target Qt6::Core) +QT_FEATURE_neon:INTERNAL=OFF +//Qt feature: network (from target Qt6::Core) +QT_FEATURE_network:INTERNAL=ON +//Qt feature: no_direct_extern_access (from target Qt6::Core) +QT_FEATURE_no_direct_extern_access:INTERNAL=ON +//Qt feature: opengl (from target Qt6::Gui) +QT_FEATURE_opengl:INTERNAL=ON +//Qt feature: opengles2 (from target Qt6::Gui) +QT_FEATURE_opengles2:INTERNAL=OFF +//Qt feature: opengles3 (from target Qt6::Gui) +QT_FEATURE_opengles3:INTERNAL=OFF +//Qt feature: opengles31 (from target Qt6::Gui) +QT_FEATURE_opengles31:INTERNAL=OFF +//Qt feature: opengles32 (from target Qt6::Gui) +QT_FEATURE_opengles32:INTERNAL=OFF +//Qt feature: openssl (from target Qt6::Core) +QT_FEATURE_openssl:INTERNAL=ON +//Qt feature: openssl_hash (from target Qt6::Core) +QT_FEATURE_openssl_hash:INTERNAL=OFF +//Qt feature: openssl_linked (from target Qt6::Core) +QT_FEATURE_openssl_linked:INTERNAL=ON +//Qt feature: opensslv11 (from target Qt6::Core) +QT_FEATURE_opensslv11:INTERNAL=OFF +//Qt feature: opensslv30 (from target Qt6::Core) +QT_FEATURE_opensslv30:INTERNAL=ON +//Qt feature: openvg (from target Qt6::Gui) +QT_FEATURE_openvg:INTERNAL=OFF +//Qt feature: pcre2 (from target Qt6::Core) +QT_FEATURE_pcre2:INTERNAL=ON +//Qt feature: pdf (from target Qt6::Gui) +QT_FEATURE_pdf:INTERNAL=ON +//Qt feature: permissions (from target Qt6::Core) +QT_FEATURE_permissions:INTERNAL=ON +//Qt feature: picture (from target Qt6::Gui) +QT_FEATURE_picture:INTERNAL=ON +//Qt feature: pkg_config (from target Qt6::Core) +QT_FEATURE_pkg_config:INTERNAL=ON +//Qt feature: plugin_manifest (from target Qt6::Core) +QT_FEATURE_plugin_manifest:INTERNAL=ON +//Qt feature: png (from target Qt6::Gui) +QT_FEATURE_png:INTERNAL=ON +//Qt feature: poll_exit_on_error (from target Qt6::Core) +QT_FEATURE_poll_exit_on_error:INTERNAL=OFF +//Qt feature: poll_poll (from target Qt6::Core) +QT_FEATURE_poll_poll:INTERNAL=OFF +//Qt feature: poll_pollts (from target Qt6::Core) +QT_FEATURE_poll_pollts:INTERNAL=OFF +//Qt feature: poll_ppoll (from target Qt6::Core) +QT_FEATURE_poll_ppoll:INTERNAL=ON +//Qt feature: poll_select (from target Qt6::Core) +QT_FEATURE_poll_select:INTERNAL=OFF +//Qt feature: posix_fallocate (from target Qt6::Core) +QT_FEATURE_posix_fallocate:INTERNAL=ON +//Qt feature: posix_sem (from target Qt6::Core) +QT_FEATURE_posix_sem:INTERNAL=ON +//Qt feature: posix_shm (from target Qt6::Core) +QT_FEATURE_posix_shm:INTERNAL=ON +//Qt feature: printsupport (from target Qt6::Core) +QT_FEATURE_printsupport:INTERNAL=ON +//Qt feature: private_tests (from target Qt6::Core) +QT_FEATURE_private_tests:INTERNAL=OFF +//Qt feature: process (from target Qt6::Core) +QT_FEATURE_process:INTERNAL=ON +//Qt feature: processenvironment (from target Qt6::Core) +QT_FEATURE_processenvironment:INTERNAL=ON +//Qt feature: progressbar (from target Qt6::Widgets) +QT_FEATURE_progressbar:INTERNAL=ON +//Qt feature: progressdialog (from target Qt6::Widgets) +QT_FEATURE_progressdialog:INTERNAL=ON +//Qt feature: proxymodel (from target Qt6::Core) +QT_FEATURE_proxymodel:INTERNAL=ON +//Qt feature: pthread_clockjoin (from target Qt6::Core) +QT_FEATURE_pthread_clockjoin:INTERNAL=ON +//Qt feature: pthread_condattr_setclock (from target Qt6::Core) +QT_FEATURE_pthread_condattr_setclock:INTERNAL=ON +//Qt feature: pthread_timedjoin (from target Qt6::Core) +QT_FEATURE_pthread_timedjoin:INTERNAL=ON +//Qt feature: pushbutton (from target Qt6::Widgets) +QT_FEATURE_pushbutton:INTERNAL=ON +//Qt feature: qqnx_imf (from target Qt6::Gui) +QT_FEATURE_qqnx_imf:INTERNAL=OFF +//Qt feature: qqnx_pps (from target Qt6::Core) +QT_FEATURE_qqnx_pps:INTERNAL=OFF +//Qt feature: qtgui_threadpool (from target Qt6::Gui) +QT_FEATURE_qtgui_threadpool:INTERNAL=ON +//Qt feature: radiobutton (from target Qt6::Widgets) +QT_FEATURE_radiobutton:INTERNAL=ON +//Qt feature: raster_64bit (from target Qt6::Gui) +QT_FEATURE_raster_64bit:INTERNAL=ON +//Qt feature: raster_fp (from target Qt6::Gui) +QT_FEATURE_raster_fp:INTERNAL=ON +//Qt feature: rdrnd (from target Qt6::Core) +QT_FEATURE_rdrnd:INTERNAL=ON +//Qt feature: rdseed (from target Qt6::Core) +QT_FEATURE_rdseed:INTERNAL=ON +//Qt feature: reduce_exports (from target Qt6::Core) +QT_FEATURE_reduce_exports:INTERNAL=ON +//Qt feature: reduce_relocations (from target Qt6::Core) +QT_FEATURE_reduce_relocations:INTERNAL=ON +//Qt feature: regularexpression (from target Qt6::Core) +QT_FEATURE_regularexpression:INTERNAL=ON +//Qt feature: relocatable (from target Qt6::Core) +QT_FEATURE_relocatable:INTERNAL=ON +//Qt feature: relro_now_linker (from target Qt6::Core) +QT_FEATURE_relro_now_linker:INTERNAL=ON +//Qt feature: renameat2 (from target Qt6::Core) +QT_FEATURE_renameat2:INTERNAL=ON +//Qt feature: resizehandler (from target Qt6::Widgets) +QT_FEATURE_resizehandler:INTERNAL=ON +//Qt feature: rpath (from target Qt6::Core) +QT_FEATURE_rpath:INTERNAL=ON +//Qt feature: rubberband (from target Qt6::Widgets) +QT_FEATURE_rubberband:INTERNAL=ON +//Qt feature: run_opengl_tests (from target Qt6::Gui) +QT_FEATURE_run_opengl_tests:INTERNAL=ON +//Qt feature: scrollarea (from target Qt6::Widgets) +QT_FEATURE_scrollarea:INTERNAL=ON +//Qt feature: scrollbar (from target Qt6::Widgets) +QT_FEATURE_scrollbar:INTERNAL=ON +//Qt feature: scroller (from target Qt6::Widgets) +QT_FEATURE_scroller:INTERNAL=ON +//Qt feature: separate_debug_info (from target Qt6::Core) +QT_FEATURE_separate_debug_info:INTERNAL=OFF +//Qt feature: sessionmanager (from target Qt6::Gui) +QT_FEATURE_sessionmanager:INTERNAL=ON +//Qt feature: settings (from target Qt6::Core) +QT_FEATURE_settings:INTERNAL=ON +//Qt feature: sha3_fast (from target Qt6::Core) +QT_FEATURE_sha3_fast:INTERNAL=ON +//Qt feature: shani (from target Qt6::Core) +QT_FEATURE_shani:INTERNAL=ON +//Qt feature: shared (from target Qt6::Core) +QT_FEATURE_shared:INTERNAL=ON +//Qt feature: sharedmemory (from target Qt6::Core) +QT_FEATURE_sharedmemory:INTERNAL=ON +//Qt feature: shortcut (from target Qt6::Core) +QT_FEATURE_shortcut:INTERNAL=ON +//Qt feature: signaling_nan (from target Qt6::Core) +QT_FEATURE_signaling_nan:INTERNAL=ON +//Qt feature: simulator_and_device (from target Qt6::Core) +QT_FEATURE_simulator_and_device:INTERNAL=OFF +//Qt feature: sizegrip (from target Qt6::Widgets) +QT_FEATURE_sizegrip:INTERNAL=ON +//Qt feature: slider (from target Qt6::Widgets) +QT_FEATURE_slider:INTERNAL=ON +//Qt feature: slog2 (from target Qt6::Core) +QT_FEATURE_slog2:INTERNAL=OFF +//Qt feature: sortfilterproxymodel (from target Qt6::Core) +QT_FEATURE_sortfilterproxymodel:INTERNAL=ON +//Qt feature: spinbox (from target Qt6::Widgets) +QT_FEATURE_spinbox:INTERNAL=ON +//Qt feature: splashscreen (from target Qt6::Widgets) +QT_FEATURE_splashscreen:INTERNAL=ON +//Qt feature: splitter (from target Qt6::Widgets) +QT_FEATURE_splitter:INTERNAL=ON +//Qt feature: sql (from target Qt6::Core) +QT_FEATURE_sql:INTERNAL=ON +//Qt feature: sse2 (from target Qt6::Core) +QT_FEATURE_sse2:INTERNAL=ON +//Qt feature: sse3 (from target Qt6::Core) +QT_FEATURE_sse3:INTERNAL=ON +//Qt feature: sse4_1 (from target Qt6::Core) +QT_FEATURE_sse4_1:INTERNAL=ON +//Qt feature: sse4_2 (from target Qt6::Core) +QT_FEATURE_sse4_2:INTERNAL=ON +//Qt feature: ssse3 (from target Qt6::Core) +QT_FEATURE_ssse3:INTERNAL=ON +//Qt feature: stack_clash_protection (from target Qt6::Core) +QT_FEATURE_stack_clash_protection:INTERNAL=ON +//Qt feature: stack_protector (from target Qt6::Core) +QT_FEATURE_stack_protector:INTERNAL=ON +//Qt feature: stackedwidget (from target Qt6::Widgets) +QT_FEATURE_stackedwidget:INTERNAL=ON +//Qt feature: standarditemmodel (from target Qt6::Gui) +QT_FEATURE_standarditemmodel:INTERNAL=ON +//Qt feature: static (from target Qt6::Core) +QT_FEATURE_static:INTERNAL=OFF +//Qt feature: statusbar (from target Qt6::Widgets) +QT_FEATURE_statusbar:INTERNAL=ON +//Qt feature: statustip (from target Qt6::Widgets) +QT_FEATURE_statustip:INTERNAL=ON +//Qt feature: std_atomic64 (from target Qt6::Core) +QT_FEATURE_std_atomic64:INTERNAL=ON +//Qt feature: stdlib_libcpp (from target Qt6::Core) +QT_FEATURE_stdlib_libcpp:INTERNAL=OFF +//Qt feature: stringlistmodel (from target Qt6::Core) +QT_FEATURE_stringlistmodel:INTERNAL=ON +//Qt feature: style_android (from target Qt6::Widgets) +QT_FEATURE_style_android:INTERNAL=OFF +//Qt feature: style_fusion (from target Qt6::Widgets) +QT_FEATURE_style_fusion:INTERNAL=ON +//Qt feature: style_mac (from target Qt6::Widgets) +QT_FEATURE_style_mac:INTERNAL=OFF +//Qt feature: style_stylesheet (from target Qt6::Widgets) +QT_FEATURE_style_stylesheet:INTERNAL=ON +//Qt feature: style_windows (from target Qt6::Widgets) +QT_FEATURE_style_windows:INTERNAL=ON +//Qt feature: style_windows11 (from target Qt6::Widgets) +QT_FEATURE_style_windows11:INTERNAL=OFF +//Qt feature: style_windowsvista (from target Qt6::Widgets) +QT_FEATURE_style_windowsvista:INTERNAL=OFF +//Qt feature: syntaxhighlighter (from target Qt6::Widgets) +QT_FEATURE_syntaxhighlighter:INTERNAL=ON +//Qt feature: syslog (from target Qt6::Core) +QT_FEATURE_syslog:INTERNAL=OFF +//Qt feature: system_doubleconversion (from target Qt6::Core) +QT_FEATURE_system_doubleconversion:INTERNAL=ON +//Qt feature: system_freetype (from target Qt6::Gui) +QT_FEATURE_system_freetype:INTERNAL=ON +//Qt feature: system_harfbuzz (from target Qt6::Gui) +QT_FEATURE_system_harfbuzz:INTERNAL=ON +//Qt feature: system_jpeg (from target Qt6::Gui) +QT_FEATURE_system_jpeg:INTERNAL=ON +//Qt feature: system_libb2 (from target Qt6::Core) +QT_FEATURE_system_libb2:INTERNAL=ON +//Qt feature: system_pcre2 (from target Qt6::Core) +QT_FEATURE_system_pcre2:INTERNAL=ON +//Qt feature: system_png (from target Qt6::Gui) +QT_FEATURE_system_png:INTERNAL=ON +//Qt feature: system_textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_system_textmarkdownreader:INTERNAL=ON +//Qt feature: system_xcb_xinput (from target Qt6::Gui) +QT_FEATURE_system_xcb_xinput:INTERNAL=ON +//Qt feature: system_zlib (from target Qt6::Core) +QT_FEATURE_system_zlib:INTERNAL=ON +//Qt feature: systemsemaphore (from target Qt6::Core) +QT_FEATURE_systemsemaphore:INTERNAL=ON +//Qt feature: systemtrayicon (from target Qt6::Gui) +QT_FEATURE_systemtrayicon:INTERNAL=ON +//Qt feature: sysv_sem (from target Qt6::Core) +QT_FEATURE_sysv_sem:INTERNAL=ON +//Qt feature: sysv_shm (from target Qt6::Core) +QT_FEATURE_sysv_shm:INTERNAL=ON +//Qt feature: tabbar (from target Qt6::Widgets) +QT_FEATURE_tabbar:INTERNAL=ON +//Qt feature: tabletevent (from target Qt6::Gui) +QT_FEATURE_tabletevent:INTERNAL=ON +//Qt feature: tableview (from target Qt6::Widgets) +QT_FEATURE_tableview:INTERNAL=ON +//Qt feature: tablewidget (from target Qt6::Widgets) +QT_FEATURE_tablewidget:INTERNAL=ON +//Qt feature: tabwidget (from target Qt6::Widgets) +QT_FEATURE_tabwidget:INTERNAL=ON +//Qt feature: temporaryfile (from target Qt6::Core) +QT_FEATURE_temporaryfile:INTERNAL=ON +//Qt feature: test_gui (from target Qt6::Core) +QT_FEATURE_test_gui:INTERNAL=ON +//Qt feature: test_squish (from target Qt6::Core) +QT_FEATURE_test_squish:INTERNAL=ON +//Qt feature: testlib (from target Qt6::Core) +QT_FEATURE_testlib:INTERNAL=ON +//Qt feature: textbrowser (from target Qt6::Widgets) +QT_FEATURE_textbrowser:INTERNAL=ON +//Qt feature: textdate (from target Qt6::Core) +QT_FEATURE_textdate:INTERNAL=ON +//Qt feature: textedit (from target Qt6::Widgets) +QT_FEATURE_textedit:INTERNAL=ON +//Qt feature: texthtmlparser (from target Qt6::Gui) +QT_FEATURE_texthtmlparser:INTERNAL=ON +//Qt feature: textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_textmarkdownreader:INTERNAL=ON +//Qt feature: textmarkdownwriter (from target Qt6::Gui) +QT_FEATURE_textmarkdownwriter:INTERNAL=ON +//Qt feature: textodfwriter (from target Qt6::Gui) +QT_FEATURE_textodfwriter:INTERNAL=ON +//Qt feature: thread (from target Qt6::Core) +QT_FEATURE_thread:INTERNAL=ON +//Qt feature: threadsafe_cloexec (from target Qt6::Core) +QT_FEATURE_threadsafe_cloexec:INTERNAL=ON +//Qt feature: timezone (from target Qt6::Core) +QT_FEATURE_timezone:INTERNAL=ON +//Qt feature: timezone_locale (from target Qt6::Core) +QT_FEATURE_timezone_locale:INTERNAL=ON +//Qt feature: timezone_tzdb (from target Qt6::Core) +QT_FEATURE_timezone_tzdb:INTERNAL=OFF +//Qt feature: toolbar (from target Qt6::Widgets) +QT_FEATURE_toolbar:INTERNAL=ON +//Qt feature: toolbox (from target Qt6::Widgets) +QT_FEATURE_toolbox:INTERNAL=ON +//Qt feature: toolbutton (from target Qt6::Widgets) +QT_FEATURE_toolbutton:INTERNAL=ON +//Qt feature: tooltip (from target Qt6::Widgets) +QT_FEATURE_tooltip:INTERNAL=ON +//Qt feature: translation (from target Qt6::Core) +QT_FEATURE_translation:INTERNAL=ON +//Qt feature: transposeproxymodel (from target Qt6::Core) +QT_FEATURE_transposeproxymodel:INTERNAL=ON +//Qt feature: treeview (from target Qt6::Widgets) +QT_FEATURE_treeview:INTERNAL=ON +//Qt feature: treewidget (from target Qt6::Widgets) +QT_FEATURE_treewidget:INTERNAL=ON +//Qt feature: trivial_auto_var_init_pattern (from target Qt6::Core) +QT_FEATURE_trivial_auto_var_init_pattern:INTERNAL=ON +//Qt feature: tslib (from target Qt6::Gui) +QT_FEATURE_tslib:INTERNAL=ON +//Qt feature: tuiotouch (from target Qt6::Gui) +QT_FEATURE_tuiotouch:INTERNAL=ON +//Qt feature: undocommand (from target Qt6::Gui) +QT_FEATURE_undocommand:INTERNAL=ON +//Qt feature: undogroup (from target Qt6::Gui) +QT_FEATURE_undogroup:INTERNAL=ON +//Qt feature: undostack (from target Qt6::Gui) +QT_FEATURE_undostack:INTERNAL=ON +//Qt feature: undoview (from target Qt6::Widgets) +QT_FEATURE_undoview:INTERNAL=ON +//Qt feature: use_bfd_linker (from target Qt6::Core) +QT_FEATURE_use_bfd_linker:INTERNAL=OFF +//Qt feature: use_gold_linker (from target Qt6::Core) +QT_FEATURE_use_gold_linker:INTERNAL=OFF +//Qt feature: use_lld_linker (from target Qt6::Core) +QT_FEATURE_use_lld_linker:INTERNAL=OFF +//Qt feature: use_mold_linker (from target Qt6::Core) +QT_FEATURE_use_mold_linker:INTERNAL=OFF +//Qt feature: vaes (from target Qt6::Core) +QT_FEATURE_vaes:INTERNAL=ON +//Qt feature: validator (from target Qt6::Gui) +QT_FEATURE_validator:INTERNAL=ON +//Qt feature: version_tagging (from target Qt6::Core) +QT_FEATURE_version_tagging:INTERNAL=ON +//Qt feature: vkgen (from target Qt6::Gui) +QT_FEATURE_vkgen:INTERNAL=ON +//Qt feature: vkkhrdisplay (from target Qt6::Gui) +QT_FEATURE_vkkhrdisplay:INTERNAL=ON +//Qt feature: vnc (from target Qt6::Gui) +QT_FEATURE_vnc:INTERNAL=ON +//Qt feature: vsp2 (from target Qt6::Gui) +QT_FEATURE_vsp2:INTERNAL=OFF +//Qt feature: vulkan (from target Qt6::Gui) +QT_FEATURE_vulkan:INTERNAL=ON +//Qt feature: vxpipedrv (from target Qt6::Core) +QT_FEATURE_vxpipedrv:INTERNAL=OFF +//Qt feature: vxworksevdev (from target Qt6::Gui) +QT_FEATURE_vxworksevdev:INTERNAL=OFF +//Qt feature: wasm_exceptions (from target Qt6::Core) +QT_FEATURE_wasm_exceptions:INTERNAL=OFF +//Qt feature: wasm_jspi (from target Qt6::Core) +QT_FEATURE_wasm_jspi:INTERNAL=OFF +//Qt feature: wasm_simd128 (from target Qt6::Core) +QT_FEATURE_wasm_simd128:INTERNAL=OFF +//Qt feature: wayland (from target Qt6::Gui) +QT_FEATURE_wayland:INTERNAL=ON +//Qt feature: wayland_brcm (from target Qt6::Gui) +QT_FEATURE_wayland_brcm:INTERNAL=OFF +//Qt feature: wayland_client (from target Qt6::Gui) +QT_FEATURE_wayland_client:INTERNAL=ON +//Qt feature: wayland_client_fullscreen_shell_v1 (from target Qt6::Gui) +QT_FEATURE_wayland_client_fullscreen_shell_v1:INTERNAL=ON +//Qt feature: wayland_client_primary_selection (from target Qt6::Gui) +QT_FEATURE_wayland_client_primary_selection:INTERNAL=ON +//Qt feature: wayland_client_wl_shell (from target Qt6::Gui) +QT_FEATURE_wayland_client_wl_shell:INTERNAL=ON +//Qt feature: wayland_client_xdg_shell (from target Qt6::Gui) +QT_FEATURE_wayland_client_xdg_shell:INTERNAL=ON +//Qt feature: wayland_datadevice (from target Qt6::Gui) +QT_FEATURE_wayland_datadevice:INTERNAL=ON +//Qt feature: wayland_dmabuf_server_buffer (from target Qt6::Gui) +QT_FEATURE_wayland_dmabuf_server_buffer:INTERNAL=ON +//Qt feature: wayland_drm_egl_server_buffer (from target Qt6::Gui) +QT_FEATURE_wayland_drm_egl_server_buffer:INTERNAL=ON +//Qt feature: wayland_egl (from target Qt6::Gui) +QT_FEATURE_wayland_egl:INTERNAL=ON +//Qt feature: wayland_libhybris_egl_server_buffer (from target +// Qt6::Gui) +QT_FEATURE_wayland_libhybris_egl_server_buffer:INTERNAL=OFF +//Qt feature: wayland_server (from target Qt6::Gui) +QT_FEATURE_wayland_server:INTERNAL=ON +//Qt feature: wayland_shm_emulation_server_buffer (from target +// Qt6::Gui) +QT_FEATURE_wayland_shm_emulation_server_buffer:INTERNAL=ON +//Qt feature: wayland_vulkan_server_buffer (from target Qt6::Gui) +QT_FEATURE_wayland_vulkan_server_buffer:INTERNAL=ON +//Qt feature: waylandscanner (from target Qt6::Gui) +QT_FEATURE_waylandscanner:INTERNAL=ON +//Qt feature: whatsthis (from target Qt6::Gui) +QT_FEATURE_whatsthis:INTERNAL=ON +//Qt feature: wheelevent (from target Qt6::Gui) +QT_FEATURE_wheelevent:INTERNAL=ON +//Qt feature: widgets (from target Qt6::Core) +QT_FEATURE_widgets:INTERNAL=ON +//Qt feature: widgettextcontrol (from target Qt6::Widgets) +QT_FEATURE_widgettextcontrol:INTERNAL=ON +//Qt feature: windows_ioring (from target Qt6::Core) +QT_FEATURE_windows_ioring:INTERNAL=OFF +//Qt feature: windows_ioring_skip_builder_param_checks (from target +// Qt6::Core) +QT_FEATURE_windows_ioring_skip_builder_param_checks:INTERNAL=OFF +//Qt feature: winsdkicu (from target Qt6::Core) +QT_FEATURE_winsdkicu:INTERNAL=OFF +//Qt feature: wizard (from target Qt6::Widgets) +QT_FEATURE_wizard:INTERNAL=ON +//Qt feature: x86intrin (from target Qt6::Core) +QT_FEATURE_x86intrin:INTERNAL=ON +//Qt feature: xcb (from target Qt6::Gui) +QT_FEATURE_xcb:INTERNAL=ON +//Qt feature: xcb_egl_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_egl_plugin:INTERNAL=ON +//Qt feature: xcb_glx (from target Qt6::Gui) +QT_FEATURE_xcb_glx:INTERNAL=ON +//Qt feature: xcb_glx_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_glx_plugin:INTERNAL=ON +//Qt feature: xcb_sm (from target Qt6::Gui) +QT_FEATURE_xcb_sm:INTERNAL=ON +//Qt feature: xcb_xlib (from target Qt6::Gui) +QT_FEATURE_xcb_xlib:INTERNAL=ON +//Qt feature: xkbcommon (from target Qt6::Gui) +QT_FEATURE_xkbcommon:INTERNAL=ON +//Qt feature: xkbcommon_x11 (from target Qt6::Gui) +QT_FEATURE_xkbcommon_x11:INTERNAL=ON +//Qt feature: xlib (from target Qt6::Gui) +QT_FEATURE_xlib:INTERNAL=ON +//Qt feature: xml (from target Qt6::Core) +QT_FEATURE_xml:INTERNAL=ON +//Qt feature: xmlstream (from target Qt6::Core) +QT_FEATURE_xmlstream:INTERNAL=ON +//Qt feature: xmlstreamreader (from target Qt6::Core) +QT_FEATURE_xmlstreamreader:INTERNAL=ON +//Qt feature: xmlstreamwriter (from target Qt6::Core) +QT_FEATURE_xmlstreamwriter:INTERNAL=ON +//Qt feature: zstd (from target Qt6::Core) +QT_FEATURE_zstd:INTERNAL=ON +//ADVANCED property for variable: Vulkan_GLSLANG_VALIDATOR_EXECUTABLE +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_GLSLC_EXECUTABLE +Vulkan_GLSLC_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_INCLUDE_DIR +Vulkan_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_LIBRARY +Vulkan_LIBRARY-ADVANCED:INTERNAL=1 +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local +__pkg_config_arguments_GLIB2:INTERNAL=REQUIRED;glib-2.0 +__pkg_config_checked_GLIB2:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GLIB2_glib-2.0 +pkgcfg_lib_GLIB2_glib-2.0-ADVANCED:INTERNAL=1 +prefix_result:INTERNAL=/usr/lib + diff --git a/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCCompiler.cmake b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCCompiler.cmake new file mode 100644 index 0000000..9a8a551 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCCompiler.cmake @@ -0,0 +1,85 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "16.1.1") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "23") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_COMPILER_APPLE_SYSROOT "") +set(CMAKE_C_SIMULATE_VERSION "") +set(CMAKE_C_COMPILER_ARCHITECTURE_ID "x86_64") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "/usr/bin/ld") +set(CMAKE_C_COMPILER_LINKER_ID "GNU") +set(CMAKE_C_COMPILER_LINKER_VERSION 2.46.0) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) +set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include;/usr/local/include;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s_asneeded;atomic_asneeded;c;gcc;gcc_s_asneeded") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1;/usr/lib;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCXXCompiler.cmake b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..f701eb5 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCXXCompiler.cmake @@ -0,0 +1,102 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "16.1.1") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "20") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "26") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "") +set(CMAKE_CXX_SIMULATE_VERSION "") +set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID "x86_64") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "/usr/bin/ld") +set(CMAKE_CXX_COMPILER_LINKER_ID "GNU") +set(CMAKE_CXX_COMPILER_LINKER_VERSION 2.46.0) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) +set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/16.1.1;/usr/include/c++/16.1.1/x86_64-pc-linux-gnu;/usr/include/c++/16.1.1/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include;/usr/local/include;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;atomic_asneeded;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1;/usr/lib;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +set(CMAKE_CXX_COMPILER_IMPORT_STD_ERROR_MESSAGE "Unsupported generator: Unix Makefiles") +set(CMAKE_CXX_STDLIB_MODULES_JSON "") diff --git a/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeDetermineCompilerABI_C.bin b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..c6b79e3 Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeDetermineCompilerABI_C.bin differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeDetermineCompilerABI_CXX.bin b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..6ebe571 Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeSystem.cmake b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeSystem.cmake new file mode 100644 index 0000000..5a5c974 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-7.0.11-1-cachyos") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "7.0.11-1-cachyos") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-7.0.11-1-cachyos") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "7.0.11-1-cachyos") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdC/CMakeCCompilerId.c b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..ab3c359 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,934 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__RENESAS__) +# define COMPILER_ID "Renesas" +/* __RENESAS_VERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__DCC__) && defined(_DIAB_TOOL) +# define COMPILER_ID "Diab" + # define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__) + # define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__) + # define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__) + # define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__) + + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__RENESAS__) +# if defined(__CCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__CCRL__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__CCRH__) +# define ARCHITECTURE_ID "RH850" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) && !defined(__RENESAS__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdC/a.out b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdC/a.out new file mode 100755 index 0000000..334f6d9 Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdC/a.out differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..b35f567 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,949 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__RENESAS__) +# define COMPILER_ID "Renesas" +/* __RENESAS_VERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__DCC__) && defined(_DIAB_TOOL) +# define COMPILER_ID "Diab" + # define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__) + # define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__) + # define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__) + # define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__) + + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__RENESAS__) +# if defined(__CCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__CCRL__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__CCRH__) +# define ARCHITECTURE_ID "RH850" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdCXX/a.out b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdCXX/a.out new file mode 100755 index 0000000..c693325 Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdCXX/a.out differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/CMakeConfigureLog.yaml b/wlx/wayland_qt_base/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..0c18277 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,8948 @@ + +--- +events: + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake:12 (find_program)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_UNAME" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "uname" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/uname" + - "/home/pplupo/.config/Antigravity/bin/uname" + - "/home/pplupo/.npm-global/bin/uname" + - "/home/pplupo/.bun/bin/uname" + - "/home/pplupo/.cargo/bin/uname" + - "/home/pplupo/.pyenv/shims/uname" + - "/home/pplupo/.pyenv/bin/uname" + - "/home/pplupo/bin/uname" + - "/usr/local/bin/uname" + found: "/usr/bin/uname" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake:212 (message)" + - "CMakeLists.txt:2 (project)" + message: | + The system is: Linux - 7.0.11-1-cachyos - x86_64 + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeUnixFindMake.cmake:5 (find_program)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_MAKE_PROGRAM" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gmake" + - "make" + - "smake" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/gmake" + - "/home/pplupo/.config/Antigravity/bin/gmake" + - "/home/pplupo/.npm-global/bin/gmake" + - "/home/pplupo/.bun/bin/gmake" + - "/home/pplupo/.cargo/bin/gmake" + - "/home/pplupo/.pyenv/shims/gmake" + - "/home/pplupo/.pyenv/bin/gmake" + - "/home/pplupo/bin/gmake" + - "/usr/local/bin/gmake" + - "/usr/bin/gmake" + - "/bin/gmake" + - "/usr/local/sbin/gmake" + - "/home/pplupo/.local/share/flatpak/exports/bin/gmake" + - "/var/lib/flatpak/exports/bin/gmake" + - "/usr/lib/jvm/default/bin/gmake" + - "/usr/bin/site_perl/gmake" + - "/usr/bin/vendor_perl/gmake" + - "/usr/bin/core_perl/gmake" + - "/home/pplupo/.local/bin/gmake" + - "/home/pplupo/.gemini/antigravity/bin/make" + - "/home/pplupo/.config/Antigravity/bin/make" + - "/home/pplupo/.npm-global/bin/make" + - "/home/pplupo/.bun/bin/make" + - "/home/pplupo/.cargo/bin/make" + - "/home/pplupo/.pyenv/shims/make" + - "/home/pplupo/.pyenv/bin/make" + - "/home/pplupo/bin/make" + - "/usr/local/bin/make" + found: "/usr/bin/make" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake:73 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:64 (_cmake_find_compiler)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER" + description: "C compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "cc" + - "gcc" + - "cl" + - "bcc" + - "xlc" + - "icx" + - "clang" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/cc" + - "/home/pplupo/.config/Antigravity/bin/cc" + - "/home/pplupo/.npm-global/bin/cc" + - "/home/pplupo/.bun/bin/cc" + - "/home/pplupo/.cargo/bin/cc" + - "/home/pplupo/.pyenv/shims/cc" + - "/home/pplupo/.pyenv/bin/cc" + - "/home/pplupo/bin/cc" + - "/usr/local/bin/cc" + found: "/usr/bin/cc" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:468 (find_file)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:506 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCCompilerId.c.in" + candidate_directories: + - "/usr/share/cmake/Modules/" + found: "/usr/share/cmake/Modules/CMakeCCompilerId.c.in" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /usr/bin/cc + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is GNU, found in: + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdC/a.out + + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_AR" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ar" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + found: "/usr/bin/ar" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_RANLIB" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ranlib" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + found: "/usr/bin/ranlib" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_STRIP" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "strip" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + found: "/usr/bin/strip" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_LINKER" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ld" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + found: "/usr/bin/ld" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_NM" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "nm" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + found: "/usr/bin/nm" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_OBJDUMP" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "objdump" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + found: "/usr/bin/objdump" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_OBJCOPY" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "objcopy" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + found: "/usr/bin/objcopy" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_READELF" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "readelf" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + found: "/usr/bin/readelf" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_DLLTOOL" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "dlltool" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + searched_directories: + - "/usr/bin/dlltool" + - "/home/pplupo/.gemini/antigravity/bin/dlltool" + - "/home/pplupo/.config/Antigravity/bin/dlltool" + - "/home/pplupo/.npm-global/bin/dlltool" + - "/home/pplupo/.bun/bin/dlltool" + - "/home/pplupo/.cargo/bin/dlltool" + - "/home/pplupo/.pyenv/shims/dlltool" + - "/home/pplupo/.pyenv/bin/dlltool" + - "/home/pplupo/bin/dlltool" + - "/usr/local/bin/dlltool" + - "/bin/dlltool" + - "/usr/local/sbin/dlltool" + - "/home/pplupo/.local/share/flatpak/exports/bin/dlltool" + - "/var/lib/flatpak/exports/bin/dlltool" + - "/usr/lib/jvm/default/bin/dlltool" + - "/usr/bin/site_perl/dlltool" + - "/usr/bin/vendor_perl/dlltool" + - "/usr/bin/core_perl/dlltool" + - "/home/pplupo/.local/bin/dlltool" + found: false + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_ADDR2LINE" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "addr2line" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + found: "/usr/bin/addr2line" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_TAPI" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "tapi" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + searched_directories: + - "/usr/bin/tapi" + - "/home/pplupo/.gemini/antigravity/bin/tapi" + - "/home/pplupo/.config/Antigravity/bin/tapi" + - "/home/pplupo/.npm-global/bin/tapi" + - "/home/pplupo/.bun/bin/tapi" + - "/home/pplupo/.cargo/bin/tapi" + - "/home/pplupo/.pyenv/shims/tapi" + - "/home/pplupo/.pyenv/bin/tapi" + - "/home/pplupo/bin/tapi" + - "/usr/local/bin/tapi" + - "/bin/tapi" + - "/usr/local/sbin/tapi" + - "/home/pplupo/.local/share/flatpak/exports/bin/tapi" + - "/var/lib/flatpak/exports/bin/tapi" + - "/usr/lib/jvm/default/bin/tapi" + - "/usr/bin/site_perl/tapi" + - "/usr/bin/vendor_perl/tapi" + - "/usr/bin/core_perl/tapi" + - "/home/pplupo/.local/bin/tapi" + found: false + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:18 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:201 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER_AR" + description: "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gcc-ar-16.1" + - "gcc-ar-16" + - "gcc-ar16" + - "gcc-ar" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + searched_directories: + - "/usr/bin/gcc-ar-16.1" + - "/home/pplupo/.gemini/antigravity/bin/gcc-ar-16.1" + - "/home/pplupo/.config/Antigravity/bin/gcc-ar-16.1" + - "/home/pplupo/.npm-global/bin/gcc-ar-16.1" + - "/home/pplupo/.bun/bin/gcc-ar-16.1" + - "/home/pplupo/.cargo/bin/gcc-ar-16.1" + - "/home/pplupo/.pyenv/shims/gcc-ar-16.1" + - "/home/pplupo/.pyenv/bin/gcc-ar-16.1" + - "/home/pplupo/bin/gcc-ar-16.1" + - "/usr/local/bin/gcc-ar-16.1" + - "/bin/gcc-ar-16.1" + - "/usr/local/sbin/gcc-ar-16.1" + - "/home/pplupo/.local/share/flatpak/exports/bin/gcc-ar-16.1" + - "/var/lib/flatpak/exports/bin/gcc-ar-16.1" + - "/usr/lib/jvm/default/bin/gcc-ar-16.1" + - "/usr/bin/site_perl/gcc-ar-16.1" + - "/usr/bin/vendor_perl/gcc-ar-16.1" + - "/usr/bin/core_perl/gcc-ar-16.1" + - "/home/pplupo/.local/bin/gcc-ar-16.1" + - "/usr/bin/gcc-ar-16" + - "/home/pplupo/.gemini/antigravity/bin/gcc-ar-16" + - "/home/pplupo/.config/Antigravity/bin/gcc-ar-16" + - "/home/pplupo/.npm-global/bin/gcc-ar-16" + - "/home/pplupo/.bun/bin/gcc-ar-16" + - "/home/pplupo/.cargo/bin/gcc-ar-16" + - "/home/pplupo/.pyenv/shims/gcc-ar-16" + - "/home/pplupo/.pyenv/bin/gcc-ar-16" + - "/home/pplupo/bin/gcc-ar-16" + - "/usr/local/bin/gcc-ar-16" + - "/bin/gcc-ar-16" + - "/usr/local/sbin/gcc-ar-16" + - "/home/pplupo/.local/share/flatpak/exports/bin/gcc-ar-16" + - "/var/lib/flatpak/exports/bin/gcc-ar-16" + - "/usr/lib/jvm/default/bin/gcc-ar-16" + - "/usr/bin/site_perl/gcc-ar-16" + - "/usr/bin/vendor_perl/gcc-ar-16" + - "/usr/bin/core_perl/gcc-ar-16" + - "/home/pplupo/.local/bin/gcc-ar-16" + - "/usr/bin/gcc-ar16" + - "/home/pplupo/.gemini/antigravity/bin/gcc-ar16" + - "/home/pplupo/.config/Antigravity/bin/gcc-ar16" + - "/home/pplupo/.npm-global/bin/gcc-ar16" + - "/home/pplupo/.bun/bin/gcc-ar16" + - "/home/pplupo/.cargo/bin/gcc-ar16" + - "/home/pplupo/.pyenv/shims/gcc-ar16" + - "/home/pplupo/.pyenv/bin/gcc-ar16" + - "/home/pplupo/bin/gcc-ar16" + - "/usr/local/bin/gcc-ar16" + - "/bin/gcc-ar16" + - "/usr/local/sbin/gcc-ar16" + - "/home/pplupo/.local/share/flatpak/exports/bin/gcc-ar16" + - "/var/lib/flatpak/exports/bin/gcc-ar16" + - "/usr/lib/jvm/default/bin/gcc-ar16" + - "/usr/bin/site_perl/gcc-ar16" + - "/usr/bin/vendor_perl/gcc-ar16" + - "/usr/bin/core_perl/gcc-ar16" + - "/home/pplupo/.local/bin/gcc-ar16" + found: "/usr/bin/gcc-ar" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:30 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:201 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER_RANLIB" + description: "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gcc-ranlib-16.1" + - "gcc-ranlib-16" + - "gcc-ranlib16" + - "gcc-ranlib" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + searched_directories: + - "/usr/bin/gcc-ranlib-16.1" + - "/home/pplupo/.gemini/antigravity/bin/gcc-ranlib-16.1" + - "/home/pplupo/.config/Antigravity/bin/gcc-ranlib-16.1" + - "/home/pplupo/.npm-global/bin/gcc-ranlib-16.1" + - "/home/pplupo/.bun/bin/gcc-ranlib-16.1" + - "/home/pplupo/.cargo/bin/gcc-ranlib-16.1" + - "/home/pplupo/.pyenv/shims/gcc-ranlib-16.1" + - "/home/pplupo/.pyenv/bin/gcc-ranlib-16.1" + - "/home/pplupo/bin/gcc-ranlib-16.1" + - "/usr/local/bin/gcc-ranlib-16.1" + - "/bin/gcc-ranlib-16.1" + - "/usr/local/sbin/gcc-ranlib-16.1" + - "/home/pplupo/.local/share/flatpak/exports/bin/gcc-ranlib-16.1" + - "/var/lib/flatpak/exports/bin/gcc-ranlib-16.1" + - "/usr/lib/jvm/default/bin/gcc-ranlib-16.1" + - "/usr/bin/site_perl/gcc-ranlib-16.1" + - "/usr/bin/vendor_perl/gcc-ranlib-16.1" + - "/usr/bin/core_perl/gcc-ranlib-16.1" + - "/home/pplupo/.local/bin/gcc-ranlib-16.1" + - "/usr/bin/gcc-ranlib-16" + - "/home/pplupo/.gemini/antigravity/bin/gcc-ranlib-16" + - "/home/pplupo/.config/Antigravity/bin/gcc-ranlib-16" + - "/home/pplupo/.npm-global/bin/gcc-ranlib-16" + - "/home/pplupo/.bun/bin/gcc-ranlib-16" + - "/home/pplupo/.cargo/bin/gcc-ranlib-16" + - "/home/pplupo/.pyenv/shims/gcc-ranlib-16" + - "/home/pplupo/.pyenv/bin/gcc-ranlib-16" + - "/home/pplupo/bin/gcc-ranlib-16" + - "/usr/local/bin/gcc-ranlib-16" + - "/bin/gcc-ranlib-16" + - "/usr/local/sbin/gcc-ranlib-16" + - "/home/pplupo/.local/share/flatpak/exports/bin/gcc-ranlib-16" + - "/var/lib/flatpak/exports/bin/gcc-ranlib-16" + - "/usr/lib/jvm/default/bin/gcc-ranlib-16" + - "/usr/bin/site_perl/gcc-ranlib-16" + - "/usr/bin/vendor_perl/gcc-ranlib-16" + - "/usr/bin/core_perl/gcc-ranlib-16" + - "/home/pplupo/.local/bin/gcc-ranlib-16" + - "/usr/bin/gcc-ranlib16" + - "/home/pplupo/.gemini/antigravity/bin/gcc-ranlib16" + - "/home/pplupo/.config/Antigravity/bin/gcc-ranlib16" + - "/home/pplupo/.npm-global/bin/gcc-ranlib16" + - "/home/pplupo/.bun/bin/gcc-ranlib16" + - "/home/pplupo/.cargo/bin/gcc-ranlib16" + - "/home/pplupo/.pyenv/shims/gcc-ranlib16" + - "/home/pplupo/.pyenv/bin/gcc-ranlib16" + - "/home/pplupo/bin/gcc-ranlib16" + - "/usr/local/bin/gcc-ranlib16" + - "/bin/gcc-ranlib16" + - "/usr/local/sbin/gcc-ranlib16" + - "/home/pplupo/.local/share/flatpak/exports/bin/gcc-ranlib16" + - "/var/lib/flatpak/exports/bin/gcc-ranlib16" + - "/usr/lib/jvm/default/bin/gcc-ranlib16" + - "/usr/bin/site_perl/gcc-ranlib16" + - "/usr/bin/vendor_perl/gcc-ranlib16" + - "/usr/bin/core_perl/gcc-ranlib16" + - "/home/pplupo/.local/bin/gcc-ranlib16" + found: "/usr/bin/gcc-ranlib" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake:54 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:69 (_cmake_find_compiler)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_CXX_COMPILER" + description: "CXX compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "c++" + - "CC" + - "g++" + - "aCC" + - "cl" + - "bcc" + - "xlC" + - "icpx" + - "icx" + - "clang++" + candidate_directories: + - "/usr/bin/" + found: "/usr/bin/c++" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:468 (find_file)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:506 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCXXCompilerId.cpp.in" + candidate_directories: + - "/usr/share/cmake/Modules/" + found: "/usr/share/cmake/Modules/CMakeCXXCompilerId.cpp.in" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /usr/bin/c++ + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is GNU, found in: + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CompilerIdCXX/a.out + + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:18 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:207 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_CXX_COMPILER_AR" + description: "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gcc-ar-16.1" + - "gcc-ar-16" + - "gcc-ar16" + - "gcc-ar" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + searched_directories: + - "/usr/bin/gcc-ar-16.1" + - "/home/pplupo/.gemini/antigravity/bin/gcc-ar-16.1" + - "/home/pplupo/.config/Antigravity/bin/gcc-ar-16.1" + - "/home/pplupo/.npm-global/bin/gcc-ar-16.1" + - "/home/pplupo/.bun/bin/gcc-ar-16.1" + - "/home/pplupo/.cargo/bin/gcc-ar-16.1" + - "/home/pplupo/.pyenv/shims/gcc-ar-16.1" + - "/home/pplupo/.pyenv/bin/gcc-ar-16.1" + - "/home/pplupo/bin/gcc-ar-16.1" + - "/usr/local/bin/gcc-ar-16.1" + - "/bin/gcc-ar-16.1" + - "/usr/local/sbin/gcc-ar-16.1" + - "/home/pplupo/.local/share/flatpak/exports/bin/gcc-ar-16.1" + - "/var/lib/flatpak/exports/bin/gcc-ar-16.1" + - "/usr/lib/jvm/default/bin/gcc-ar-16.1" + - "/usr/bin/site_perl/gcc-ar-16.1" + - "/usr/bin/vendor_perl/gcc-ar-16.1" + - "/usr/bin/core_perl/gcc-ar-16.1" + - "/home/pplupo/.local/bin/gcc-ar-16.1" + - "/usr/bin/gcc-ar-16" + - "/home/pplupo/.gemini/antigravity/bin/gcc-ar-16" + - "/home/pplupo/.config/Antigravity/bin/gcc-ar-16" + - "/home/pplupo/.npm-global/bin/gcc-ar-16" + - "/home/pplupo/.bun/bin/gcc-ar-16" + - "/home/pplupo/.cargo/bin/gcc-ar-16" + - "/home/pplupo/.pyenv/shims/gcc-ar-16" + - "/home/pplupo/.pyenv/bin/gcc-ar-16" + - "/home/pplupo/bin/gcc-ar-16" + - "/usr/local/bin/gcc-ar-16" + - "/bin/gcc-ar-16" + - "/usr/local/sbin/gcc-ar-16" + - "/home/pplupo/.local/share/flatpak/exports/bin/gcc-ar-16" + - "/var/lib/flatpak/exports/bin/gcc-ar-16" + - "/usr/lib/jvm/default/bin/gcc-ar-16" + - "/usr/bin/site_perl/gcc-ar-16" + - "/usr/bin/vendor_perl/gcc-ar-16" + - "/usr/bin/core_perl/gcc-ar-16" + - "/home/pplupo/.local/bin/gcc-ar-16" + - "/usr/bin/gcc-ar16" + - "/home/pplupo/.gemini/antigravity/bin/gcc-ar16" + - "/home/pplupo/.config/Antigravity/bin/gcc-ar16" + - "/home/pplupo/.npm-global/bin/gcc-ar16" + - "/home/pplupo/.bun/bin/gcc-ar16" + - "/home/pplupo/.cargo/bin/gcc-ar16" + - "/home/pplupo/.pyenv/shims/gcc-ar16" + - "/home/pplupo/.pyenv/bin/gcc-ar16" + - "/home/pplupo/bin/gcc-ar16" + - "/usr/local/bin/gcc-ar16" + - "/bin/gcc-ar16" + - "/usr/local/sbin/gcc-ar16" + - "/home/pplupo/.local/share/flatpak/exports/bin/gcc-ar16" + - "/var/lib/flatpak/exports/bin/gcc-ar16" + - "/usr/lib/jvm/default/bin/gcc-ar16" + - "/usr/bin/site_perl/gcc-ar16" + - "/usr/bin/vendor_perl/gcc-ar16" + - "/usr/bin/core_perl/gcc-ar16" + - "/home/pplupo/.local/bin/gcc-ar16" + found: "/usr/bin/gcc-ar" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake:30 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:207 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_CXX_COMPILER_RANLIB" + description: "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gcc-ranlib-16.1" + - "gcc-ranlib-16" + - "gcc-ranlib16" + - "gcc-ranlib" + candidate_directories: + - "/usr/bin/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + searched_directories: + - "/usr/bin/gcc-ranlib-16.1" + - "/home/pplupo/.gemini/antigravity/bin/gcc-ranlib-16.1" + - "/home/pplupo/.config/Antigravity/bin/gcc-ranlib-16.1" + - "/home/pplupo/.npm-global/bin/gcc-ranlib-16.1" + - "/home/pplupo/.bun/bin/gcc-ranlib-16.1" + - "/home/pplupo/.cargo/bin/gcc-ranlib-16.1" + - "/home/pplupo/.pyenv/shims/gcc-ranlib-16.1" + - "/home/pplupo/.pyenv/bin/gcc-ranlib-16.1" + - "/home/pplupo/bin/gcc-ranlib-16.1" + - "/usr/local/bin/gcc-ranlib-16.1" + - "/bin/gcc-ranlib-16.1" + - "/usr/local/sbin/gcc-ranlib-16.1" + - "/home/pplupo/.local/share/flatpak/exports/bin/gcc-ranlib-16.1" + - "/var/lib/flatpak/exports/bin/gcc-ranlib-16.1" + - "/usr/lib/jvm/default/bin/gcc-ranlib-16.1" + - "/usr/bin/site_perl/gcc-ranlib-16.1" + - "/usr/bin/vendor_perl/gcc-ranlib-16.1" + - "/usr/bin/core_perl/gcc-ranlib-16.1" + - "/home/pplupo/.local/bin/gcc-ranlib-16.1" + - "/usr/bin/gcc-ranlib-16" + - "/home/pplupo/.gemini/antigravity/bin/gcc-ranlib-16" + - "/home/pplupo/.config/Antigravity/bin/gcc-ranlib-16" + - "/home/pplupo/.npm-global/bin/gcc-ranlib-16" + - "/home/pplupo/.bun/bin/gcc-ranlib-16" + - "/home/pplupo/.cargo/bin/gcc-ranlib-16" + - "/home/pplupo/.pyenv/shims/gcc-ranlib-16" + - "/home/pplupo/.pyenv/bin/gcc-ranlib-16" + - "/home/pplupo/bin/gcc-ranlib-16" + - "/usr/local/bin/gcc-ranlib-16" + - "/bin/gcc-ranlib-16" + - "/usr/local/sbin/gcc-ranlib-16" + - "/home/pplupo/.local/share/flatpak/exports/bin/gcc-ranlib-16" + - "/var/lib/flatpak/exports/bin/gcc-ranlib-16" + - "/usr/lib/jvm/default/bin/gcc-ranlib-16" + - "/usr/bin/site_perl/gcc-ranlib-16" + - "/usr/bin/vendor_perl/gcc-ranlib-16" + - "/usr/bin/core_perl/gcc-ranlib-16" + - "/home/pplupo/.local/bin/gcc-ranlib-16" + - "/usr/bin/gcc-ranlib16" + - "/home/pplupo/.gemini/antigravity/bin/gcc-ranlib16" + - "/home/pplupo/.config/Antigravity/bin/gcc-ranlib16" + - "/home/pplupo/.npm-global/bin/gcc-ranlib16" + - "/home/pplupo/.bun/bin/gcc-ranlib16" + - "/home/pplupo/.cargo/bin/gcc-ranlib16" + - "/home/pplupo/.pyenv/shims/gcc-ranlib16" + - "/home/pplupo/.pyenv/bin/gcc-ranlib16" + - "/home/pplupo/bin/gcc-ranlib16" + - "/usr/local/bin/gcc-ranlib16" + - "/bin/gcc-ranlib16" + - "/usr/local/sbin/gcc-ranlib16" + - "/home/pplupo/.local/share/flatpak/exports/bin/gcc-ranlib16" + - "/var/lib/flatpak/exports/bin/gcc-ranlib16" + - "/usr/lib/jvm/default/bin/gcc-ranlib16" + - "/usr/bin/site_perl/gcc-ranlib16" + - "/usr/bin/vendor_perl/gcc-ranlib16" + - "/usr/bin/core_perl/gcc-ranlib16" + - "/home/pplupo/.local/bin/gcc-ranlib16" + found: "/usr/bin/gcc-ranlib" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-drPS9o" + binary: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-drPS9o" + cmakeVariables: + CMAKE_CXX_STDLIB_MODULES_JSON: "" + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-drPS9o' + + Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_95659/fast + /usr/bin/make -f CMakeFiles/cmTC_95659.dir/build.make CMakeFiles/cmTC_95659.dir/build + make[1]: Entering directory '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-drPS9o' + Building C object CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o + /usr/bin/cc -v -o CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + Target: x86_64-pc-linux-gnu + Configured with: /tmp/pkg/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust,cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://github.com/CachyOS/CachyOS-PKGBUILDS/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --disable-fixincludes + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 16.1.1 20260430 (GCC) + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_95659.dir/' + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/cc1 -quiet -v /usr/share/cmake/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_95659.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/ccuanIJF.s + GNU C23 (GCC) version 16.1.1 20260430 (x86_64-pc-linux-gnu) + compiled by GNU C version 16.1.1 20260430, GMP version 6.3.0, MPFR version 4.2.2, MPC version 1.4.1, isl version isl-0.27-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../x86_64-pc-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include + /usr/local/include + /usr/include + End of search list. + Compiler executable checksum: 8e30ce17ad1eefe3f15199dda02dd603 + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_95659.dir/' + as -v --64 -o CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o /tmp/ccuanIJF.s + GNU assembler version 2.46.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.46.0 + COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.' + Linking C executable cmTC_95659 + /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_95659.dir/link.txt --verbose=1 + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper + Target: x86_64-pc-linux-gnu + Configured with: /tmp/pkg/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust,cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://github.com/CachyOS/CachyOS-PKGBUILDS/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --disable-fixincludes + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 16.1.1 20260430 (GCC) + COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_95659' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_95659.' + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cc47sS3n.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s_asneeded -plugin-opt=-pass-through=-latomic_asneeded -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s_asneeded --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_95659 /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o -lgcc -lgcc_s_asneeded -latomic_asneeded -lc -lgcc -lgcc_s_asneeded /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o + collect2 version 16.1.1 20260430 + /usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cc47sS3n.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s_asneeded -plugin-opt=-pass-through=-latomic_asneeded -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s_asneeded --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_95659 /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o -lgcc -lgcc_s_asneeded -latomic_asneeded -lc -lgcc -lgcc_s_asneeded /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o + GNU ld (GNU Binutils) 2.46.0 + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_95659' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_95659.' + /usr/bin/cc -v -Wl,-v CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o -o cmTC_95659 + make[1]: Leaving directory '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-drPS9o' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:217 (message)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include] + add: [/usr/local/include] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include;/usr/local/include;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:253 (message)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|"|[0-9]+>[ -]*Build:[ 0-9]+ ms[ ]*)?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-drPS9o'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_95659/fast] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_95659.dir/build.make CMakeFiles/cmTC_95659.dir/build] + ignore line: [make[1]: Entering directory '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-drPS9o'] + ignore line: [Building C object CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /tmp/pkg/src/gcc/configure --enable-languages=ada c c++ d fortran go lto m2 objc obj-c++ rust cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://github.com/CachyOS/CachyOS-PKGBUILDS/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --disable-fixincludes] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 16.1.1 20260430 (GCC) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_95659.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/cc1 -quiet -v /usr/share/cmake/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_95659.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/ccuanIJF.s] + ignore line: [GNU C23 (GCC) version 16.1.1 20260430 (x86_64-pc-linux-gnu)] + ignore line: [ compiled by GNU C version 16.1.1 20260430 GMP version 6.3.0 MPFR version 4.2.2 MPC version 1.4.1 isl version isl-0.27-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../x86_64-pc-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 8e30ce17ad1eefe3f15199dda02dd603] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_95659.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o /tmp/ccuanIJF.s] + ignore line: [GNU assembler version 2.46.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.46.0] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_95659] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_95659.dir/link.txt --verbose=1] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /tmp/pkg/src/gcc/configure --enable-languages=ada c c++ d fortran go lto m2 objc obj-c++ rust cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://github.com/CachyOS/CachyOS-PKGBUILDS/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --disable-fixincludes] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 16.1.1 20260430 (GCC) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_95659' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_95659.'] + link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cc47sS3n.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s_asneeded -plugin-opt=-pass-through=-latomic_asneeded -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s_asneeded --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_95659 /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o -lgcc -lgcc_s_asneeded -latomic_asneeded -lc -lgcc -lgcc_s_asneeded /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc47sS3n.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s_asneeded] ==> ignore + arg [-plugin-opt=-pass-through=-latomic_asneeded] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s_asneeded] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-o] ==> ignore + arg [cmTC_95659] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../..] + arg [-L/lib] ==> dir [/lib] + arg [-L/usr/lib] ==> dir [/usr/lib] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lgcc_s_asneeded] ==> lib [gcc_s_asneeded] + arg [-latomic_asneeded] ==> lib [atomic_asneeded] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [-lgcc_s_asneeded] ==> lib [gcc_s_asneeded] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o] + ignore line: [collect2 version 16.1.1 20260430] + ignore line: [/usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cc47sS3n.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s_asneeded -plugin-opt=-pass-through=-latomic_asneeded -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s_asneeded --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_95659 /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_95659.dir/CMakeCCompilerABI.c.o -lgcc -lgcc_s_asneeded -latomic_asneeded -lc -lgcc -lgcc_s_asneeded /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o] + linker tool for 'C': /usr/bin/ld + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o] ==> [/usr/lib/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o] ==> [/usr/lib/crti.o] + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o] ==> [/usr/lib/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../..] ==> [/usr/lib] + collapse library dir [/lib] ==> [/lib] + collapse library dir [/usr/lib] ==> [/usr/lib] + implicit libs: [gcc;gcc_s_asneeded;atomic_asneeded;c;gcc;gcc_s_asneeded] + implicit objs: [/usr/lib/Scrt1.o;/usr/lib/crti.o;/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o;/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o;/usr/lib/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1;/usr/lib;/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:38 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:299 (cmake_determine_linker_id)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Running the C compiler's linker: "/usr/bin/ld" "-v" + GNU ld (GNU Binutils) 2.46.0 + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-ba5ZfS" + binary: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-ba5ZfS" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_CXX_STDLIB_MODULES_JSON: "" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-ba5ZfS' + + Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_3359e/fast + /usr/bin/make -f CMakeFiles/cmTC_3359e.dir/build.make CMakeFiles/cmTC_3359e.dir/build + make[1]: Entering directory '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-ba5ZfS' + Building CXX object CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o + /usr/bin/c++ -v -o CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + Target: x86_64-pc-linux-gnu + Configured with: /tmp/pkg/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust,cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://github.com/CachyOS/CachyOS-PKGBUILDS/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --disable-fixincludes + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 16.1.1 20260430 (GCC) + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_3359e.dir/' + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_3359e.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -o /tmp/ccmbrgSd.s + GNU C++20 (GCC) version 16.1.1 20260430 (x86_64-pc-linux-gnu) + compiled by GNU C version 16.1.1 20260430, GMP version 6.3.0, MPFR version 4.2.2, MPC version 1.4.1, isl version isl-0.27-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../x86_64-pc-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../include/c++/16.1.1 + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../include/c++/16.1.1/x86_64-pc-linux-gnu + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../include/c++/16.1.1/backward + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include + /usr/local/include + /usr/include + End of search list. + Compiler executable checksum: 01fb603e66dcb466f7fe3398b5ee0e67 + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_3359e.dir/' + as -v --64 -o CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccmbrgSd.s + GNU assembler version 2.46.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.46.0 + COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.' + Linking CXX executable cmTC_3359e + /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3359e.dir/link.txt --verbose=1 + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper + Target: x86_64-pc-linux-gnu + Configured with: /tmp/pkg/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust,cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://github.com/CachyOS/CachyOS-PKGBUILDS/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --disable-fixincludes + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 16.1.1 20260430 (GCC) + COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_3359e' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_3359e.' + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cccSo6gO.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-latomic_asneeded -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_3359e /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -latomic_asneeded -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o + collect2 version 16.1.1 20260430 + /usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cccSo6gO.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-latomic_asneeded -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_3359e /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -latomic_asneeded -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o + GNU ld (GNU Binutils) 2.46.0 + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_3359e' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_3359e.' + /usr/bin/c++ -v -Wl,-v CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_3359e + make[1]: Leaving directory '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-ba5ZfS' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:217 (message)" + - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../include/c++/16.1.1] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../include/c++/16.1.1/x86_64-pc-linux-gnu] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../include/c++/16.1.1/backward] + add: [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include] + add: [/usr/local/include] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../include/c++/16.1.1] ==> [/usr/include/c++/16.1.1] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../include/c++/16.1.1/x86_64-pc-linux-gnu] ==> [/usr/include/c++/16.1.1/x86_64-pc-linux-gnu] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../include/c++/16.1.1/backward] ==> [/usr/include/c++/16.1.1/backward] + collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/16.1.1;/usr/include/c++/16.1.1/x86_64-pc-linux-gnu;/usr/include/c++/16.1.1/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include;/usr/local/include;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:253 (message)" + - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|"|[0-9]+>[ -]*Build:[ 0-9]+ ms[ ]*)?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-ba5ZfS'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_3359e/fast] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_3359e.dir/build.make CMakeFiles/cmTC_3359e.dir/build] + ignore line: [make[1]: Entering directory '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-ba5ZfS'] + ignore line: [Building CXX object CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /tmp/pkg/src/gcc/configure --enable-languages=ada c c++ d fortran go lto m2 objc obj-c++ rust cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://github.com/CachyOS/CachyOS-PKGBUILDS/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --disable-fixincludes] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 16.1.1 20260430 (GCC) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_3359e.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_3359e.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -o /tmp/ccmbrgSd.s] + ignore line: [GNU C++20 (GCC) version 16.1.1 20260430 (x86_64-pc-linux-gnu)] + ignore line: [ compiled by GNU C version 16.1.1 20260430 GMP version 6.3.0 MPFR version 4.2.2 MPC version 1.4.1 isl version isl-0.27-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../x86_64-pc-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../include/c++/16.1.1] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../include/c++/16.1.1/x86_64-pc-linux-gnu] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../include/c++/16.1.1/backward] + ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 01fb603e66dcb466f7fe3398b5ee0e67] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_3359e.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccmbrgSd.s] + ignore line: [GNU assembler version 2.46.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.46.0] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_3359e] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3359e.dir/link.txt --verbose=1] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Configured with: /tmp/pkg/src/gcc/configure --enable-languages=ada c c++ d fortran go lto m2 objc obj-c++ rust cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://github.com/CachyOS/CachyOS-PKGBUILDS/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --disable-fixincludes] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 16.1.1 20260430 (GCC) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_3359e' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_3359e.'] + link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cccSo6gO.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-latomic_asneeded -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_3359e /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -latomic_asneeded -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cccSo6gO.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-latomic_asneeded] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-o] ==> ignore + arg [cmTC_3359e] ==> ignore + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../..] + arg [-L/lib] ==> dir [/lib] + arg [-L/usr/lib] ==> dir [/usr/lib] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-latomic_asneeded] ==> lib [atomic_asneeded] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o] + arg [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o] + ignore line: [collect2 version 16.1.1 20260430] + ignore line: [/usr/bin/ld -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cccSo6gO.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-latomic_asneeded -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_3359e /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_3359e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -latomic_asneeded -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o] + linker tool for 'CXX': /usr/bin/ld + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/Scrt1.o] ==> [/usr/lib/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crti.o] ==> [/usr/lib/crti.o] + collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib/crtn.o] ==> [/usr/lib/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/../../..] ==> [/usr/lib] + collapse library dir [/lib] ==> [/lib] + collapse library dir [/usr/lib] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;atomic_asneeded;c;gcc_s;gcc] + implicit objs: [/usr/lib/Scrt1.o;/usr/lib/crti.o;/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtbeginS.o;/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/crtendS.o;/usr/lib/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1;/usr/lib;/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:38 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:299 (cmake_determine_linker_id)" + - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Running the CXX compiler's linker: "/usr/bin/ld" "-v" + GNU ld (GNU Binutils) 2.46.0 + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:104 (try_compile)" + - "/usr/share/cmake/Modules/CheckCSourceCompiles.cmake:103 (cmake_check_source_compiles)" + - "/usr/share/cmake/Modules/FindThreads.cmake:160 (check_c_source_compiles)" + - "/usr/share/cmake/Modules/FindThreads.cmake:226 (_threads_check_libc)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6/Qt6Dependencies.cmake:38 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:202 (include)" + - "CMakeLists.txt:8 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-kpWdRy" + binary: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-kpWdRy" + cmakeVariables: + CMAKE_CXX_STDLIB_MODULES_JSON: "" + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/usr/lib/cmake/Qt6;/usr/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;/usr/lib/cmake/Qt6/3rdparty/kwin" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-kpWdRy' + + Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_7daa3/fast + /usr/bin/make -f CMakeFiles/cmTC_7daa3.dir/build.make CMakeFiles/cmTC_7daa3.dir/build + make[1]: Entering directory '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-kpWdRy' + Building C object CMakeFiles/cmTC_7daa3.dir/src.c.o + /usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_7daa3.dir/src.c.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-kpWdRy/src.c + Linking C executable cmTC_7daa3 + /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7daa3.dir/link.txt --verbose=1 + /usr/bin/cc CMakeFiles/cmTC_7daa3.dir/src.c.o -o cmTC_7daa3 + make[1]: Leaving directory '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-kpWdRy' + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:104 (try_compile)" + - "/usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake:103 (cmake_check_source_compiles)" + - "/usr/lib/cmake/Qt6/FindWrapAtomic.cmake:36 (check_cxx_source_compiles)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake:36 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Core/Qt6CoreConfig.cmake:52 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + checks: + - "Performing Test HAVE_STDATOMIC" + directories: + source: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-tVEkqn" + binary: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-tVEkqn" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_STDLIB_MODULES_JSON: "" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/usr/lib/cmake/Qt6;/usr/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;/usr/lib/cmake/Qt6/3rdparty/kwin" + buildResult: + variable: "HAVE_STDATOMIC" + cached: true + stdout: | + Change Dir: '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-tVEkqn' + + Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_7ab7f/fast + /usr/bin/make -f CMakeFiles/cmTC_7ab7f.dir/build.make CMakeFiles/cmTC_7ab7f.dir/build + make[1]: Entering directory '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-tVEkqn' + Building CXX object CMakeFiles/cmTC_7ab7f.dir/src.cxx.o + /usr/bin/c++ -DHAVE_STDATOMIC -std=gnu++20 -o CMakeFiles/cmTC_7ab7f.dir/src.cxx.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-tVEkqn/src.cxx + Linking CXX executable cmTC_7ab7f + /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7ab7f.dir/link.txt --verbose=1 + /usr/bin/c++ CMakeFiles/cmTC_7ab7f.dir/src.cxx.o -o cmTC_7ab7f + make[1]: Leaving directory '/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/CMakeScratch/TryCompile-tVEkqn' + + exitCode: 0 + - + kind: "find_package-v1" + backtrace: + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:100 (find_package)" + - "/usr/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake:43 (_qt_internal_find_tool_dependencies)" + - "/usr/lib/cmake/Qt6Core/Qt6CoreConfig.cmake:52 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + name: "Qt6CoreTools" + configs: + - + filename: "Qt6CoreTools.cps" + kind: "cps" + - + filename: "qt6coretools.cps" + kind: "cps" + - + filename: "Qt6CoreToolsConfig.cmake" + kind: "cmake" + - + filename: "qt6coretools-config.cmake" + kind: "cmake" + version_request: + version: "6.11.1" + version_complete: "6.11.1" + exact: false + settings: + required: "optional" + quiet: false + global: false + policy_scope: true + bypass_provider: false + names: + - "Qt6CoreTools" + search_paths: + - "/usr/lib/cmake/Qt6Core/.." + - "/usr/lib/cmake" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/Qt6CoreToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/qt6coretools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/Qt6CoreToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/qt6coretools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/lib/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/lib/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/share/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/share/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/Qt6CoreToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/qt6coretools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/lib/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/lib/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/share/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/share/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/Qt6CoreToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/qt6coretools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/lib/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/lib/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/share/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/share/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/Qt6CoreToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.bun/qt6coretools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.bun/lib/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/lib/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/share/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/share/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/Qt6CoreToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/qt6coretools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/lib/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/lib/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/share/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/share/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/Qt6CoreToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/qt6coretools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/lib/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/lib/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/share/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/share/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/Qt6CoreToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/qt6coretools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/lib/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/lib/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/share/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/share/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/Qt6CoreToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/qt6coretools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/lib/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/lib/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/share/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/share/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/Qt6CoreToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/qt6coretools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/lib/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/lib/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/share/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/share/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/Qt6CoreToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/qt6coretools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/lib/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/share/cps/Qt6CoreTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/share/cps/qt6coretools.cps" + mode: "cps" + reason: "no_exist" + found: + path: "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + mode: "config" + version: "6.11.1" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - + kind: "find_package-v1" + backtrace: + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + name: "Qt6Core" + configs: + - + filename: "Qt6Core.cps" + kind: "cps" + - + filename: "qt6core.cps" + kind: "cps" + - + filename: "Qt6CoreConfig.cmake" + kind: "cmake" + - + filename: "qt6core-config.cmake" + kind: "cmake" + version_request: + exact: false + settings: + required: "optional" + quiet: false + global: false + policy_scope: true + bypass_provider: false + names: + - "Qt6Core" + search_paths: + - "/usr/lib/cmake" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/Qt6CoreConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/qt6core-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/Qt6Core.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/qt6core.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/Qt6Core.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/qt6core.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6CoreConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/qt6core-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6CoreTools/Qt6CoreConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6CoreTools/qt6core-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6CorePrivate/Qt6CoreConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6CorePrivate/qt6core-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Core5CompatPrivate/Qt6CoreConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Core5CompatPrivate/qt6core-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Core5Compat/Qt6CoreConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Core5Compat/qt6core-config.cmake" + mode: "config" + reason: "no_exist" + found: + path: "/usr/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + mode: "config" + version: "6.11.1" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindOpenGL.cmake:408 (find_path)" + - "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake:13 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "path" + variable: "OPENGL_INCLUDE_DIR" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "GL/gl.h" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/include/" + - "/usr/local/" + - "/usr/include/" + - "/usr/" + - "/include/" + - "/usr/X11R6/include/" + - "/usr/X11R6/" + - "/usr/pkg/include/" + - "/usr/pkg/" + - "/opt/include/" + - "/opt/" + - "/usr/include/X11/" + - "/usr/share/doc/NVIDIA_GLX-1.0/include/" + - "/usr/openwin/share/include/" + - "/opt/graphics/OpenGL/include/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/GL/gl.h" + - "/home/pplupo/.config/Antigravity/bin/GL/gl.h" + - "/home/pplupo/.npm-global/bin/GL/gl.h" + - "/home/pplupo/.bun/bin/GL/gl.h" + - "/home/pplupo/.cargo/bin/GL/gl.h" + - "/home/pplupo/.pyenv/shims/GL/gl.h" + - "/home/pplupo/.pyenv/bin/GL/gl.h" + - "/home/pplupo/bin/GL/gl.h" + - "/usr/local/bin/GL/gl.h" + - "/usr/bin/GL/gl.h" + - "/bin/GL/gl.h" + - "/usr/local/sbin/GL/gl.h" + - "/home/pplupo/.local/share/flatpak/exports/bin/GL/gl.h" + - "/var/lib/flatpak/exports/bin/GL/gl.h" + - "/usr/lib/jvm/default/bin/GL/gl.h" + - "/usr/bin/site_perl/GL/gl.h" + - "/usr/bin/vendor_perl/GL/gl.h" + - "/usr/bin/core_perl/GL/gl.h" + - "/home/pplupo/.local/bin/GL/gl.h" + - "/usr/local/include/GL/gl.h" + - "/usr/local/GL/gl.h" + found: "/usr/include/" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_INCLUDE_PATH: + - "/usr/include/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindOpenGL.cmake:414 (find_path)" + - "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake:13 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "path" + variable: "OPENGL_GLX_INCLUDE_DIR" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "GL/glx.h" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/include/" + - "/usr/local/" + - "/usr/include/" + - "/usr/" + - "/include/" + - "/usr/X11R6/include/" + - "/usr/X11R6/" + - "/usr/pkg/include/" + - "/usr/pkg/" + - "/opt/include/" + - "/opt/" + - "/usr/include/X11/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/GL/glx.h" + - "/home/pplupo/.config/Antigravity/bin/GL/glx.h" + - "/home/pplupo/.npm-global/bin/GL/glx.h" + - "/home/pplupo/.bun/bin/GL/glx.h" + - "/home/pplupo/.cargo/bin/GL/glx.h" + - "/home/pplupo/.pyenv/shims/GL/glx.h" + - "/home/pplupo/.pyenv/bin/GL/glx.h" + - "/home/pplupo/bin/GL/glx.h" + - "/usr/local/bin/GL/glx.h" + - "/usr/bin/GL/glx.h" + - "/bin/GL/glx.h" + - "/usr/local/sbin/GL/glx.h" + - "/home/pplupo/.local/share/flatpak/exports/bin/GL/glx.h" + - "/var/lib/flatpak/exports/bin/GL/glx.h" + - "/usr/lib/jvm/default/bin/GL/glx.h" + - "/usr/bin/site_perl/GL/glx.h" + - "/usr/bin/vendor_perl/GL/glx.h" + - "/usr/bin/core_perl/GL/glx.h" + - "/home/pplupo/.local/bin/GL/glx.h" + - "/usr/local/include/GL/glx.h" + - "/usr/local/GL/glx.h" + found: "/usr/include/" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_INCLUDE_PATH: + - "/usr/include/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindOpenGL.cmake:415 (find_path)" + - "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake:13 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "path" + variable: "OPENGL_EGL_INCLUDE_DIR" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "EGL/egl.h" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/include/" + - "/usr/local/" + - "/usr/include/" + - "/usr/" + - "/include/" + - "/usr/X11R6/include/" + - "/usr/X11R6/" + - "/usr/pkg/include/" + - "/usr/pkg/" + - "/opt/include/" + - "/opt/" + - "/usr/include/X11/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/EGL/egl.h" + - "/home/pplupo/.config/Antigravity/bin/EGL/egl.h" + - "/home/pplupo/.npm-global/bin/EGL/egl.h" + - "/home/pplupo/.bun/bin/EGL/egl.h" + - "/home/pplupo/.cargo/bin/EGL/egl.h" + - "/home/pplupo/.pyenv/shims/EGL/egl.h" + - "/home/pplupo/.pyenv/bin/EGL/egl.h" + - "/home/pplupo/bin/EGL/egl.h" + - "/usr/local/bin/EGL/egl.h" + - "/usr/bin/EGL/egl.h" + - "/bin/EGL/egl.h" + - "/usr/local/sbin/EGL/egl.h" + - "/home/pplupo/.local/share/flatpak/exports/bin/EGL/egl.h" + - "/var/lib/flatpak/exports/bin/EGL/egl.h" + - "/usr/lib/jvm/default/bin/EGL/egl.h" + - "/usr/bin/site_perl/EGL/egl.h" + - "/usr/bin/vendor_perl/EGL/egl.h" + - "/usr/bin/core_perl/EGL/egl.h" + - "/home/pplupo/.local/bin/EGL/egl.h" + - "/usr/local/include/EGL/egl.h" + - "/usr/local/EGL/egl.h" + found: "/usr/include/" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_INCLUDE_PATH: + - "/usr/include/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindOpenGL.cmake:416 (find_path)" + - "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake:13 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "path" + variable: "OPENGL_GLES2_INCLUDE_DIR" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "GLES2/gl2.h" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/include/" + - "/usr/local/" + - "/usr/include/" + - "/usr/" + - "/include/" + - "/usr/X11R6/include/" + - "/usr/X11R6/" + - "/usr/pkg/include/" + - "/usr/pkg/" + - "/opt/include/" + - "/opt/" + - "/usr/include/X11/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/GLES2/gl2.h" + - "/home/pplupo/.config/Antigravity/bin/GLES2/gl2.h" + - "/home/pplupo/.npm-global/bin/GLES2/gl2.h" + - "/home/pplupo/.bun/bin/GLES2/gl2.h" + - "/home/pplupo/.cargo/bin/GLES2/gl2.h" + - "/home/pplupo/.pyenv/shims/GLES2/gl2.h" + - "/home/pplupo/.pyenv/bin/GLES2/gl2.h" + - "/home/pplupo/bin/GLES2/gl2.h" + - "/usr/local/bin/GLES2/gl2.h" + - "/usr/bin/GLES2/gl2.h" + - "/bin/GLES2/gl2.h" + - "/usr/local/sbin/GLES2/gl2.h" + - "/home/pplupo/.local/share/flatpak/exports/bin/GLES2/gl2.h" + - "/var/lib/flatpak/exports/bin/GLES2/gl2.h" + - "/usr/lib/jvm/default/bin/GLES2/gl2.h" + - "/usr/bin/site_perl/GLES2/gl2.h" + - "/usr/bin/vendor_perl/GLES2/gl2.h" + - "/usr/bin/core_perl/GLES2/gl2.h" + - "/home/pplupo/.local/bin/GLES2/gl2.h" + - "/usr/local/include/GLES2/gl2.h" + - "/usr/local/GLES2/gl2.h" + found: "/usr/include/" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_INCLUDE_PATH: + - "/usr/include/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindOpenGL.cmake:417 (find_path)" + - "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake:13 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "path" + variable: "OPENGL_GLES3_INCLUDE_DIR" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "GLES3/gl3.h" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/include/" + - "/usr/local/" + - "/usr/include/" + - "/usr/" + - "/include/" + - "/usr/X11R6/include/" + - "/usr/X11R6/" + - "/usr/pkg/include/" + - "/usr/pkg/" + - "/opt/include/" + - "/opt/" + - "/usr/include/X11/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/GLES3/gl3.h" + - "/home/pplupo/.config/Antigravity/bin/GLES3/gl3.h" + - "/home/pplupo/.npm-global/bin/GLES3/gl3.h" + - "/home/pplupo/.bun/bin/GLES3/gl3.h" + - "/home/pplupo/.cargo/bin/GLES3/gl3.h" + - "/home/pplupo/.pyenv/shims/GLES3/gl3.h" + - "/home/pplupo/.pyenv/bin/GLES3/gl3.h" + - "/home/pplupo/bin/GLES3/gl3.h" + - "/usr/local/bin/GLES3/gl3.h" + - "/usr/bin/GLES3/gl3.h" + - "/bin/GLES3/gl3.h" + - "/usr/local/sbin/GLES3/gl3.h" + - "/home/pplupo/.local/share/flatpak/exports/bin/GLES3/gl3.h" + - "/var/lib/flatpak/exports/bin/GLES3/gl3.h" + - "/usr/lib/jvm/default/bin/GLES3/gl3.h" + - "/usr/bin/site_perl/GLES3/gl3.h" + - "/usr/bin/vendor_perl/GLES3/gl3.h" + - "/usr/bin/core_perl/GLES3/gl3.h" + - "/home/pplupo/.local/bin/GLES3/gl3.h" + - "/usr/local/include/GLES3/gl3.h" + - "/usr/local/GLES3/gl3.h" + found: "/usr/include/" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_INCLUDE_PATH: + - "/usr/include/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindOpenGL.cmake:418 (find_path)" + - "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake:13 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "path" + variable: "OPENGL_xmesa_INCLUDE_DIR" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "GL/xmesa.h" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/include/" + - "/usr/local/" + - "/usr/include/" + - "/usr/" + - "/include/" + - "/usr/X11R6/include/" + - "/usr/X11R6/" + - "/usr/pkg/include/" + - "/usr/pkg/" + - "/opt/include/" + - "/opt/" + - "/usr/include/X11/" + - "/usr/share/doc/NVIDIA_GLX-1.0/include/" + - "/usr/openwin/share/include/" + - "/opt/graphics/OpenGL/include/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/GL/xmesa.h" + - "/home/pplupo/.config/Antigravity/bin/GL/xmesa.h" + - "/home/pplupo/.npm-global/bin/GL/xmesa.h" + - "/home/pplupo/.bun/bin/GL/xmesa.h" + - "/home/pplupo/.cargo/bin/GL/xmesa.h" + - "/home/pplupo/.pyenv/shims/GL/xmesa.h" + - "/home/pplupo/.pyenv/bin/GL/xmesa.h" + - "/home/pplupo/bin/GL/xmesa.h" + - "/usr/local/bin/GL/xmesa.h" + - "/usr/bin/GL/xmesa.h" + - "/bin/GL/xmesa.h" + - "/usr/local/sbin/GL/xmesa.h" + - "/home/pplupo/.local/share/flatpak/exports/bin/GL/xmesa.h" + - "/var/lib/flatpak/exports/bin/GL/xmesa.h" + - "/usr/lib/jvm/default/bin/GL/xmesa.h" + - "/usr/bin/site_perl/GL/xmesa.h" + - "/usr/bin/vendor_perl/GL/xmesa.h" + - "/usr/bin/core_perl/GL/xmesa.h" + - "/home/pplupo/.local/bin/GL/xmesa.h" + - "/usr/local/include/GL/xmesa.h" + - "/usr/local/GL/xmesa.h" + - "/usr/include/GL/xmesa.h" + - "/usr/GL/xmesa.h" + - "/include/GL/xmesa.h" + - "/usr/X11R6/include/GL/xmesa.h" + - "/usr/X11R6/GL/xmesa.h" + - "/usr/pkg/include/GL/xmesa.h" + - "/usr/pkg/GL/xmesa.h" + - "/opt/include/GL/xmesa.h" + - "/opt/GL/xmesa.h" + - "/usr/include/X11/GL/xmesa.h" + - "/usr/share/doc/NVIDIA_GLX-1.0/include/GL/xmesa.h" + - "/usr/openwin/share/include/GL/xmesa.h" + - "/opt/graphics/OpenGL/include/GL/xmesa.h" + found: false + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_INCLUDE_PATH: + - "/usr/include/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindOpenGL.cmake:424 (find_path)" + - "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake:13 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "path" + variable: "OPENGL_GLU_INCLUDE_DIR" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "GL/glu.h" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/include/" + - "/usr/local/" + - "/usr/include/" + - "/usr/" + - "/include/" + - "/usr/X11R6/include/" + - "/usr/X11R6/" + - "/usr/pkg/include/" + - "/usr/pkg/" + - "/opt/include/" + - "/opt/" + - "/usr/include/X11/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/GL/glu.h" + - "/home/pplupo/.config/Antigravity/bin/GL/glu.h" + - "/home/pplupo/.npm-global/bin/GL/glu.h" + - "/home/pplupo/.bun/bin/GL/glu.h" + - "/home/pplupo/.cargo/bin/GL/glu.h" + - "/home/pplupo/.pyenv/shims/GL/glu.h" + - "/home/pplupo/.pyenv/bin/GL/glu.h" + - "/home/pplupo/bin/GL/glu.h" + - "/usr/local/bin/GL/glu.h" + - "/usr/bin/GL/glu.h" + - "/bin/GL/glu.h" + - "/usr/local/sbin/GL/glu.h" + - "/home/pplupo/.local/share/flatpak/exports/bin/GL/glu.h" + - "/var/lib/flatpak/exports/bin/GL/glu.h" + - "/usr/lib/jvm/default/bin/GL/glu.h" + - "/usr/bin/site_perl/GL/glu.h" + - "/usr/bin/vendor_perl/GL/glu.h" + - "/usr/bin/core_perl/GL/glu.h" + - "/home/pplupo/.local/bin/GL/glu.h" + - "/usr/local/include/GL/glu.h" + - "/usr/local/GL/glu.h" + found: "/usr/include/" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_INCLUDE_PATH: + - "/usr/include/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindOpenGL.cmake:438 (find_library)" + - "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake:13 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "library" + variable: "OPENGL_opengl_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "OpenGL" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/" + - "/usr/local/" + - "/usr/lib/" + - "/usr/" + - "/lib/" + - "/usr/X11R6/lib/" + - "/usr/X11R6/" + - "/usr/pkg/lib/" + - "/usr/pkg/" + - "/opt/lib/" + - "/opt/" + - "/usr/lib/X11/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/" + - "/usr/local/" + found: "/usr/lib/libOpenGL.so" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindOpenGL.cmake:443 (find_library)" + - "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake:13 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "library" + variable: "OPENGL_glx_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "GLX" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/libglvnd/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/libglvnd/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/libglvnd/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/libglvnd/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/libglvnd/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/libglvnd/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/libglvnd/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/libglvnd/" + - "/home/pplupo/bin/" + - "/usr/local/bin/libglvnd/" + - "/usr/local/bin/" + - "/usr/bin/libglvnd/" + - "/usr/bin/" + - "/bin/libglvnd/" + - "/bin/" + - "/usr/local/sbin/libglvnd/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/libglvnd/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/libglvnd/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/libglvnd/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/libglvnd/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/libglvnd/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/libglvnd/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/libglvnd/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/libglvnd/" + - "/usr/local/lib/" + - "/usr/local/libglvnd/" + - "/usr/local/" + - "/usr/lib/libglvnd/" + - "/usr/lib/" + - "/usr/libglvnd/" + - "/usr/" + - "/lib/libglvnd/" + - "/lib/" + - "/usr/X11R6/lib/libglvnd/" + - "/usr/X11R6/lib/" + - "/usr/X11R6/libglvnd/" + - "/usr/X11R6/" + - "/usr/pkg/lib/libglvnd/" + - "/usr/pkg/lib/" + - "/usr/pkg/libglvnd/" + - "/usr/pkg/" + - "/opt/lib/libglvnd/" + - "/opt/lib/" + - "/opt/libglvnd/" + - "/opt/" + - "/usr/lib/X11/libglvnd/" + - "/usr/lib/X11/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/libglvnd/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/libglvnd/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/libglvnd/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/libglvnd/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/libglvnd/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/libglvnd/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/libglvnd/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/libglvnd/" + - "/home/pplupo/bin/" + - "/usr/local/bin/libglvnd/" + - "/usr/local/bin/" + - "/usr/bin/libglvnd/" + - "/usr/bin/" + - "/bin/libglvnd/" + - "/bin/" + - "/usr/local/sbin/libglvnd/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/libglvnd/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/libglvnd/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/libglvnd/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/libglvnd/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/libglvnd/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/libglvnd/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/libglvnd/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/libglvnd/" + - "/usr/local/lib/" + - "/usr/local/libglvnd/" + - "/usr/local/" + - "/usr/lib/libglvnd/" + found: "/usr/lib/libGLX.so" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindOpenGL.cmake:449 (find_library)" + - "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake:13 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "library" + variable: "OPENGL_egl_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "EGL" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/libglvnd/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/libglvnd/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/libglvnd/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/libglvnd/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/libglvnd/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/libglvnd/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/libglvnd/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/libglvnd/" + - "/home/pplupo/bin/" + - "/usr/local/bin/libglvnd/" + - "/usr/local/bin/" + - "/usr/bin/libglvnd/" + - "/usr/bin/" + - "/bin/libglvnd/" + - "/bin/" + - "/usr/local/sbin/libglvnd/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/libglvnd/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/libglvnd/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/libglvnd/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/libglvnd/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/libglvnd/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/libglvnd/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/libglvnd/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/libglvnd/" + - "/usr/local/lib/" + - "/usr/local/libglvnd/" + - "/usr/local/" + - "/usr/lib/libglvnd/" + - "/usr/lib/" + - "/usr/libglvnd/" + - "/usr/" + - "/lib/libglvnd/" + - "/lib/" + - "/usr/X11R6/lib/libglvnd/" + - "/usr/X11R6/lib/" + - "/usr/X11R6/libglvnd/" + - "/usr/X11R6/" + - "/usr/pkg/lib/libglvnd/" + - "/usr/pkg/lib/" + - "/usr/pkg/libglvnd/" + - "/usr/pkg/" + - "/opt/lib/libglvnd/" + - "/opt/lib/" + - "/opt/libglvnd/" + - "/opt/" + - "/usr/lib/X11/libglvnd/" + - "/usr/lib/X11/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/libglvnd/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/libglvnd/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/libglvnd/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/libglvnd/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/libglvnd/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/libglvnd/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/libglvnd/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/libglvnd/" + - "/home/pplupo/bin/" + - "/usr/local/bin/libglvnd/" + - "/usr/local/bin/" + - "/usr/bin/libglvnd/" + - "/usr/bin/" + - "/bin/libglvnd/" + - "/bin/" + - "/usr/local/sbin/libglvnd/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/libglvnd/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/libglvnd/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/libglvnd/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/libglvnd/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/libglvnd/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/libglvnd/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/libglvnd/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/libglvnd/" + - "/usr/local/lib/" + - "/usr/local/libglvnd/" + - "/usr/local/" + - "/usr/lib/libglvnd/" + found: "/usr/lib/libEGL.so" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindOpenGL.cmake:455 (find_library)" + - "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake:13 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "library" + variable: "OPENGL_gles2_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "GLESv2" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/" + - "/usr/local/" + - "/usr/lib/" + - "/usr/" + - "/lib/" + - "/usr/X11R6/lib/" + - "/usr/X11R6/" + - "/usr/pkg/lib/" + - "/usr/pkg/" + - "/opt/lib/" + - "/opt/" + - "/usr/lib/X11/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/" + - "/usr/local/" + found: "/usr/lib/libGLESv2.so" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindOpenGL.cmake:460 (find_library)" + - "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake:13 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "library" + variable: "OPENGL_gles3_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "GLESv3" + - "GLESv2" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/" + - "/usr/local/" + - "/usr/lib/" + - "/usr/" + - "/lib/" + - "/usr/X11R6/lib/" + - "/usr/X11R6/" + - "/usr/pkg/lib/" + - "/usr/pkg/" + - "/opt/lib/" + - "/opt/" + - "/usr/lib/X11/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/" + - "/usr/local/" + - "/usr/lib/" + - "/usr/" + - "/lib/" + - "/usr/X11R6/lib/" + - "/usr/X11R6/" + - "/usr/pkg/lib/" + - "/usr/pkg/" + - "/opt/lib/" + - "/opt/" + - "/usr/lib/X11/" + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/" + - "/usr/local/" + found: "/usr/lib/libGLESv2.so" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindOpenGL.cmake:466 (find_library)" + - "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake:13 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "library" + variable: "OPENGL_glu_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "GLU" + - "MesaGLU" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/" + - "/usr/local/" + - "/usr/lib/" + - "/usr/" + - "/lib/" + - "/usr/X11R6/lib/" + - "/usr/X11R6/" + - "/usr/pkg/lib/" + - "/usr/pkg/" + - "/opt/lib/" + - "/opt/" + - "/usr/lib/X11/" + - "/opt/graphics/OpenGL/lib/" + - "/usr/openwin/lib/" + - "/usr/shlib/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/" + - "/usr/local/" + found: "/usr/lib/libGLU.so" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindVulkan.cmake:409 (find_path)" + - "/usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake:13 (find_package)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:34 (find_package)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "path" + variable: "Vulkan_INCLUDE_DIR" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "vulkan/vulkan.h" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/include/" + - "/usr/local/" + - "/usr/include/" + - "/usr/" + - "/include/" + - "/usr/X11R6/include/" + - "/usr/X11R6/" + - "/usr/pkg/include/" + - "/usr/pkg/" + - "/opt/include/" + - "/opt/" + - "/usr/include/X11/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/vulkan/vulkan.h" + - "/home/pplupo/.config/Antigravity/bin/vulkan/vulkan.h" + - "/home/pplupo/.npm-global/bin/vulkan/vulkan.h" + - "/home/pplupo/.bun/bin/vulkan/vulkan.h" + - "/home/pplupo/.cargo/bin/vulkan/vulkan.h" + - "/home/pplupo/.pyenv/shims/vulkan/vulkan.h" + - "/home/pplupo/.pyenv/bin/vulkan/vulkan.h" + - "/home/pplupo/bin/vulkan/vulkan.h" + - "/usr/local/bin/vulkan/vulkan.h" + - "/usr/bin/vulkan/vulkan.h" + - "/bin/vulkan/vulkan.h" + - "/usr/local/sbin/vulkan/vulkan.h" + - "/home/pplupo/.local/share/flatpak/exports/bin/vulkan/vulkan.h" + - "/var/lib/flatpak/exports/bin/vulkan/vulkan.h" + - "/usr/lib/jvm/default/bin/vulkan/vulkan.h" + - "/usr/bin/site_perl/vulkan/vulkan.h" + - "/usr/bin/vendor_perl/vulkan/vulkan.h" + - "/usr/bin/core_perl/vulkan/vulkan.h" + - "/home/pplupo/.local/bin/vulkan/vulkan.h" + - "/usr/local/include/vulkan/vulkan.h" + - "/usr/local/vulkan/vulkan.h" + - "/usr/include/vulkan/vulkan.h" + - "/usr/vulkan/vulkan.h" + - "/include/vulkan/vulkan.h" + - "/usr/X11R6/include/vulkan/vulkan.h" + - "/usr/X11R6/vulkan/vulkan.h" + - "/usr/pkg/include/vulkan/vulkan.h" + - "/usr/pkg/vulkan/vulkan.h" + - "/opt/include/vulkan/vulkan.h" + - "/opt/vulkan/vulkan.h" + - "/usr/include/X11/vulkan/vulkan.h" + found: false + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_INCLUDE_PATH: + - "/usr/include/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindVulkan.cmake:416 (find_library)" + - "/usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake:13 (find_package)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:34 (find_package)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "library" + variable: "Vulkan_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "vulkan" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/" + - "/usr/local/" + - "/usr/lib/" + - "/usr/" + - "/lib/" + - "/usr/X11R6/lib/" + - "/usr/X11R6/" + - "/usr/pkg/lib/" + - "/usr/pkg/" + - "/opt/lib/" + - "/opt/" + - "/usr/lib/X11/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/lib/" + - "/usr/local/" + found: "/usr/lib/libvulkan.so" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindVulkan.cmake:424 (find_program)" + - "/usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake:13 (find_package)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:34 (find_package)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "program" + variable: "Vulkan_GLSLC_EXECUTABLE" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "glslc" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/bin/" + - "/usr/local/sbin/" + - "/usr/local/" + - "/usr/bin/" + - "/usr/sbin/" + - "/usr/" + - "/bin/" + - "/sbin/" + - "/usr/X11R6/bin/" + - "/usr/X11R6/sbin/" + - "/usr/X11R6/" + - "/usr/pkg/bin/" + - "/usr/pkg/sbin/" + - "/usr/pkg/" + - "/opt/bin/" + - "/opt/sbin/" + - "/opt/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/glslc" + - "/home/pplupo/.config/Antigravity/bin/glslc" + - "/home/pplupo/.npm-global/bin/glslc" + - "/home/pplupo/.bun/bin/glslc" + - "/home/pplupo/.cargo/bin/glslc" + - "/home/pplupo/.pyenv/shims/glslc" + - "/home/pplupo/.pyenv/bin/glslc" + - "/home/pplupo/bin/glslc" + - "/usr/local/bin/glslc" + found: "/usr/bin/glslc" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindVulkan.cmake:432 (find_program)" + - "/usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake:13 (find_package)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:34 (find_package)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:37 (_qt_internal_find_third_party_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + mode: "program" + variable: "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "glslangValidator" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/bin/" + - "/usr/local/sbin/" + - "/usr/local/" + - "/usr/bin/" + - "/usr/sbin/" + - "/usr/" + - "/bin/" + - "/sbin/" + - "/usr/X11R6/bin/" + - "/usr/X11R6/sbin/" + - "/usr/X11R6/" + - "/usr/pkg/bin/" + - "/usr/pkg/sbin/" + - "/usr/pkg/" + - "/opt/bin/" + - "/opt/sbin/" + - "/opt/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/glslangValidator" + - "/home/pplupo/.config/Antigravity/bin/glslangValidator" + - "/home/pplupo/.npm-global/bin/glslangValidator" + - "/home/pplupo/.bun/bin/glslangValidator" + - "/home/pplupo/.cargo/bin/glslangValidator" + - "/home/pplupo/.pyenv/shims/glslangValidator" + - "/home/pplupo/.pyenv/bin/glslangValidator" + - "/home/pplupo/bin/glslangValidator" + - "/usr/local/bin/glslangValidator" + found: "/usr/bin/glslangValidator" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - + kind: "find_package-v1" + backtrace: + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:100 (find_package)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:44 (_qt_internal_find_tool_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + name: "Qt6GuiTools" + configs: + - + filename: "Qt6GuiTools.cps" + kind: "cps" + - + filename: "qt6guitools.cps" + kind: "cps" + - + filename: "Qt6GuiToolsConfig.cmake" + kind: "cmake" + - + filename: "qt6guitools-config.cmake" + kind: "cmake" + version_request: + version: "6.11.1" + version_complete: "6.11.1" + exact: false + settings: + required: "optional" + quiet: false + global: false + policy_scope: true + bypass_provider: false + names: + - "Qt6GuiTools" + search_paths: + - "/usr/lib/cmake/Qt6Gui/.." + - "/usr/lib/cmake" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/Qt6GuiToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/qt6guitools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/Qt6GuiToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/qt6guitools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/lib/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/lib/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/share/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/share/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/Qt6GuiToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/qt6guitools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/lib/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/lib/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/share/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/share/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/Qt6GuiToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/qt6guitools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/lib/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/lib/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/share/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/share/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/Qt6GuiToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.bun/qt6guitools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.bun/lib/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/lib/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/share/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/share/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/Qt6GuiToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/qt6guitools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/lib/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/lib/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/share/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/share/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/Qt6GuiToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/qt6guitools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/lib/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/lib/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/share/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/share/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/Qt6GuiToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/qt6guitools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/lib/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/lib/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/share/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/share/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/Qt6GuiToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/qt6guitools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/lib/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/lib/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/share/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/share/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/Qt6GuiToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/qt6guitools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/lib/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/lib/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/share/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/share/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/Qt6GuiToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/qt6guitools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/lib/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/share/cps/Qt6GuiTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/share/cps/qt6guitools.cps" + mode: "cps" + reason: "no_exist" + found: + path: "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + mode: "config" + version: "6.11.1" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - + kind: "find_package-v1" + backtrace: + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:100 (find_package)" + - "/usr/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake:42 (_qt_internal_find_tool_dependencies)" + - "/usr/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake:50 (include)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:142 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:52 (_qt_internal_find_qt_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + name: "Qt6DBusTools" + configs: + - + filename: "Qt6DBusTools.cps" + kind: "cps" + - + filename: "qt6dbustools.cps" + kind: "cps" + - + filename: "Qt6DBusToolsConfig.cmake" + kind: "cmake" + - + filename: "qt6dbustools-config.cmake" + kind: "cmake" + version_request: + version: "6.11.1" + version_complete: "6.11.1" + exact: false + settings: + required: "optional" + quiet: false + global: false + policy_scope: true + bypass_provider: false + names: + - "Qt6DBusTools" + search_paths: + - "/usr/lib/cmake/Qt6DBus/.." + - "/usr/lib/cmake" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/Qt6DBusToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/qt6dbustools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/Qt6DBusToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/qt6dbustools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/lib/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/lib/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/share/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/share/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/Qt6DBusToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/qt6dbustools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/lib/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/lib/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/share/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/share/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/Qt6DBusToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/qt6dbustools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/lib/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/lib/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/share/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/share/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/Qt6DBusToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.bun/qt6dbustools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.bun/lib/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/lib/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/share/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/share/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/Qt6DBusToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/qt6dbustools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/lib/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/lib/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/share/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/share/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/Qt6DBusToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/qt6dbustools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/lib/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/lib/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/share/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/share/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/Qt6DBusToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/qt6dbustools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/lib/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/lib/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/share/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/share/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/Qt6DBusToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/qt6dbustools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/lib/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/lib/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/share/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/share/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/Qt6DBusToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/qt6dbustools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/lib/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/lib/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/share/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/share/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/Qt6DBusToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/qt6dbustools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/lib/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/share/cps/Qt6DBusTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/share/cps/qt6dbustools.cps" + mode: "cps" + reason: "no_exist" + found: + path: "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake" + mode: "config" + version: "6.11.1" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - + kind: "find_package-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:142 (find_dependency)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake:52 (_qt_internal_find_qt_dependencies)" + - "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + name: "Qt6DBus" + configs: + - + filename: "Qt6DBus.cps" + kind: "cps" + - + filename: "qt6dbus.cps" + kind: "cps" + - + filename: "Qt6DBusConfig.cmake" + kind: "cmake" + - + filename: "qt6dbus-config.cmake" + kind: "cmake" + version_request: + version: "6.11.1" + version_complete: "6.11.1" + exact: false + settings: + required: "optional" + quiet: false + global: false + policy_scope: true + bypass_provider: false + names: + - "Qt6DBus" + search_paths: + - "/usr/lib/cmake/Qt6Gui/.." + - "/usr/lib/cmake" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/Qt6DBusConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/qt6dbus-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/Qt6DBus.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/qt6dbus.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/Qt6DBus.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/qt6dbus.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DBusConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/qt6dbus-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DBusTools/Qt6DBusConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DBusTools/qt6dbus-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DBusPrivate/qt6dbus-config.cmake" + mode: "config" + reason: "no_exist" + found: + path: "/usr/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake" + mode: "config" + version: "6.11.1" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - + kind: "find_package-v1" + backtrace: + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + name: "Qt6Gui" + configs: + - + filename: "Qt6Gui.cps" + kind: "cps" + - + filename: "qt6gui.cps" + kind: "cps" + - + filename: "Qt6GuiConfig.cmake" + kind: "cmake" + - + filename: "qt6gui-config.cmake" + kind: "cmake" + version_request: + exact: false + settings: + required: "optional" + quiet: false + global: false + policy_scope: true + bypass_provider: false + names: + - "Qt6Gui" + search_paths: + - "/usr/lib/cmake" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/Qt6GuiConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/qt6gui-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/Qt6Gui.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/qt6gui.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/Qt6Gui.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/qt6gui.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6GuiConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/qt6gui-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6GuiTools/Qt6GuiConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6GuiTools/qt6gui-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6GuiPrivate/qt6gui-config.cmake" + mode: "config" + reason: "no_exist" + found: + path: "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + mode: "config" + version: "6.11.1" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - + kind: "find_package-v1" + backtrace: + - "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:100 (find_package)" + - "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake:42 (_qt_internal_find_tool_dependencies)" + - "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake:50 (include)" + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + name: "Qt6WidgetsTools" + configs: + - + filename: "Qt6WidgetsTools.cps" + kind: "cps" + - + filename: "qt6widgetstools.cps" + kind: "cps" + - + filename: "Qt6WidgetsToolsConfig.cmake" + kind: "cmake" + - + filename: "qt6widgetstools-config.cmake" + kind: "cmake" + version_request: + version: "6.11.1" + version_complete: "6.11.1" + exact: false + settings: + required: "optional" + quiet: false + global: false + policy_scope: true + bypass_provider: false + names: + - "Qt6WidgetsTools" + search_paths: + - "/usr/lib/cmake/Qt6Widgets/.." + - "/usr/lib/cmake" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/Qt6WidgetsToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/qt6widgetstools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/Qt6WidgetsToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/qt6widgetstools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/lib/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/lib/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/share/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/share/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/Qt6WidgetsToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/qt6widgetstools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/lib/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/lib/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/share/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/share/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/Qt6WidgetsToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/qt6widgetstools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/lib/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/lib/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/share/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/share/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/Qt6WidgetsToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.bun/qt6widgetstools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.bun/lib/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/lib/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/share/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/share/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/Qt6WidgetsToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/qt6widgetstools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/lib/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/lib/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/share/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/share/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/Qt6WidgetsToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/qt6widgetstools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/lib/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/lib/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/share/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/share/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/Qt6WidgetsToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/qt6widgetstools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/lib/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/lib/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/share/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/share/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/Qt6WidgetsToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/qt6widgetstools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/lib/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/lib/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/share/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/share/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/Qt6WidgetsToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/qt6widgetstools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/lib/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/lib/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/share/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/share/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/Qt6WidgetsToolsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/qt6widgetstools-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/lib/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/share/cps/Qt6WidgetsTools.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/share/cps/qt6widgetstools.cps" + mode: "cps" + reason: "no_exist" + found: + path: "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake" + mode: "config" + version: "6.11.1" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - + kind: "find_package-v1" + backtrace: + - "/usr/lib/cmake/Qt6/Qt6Config.cmake:263 (find_package)" + - "CMakeLists.txt:8 (find_package)" + name: "Qt6Widgets" + configs: + - + filename: "Qt6Widgets.cps" + kind: "cps" + - + filename: "qt6widgets.cps" + kind: "cps" + - + filename: "Qt6WidgetsConfig.cmake" + kind: "cmake" + - + filename: "qt6widgets-config.cmake" + kind: "cmake" + version_request: + exact: false + settings: + required: "optional" + quiet: false + global: false + policy_scope: true + bypass_provider: false + names: + - "Qt6Widgets" + search_paths: + - "/usr/lib/cmake" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/Qt6WidgetsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/qt6widgets-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/Qt6Widgets.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/qt6widgets.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/Qt6Widgets.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/qt6widgets.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WidgetsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/qt6widgets-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WidgetsTools/qt6widgets-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WidgetsPrivate/qt6widgets-config.cmake" + mode: "config" + reason: "no_exist" + found: + path: "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake" + mode: "config" + version: "6.11.1" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - + kind: "find_package-v1" + backtrace: + - "CMakeLists.txt:8 (find_package)" + name: "Qt6" + components: + - + name: "Core" + required: true + found: false + - + name: "Gui" + required: true + found: false + - + name: "Widgets" + required: true + found: false + configs: + - + filename: "Qt6.cps" + kind: "cps" + - + filename: "qt6.cps" + kind: "cps" + - + filename: "Qt6Config.cmake" + kind: "cmake" + - + filename: "qt6-config.cmake" + kind: "cmake" + version_request: + exact: false + settings: + required: "required_explicit" + quiet: false + global: false + policy_scope: true + bypass_provider: false + names: + - "Qt6" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/lib/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/pkgRedirects/share/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/lib/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/lib/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/share/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.gemini/antigravity/share/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/lib/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/lib/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/share/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.config/Antigravity/share/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/lib/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/lib/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/share/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.npm-global/share/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.bun/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.bun/lib/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/lib/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/share/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.bun/share/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/lib/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/lib/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/share/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.cargo/share/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/lib/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/lib/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/share/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/shims/share/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/lib/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/lib/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/share/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/.pyenv/share/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/pplupo/lib/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/lib/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/share/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/home/pplupo/share/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/lib/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/lib/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/share/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/local/share/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/lib/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/share/cps/Qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/share/cps/qt6.cps" + mode: "cps" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6XmlPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6XmlPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Xml/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Xml/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6XcbQpaPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6XcbQpaPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WlShellIntegrationPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WlShellIntegrationPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WidgetsTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WidgetsTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WidgetsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WidgetsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Widgets/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Widgets/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebSocketsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebSocketsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebSockets/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebSockets/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineWidgetsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineWidgetsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineWidgets/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineWidgets/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineQuickPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineQuickPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineQuickDelegatesQml/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineQuickDelegatesQml/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineQuick/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineQuick/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineCoreTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineCoreTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineCorePrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineCorePrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineCore/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebEngineCore/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebChannelQuickPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebChannelQuickPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebChannelQuick/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebChannelQuick/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebChannelPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebChannelPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebChannel/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WebChannel/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WaylandScannerTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WaylandScannerTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WaylandGlobalPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WaylandGlobalPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WaylandClientPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WaylandClientPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WaylandClient/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6WaylandClient/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6VirtualKeyboardSettingsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6VirtualKeyboardSettingsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6VirtualKeyboardSettings/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6VirtualKeyboardSettings/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6VirtualKeyboardQmlPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6VirtualKeyboardQmlPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6VirtualKeyboardQml/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6VirtualKeyboardQml/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6VirtualKeyboardPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6VirtualKeyboardPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6VirtualKeyboard/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6VirtualKeyboard/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6UiToolsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6UiToolsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6UiTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6UiTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6UiPlugin/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6UiPlugin/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ToolsTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ToolsTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Tools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Tools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6TextToSpeechPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6TextToSpeechPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6TextToSpeech/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6TextToSpeech/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6TestPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6TestPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6TestInternalsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6TestInternalsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Test/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Test/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6SvgWidgets/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6SvgWidgets/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6SvgPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6SvgPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Svg/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Svg/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6StateMachineQmlPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6StateMachineQmlPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6StateMachineQml/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6StateMachineQml/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6StateMachinePrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6StateMachinePrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6StateMachine/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6StateMachine/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6SqlPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6SqlPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Sql/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Sql/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6SpatialAudioPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6SpatialAudioPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6SpatialAudio/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6SpatialAudio/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ShaderToolsTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ShaderToolsTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ShaderToolsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ShaderToolsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ShaderTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ShaderTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ScxmlTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ScxmlTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ScxmlQmlPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ScxmlQmlPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ScxmlQml/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ScxmlQml/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ScxmlPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ScxmlPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ScxmlGlobalPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6ScxmlGlobalPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Scxml/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Scxml/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickWidgetsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickWidgetsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickWidgets/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickWidgets/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickVectorImagePrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickVectorImagePrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickVectorImageHelpersPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickVectorImageHelpersPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickVectorImageHelpers/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickVectorImageHelpers/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickVectorImageGeneratorPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickVectorImageGeneratorPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickVectorImage/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickVectorImage/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTimelinePrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTimelinePrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTimelineBlendTreesPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTimelineBlendTreesPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTimelineBlendTrees/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTimelineBlendTrees/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTimeline/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTimeline/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTestUtilsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTestUtilsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTestPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTestPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTest/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTest/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTemplates2Private/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTemplates2Private/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTemplates2/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickTemplates2/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickShapesPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickShapesPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickShapesDesignHelpersPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickShapesDesignHelpersPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickShapes/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickShapes/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickParticlesPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickParticlesPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickLayoutsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickLayoutsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickLayouts/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickLayouts/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickEffectsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickEffectsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickEffects/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickEffects/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickDialogs2UtilsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickDialogs2UtilsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickDialogs2Utils/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickDialogs2Utils/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickDialogs2QuickImplPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickDialogs2QuickImplPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickDialogs2QuickImpl/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickDialogs2QuickImpl/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickDialogs2Private/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickDialogs2Private/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickDialogs2/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickDialogs2/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControlsTestUtilsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControlsTestUtilsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2UniversalStyleImplPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2UniversalStyleImplPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2UniversalStyleImpl/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2UniversalStyleImpl/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2UniversalPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2UniversalPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Universal/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Universal/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Private/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Private/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2MaterialStyleImplPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2MaterialStyleImplPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2MaterialStyleImpl/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2MaterialStyleImpl/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2MaterialPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2MaterialPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Material/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Material/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2ImplPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2ImplPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Impl/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Impl/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2ImagineStyleImpl/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2ImagineStyleImpl/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2ImaginePrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2ImaginePrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Imagine/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Imagine/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2FusionStyleImplPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2FusionStyleImplPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2FusionStyleImpl/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2FusionStyleImpl/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2FusionPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2FusionPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Fusion/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Fusion/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2FluentWinUI3StyleImplPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2FluentWinUI3StyleImplPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2FluentWinUI3StyleImpl/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2FluentWinUI3StyleImpl/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2BasicStyleImplPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2BasicStyleImplPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2BasicStyleImpl/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2BasicStyleImpl/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2BasicPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2BasicPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Basic/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2Basic/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QuickControls2/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DXrPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DXrPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DXr/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DXr/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DUtilsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DUtilsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DUtils/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DUtils/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DSpatialAudioPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DSpatialAudioPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DRuntimeRenderPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DRuntimeRenderPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DRuntimeRender/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DRuntimeRender/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DParticlesPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DParticlesPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DParticles/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DParticles/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DParticleEffects/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DParticleEffects/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DIblBakerPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DIblBakerPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DIblBaker/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DIblBaker/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DHelpersPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DHelpersPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DHelpersImplPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DHelpersImplPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DHelpersImpl/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DHelpersImpl/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DHelpers/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DHelpers/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DGlslParserPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DGlslParserPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DEffects/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DEffects/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DAssetUtilsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DAssetUtilsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DAssetUtils/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DAssetUtils/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DAssetImportPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DAssetImportPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DAssetImport/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3DAssetImport/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3D/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick3D/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Quick/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlXmlListModelPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlXmlListModelPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlXmlListModel/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlXmlListModel/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlWorkerScriptPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlWorkerScriptPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlWorkerScript/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlWorkerScript/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlTypeRegistrarPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlTypeRegistrarPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlToolingSettingsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlToolingSettingsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlNetworkPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlNetworkPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlNetwork/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlNetwork/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlModelsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlModelsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlModels/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlModels/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlMetaPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlMetaPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlMeta/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlMeta/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlLocalStoragePrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlLocalStoragePrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlLocalStorage/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlLocalStorage/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlLSPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlLSPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlIntegration/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlIntegration/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlImportScanner/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlImportScanner/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlFormatPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlFormatPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlDomPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlDomPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlDebugPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlDebugPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlCorePrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlCorePrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlCore/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlCore/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlCompilerPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlCompilerPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlCompiler/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QmlCompiler/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Qml/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Qml/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QDocCatchPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QDocCatchPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QDocCatchGeneratorsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QDocCatchGeneratorsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QDocCatchConversionsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6QDocCatchConversionsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PrintSupportPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PrintSupportPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PrintSupport/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PrintSupport/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PositioningQuickPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PositioningQuickPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PositioningQuick/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PositioningQuick/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PositioningPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PositioningPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Positioning/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Positioning/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PdfWidgetsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PdfWidgetsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PdfWidgets/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PdfWidgets/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PdfQuickPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PdfQuickPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PdfQuick/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PdfQuick/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PdfPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PdfPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Pdf/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Pdf/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PacketProtocolPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6PacketProtocolPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6OpenGLWidgets/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6OpenGLWidgets/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6OpenGLPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6OpenGLPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6OpenGL/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6OpenGL/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6NfcPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6NfcPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Nfc/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Nfc/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6NetworkPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6NetworkPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6NetworkAuthPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6NetworkAuthPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6NetworkAuth/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6NetworkAuth/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Network/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Network/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6MultimediaWidgetsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6MultimediaWidgetsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6MultimediaWidgets/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6MultimediaWidgets/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6MultimediaTestLibPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6MultimediaTestLibPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6MultimediaQuickPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6MultimediaQuickPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6MultimediaPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6MultimediaPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Multimedia/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Multimedia/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LocationPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LocationPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Location/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Location/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LinguistTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LinguistTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Linguist/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Linguist/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsWavefrontMeshPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsWavefrontMeshPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsWavefrontMesh/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsWavefrontMesh/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsSynchronizerPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsSynchronizerPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsSynchronizer/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsSynchronizer/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsStyleKitPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsStyleKitPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsStyleKitImplPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsStyleKitImplPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsStyleKitImpl/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsStyleKitImpl/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsStyleKit/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsStyleKit/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsSharedImagePrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsSharedImagePrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsSharedImage/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsSharedImage/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsSettingsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsSettingsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsSettings/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsSettings/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsQmlModelsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsQmlModelsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsQmlModels/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsQmlModels/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsPlatformPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsPlatformPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsPlatform/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsPlatform/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsFolderListModelPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsFolderListModelPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsFolderListModel/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsFolderListModel/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsAnimationPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsAnimationPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsAnimation/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6LabsAnimation/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6KmsSupportPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6KmsSupportPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Keychain/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Keychain/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6InputSupportPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6InputSupportPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6HunspellInputMethodPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6HunspellInputMethodPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6HunspellInputMethod/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6HunspellInputMethod/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6HostInfo/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6HostInfo/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6HelpPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6HelpPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Help/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Help/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6GuiTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6GuiTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6GuiPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6GuiPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Gui/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Gui/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6FbSupportPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6FbSupportPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6FFmpegMediaPluginImplPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6FFmpegMediaPluginImplPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6EglFsKmsSupportPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6EglFsKmsSupportPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6EglFsKmsGbmSupportPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6EglFsKmsGbmSupportPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6EglFSDeviceIntegrationPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6EglFSDeviceIntegrationPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DeviceDiscoverySupportPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DeviceDiscoverySupportPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DesignerPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DesignerPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DesignerComponentsPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DesignerComponentsPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Designer/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Designer/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DBusTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DBusTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DBusPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DBusPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DBus/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6DBus/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6CoreTools/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6CoreTools/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6CorePrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6CorePrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Core5CompatPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Core5CompatPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Core5Compat/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Core5Compat/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Core/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Core/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Connectivity/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Connectivity/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Concurrent/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Concurrent/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6BundledResonanceAudio/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6BundledResonanceAudio/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6BundledEmbree/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6BundledEmbree/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6BuildInternals/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6BuildInternals/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6BluetoothPrivate/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6BluetoothPrivate/qt6-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Bluetooth/Qt6Config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/lib/cmake/Qt6Bluetooth/qt6-config.cmake" + mode: "config" + reason: "no_exist" + found: + path: "/usr/lib/cmake/Qt6/Qt6Config.cmake" + mode: "config" + version: "6.11.1" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_MODULE_PATH: + - "/usr/lib/cmake/Qt6" + - "/usr/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules" + - "/usr/lib/cmake/Qt6/3rdparty/kwin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindPkgConfig.cmake:517 (find_program)" + - "CMakeLists.txt:9 (find_package)" + mode: "program" + variable: "PKG_CONFIG_EXECUTABLE" + description: "pkg-config executable" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "pkg-config" + - "pkgconf" + candidate_directories: + - "/home/pplupo/.gemini/antigravity/bin/" + - "/home/pplupo/.config/Antigravity/bin/" + - "/home/pplupo/.npm-global/bin/" + - "/home/pplupo/.bun/bin/" + - "/home/pplupo/.cargo/bin/" + - "/home/pplupo/.pyenv/shims/" + - "/home/pplupo/.pyenv/bin/" + - "/home/pplupo/bin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/local/sbin/" + - "/home/pplupo/.local/share/flatpak/exports/bin/" + - "/var/lib/flatpak/exports/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/pplupo/.local/bin/" + - "/usr/local/bin/" + - "/usr/local/sbin/" + - "/usr/local/" + - "/usr/bin/" + - "/usr/sbin/" + - "/usr/" + - "/bin/" + - "/sbin/" + - "/usr/X11R6/bin/" + - "/usr/X11R6/sbin/" + - "/usr/X11R6/" + - "/usr/pkg/bin/" + - "/usr/pkg/sbin/" + - "/usr/pkg/" + - "/opt/bin/" + - "/opt/sbin/" + - "/opt/" + searched_directories: + - "/home/pplupo/.gemini/antigravity/bin/pkg-config" + - "/home/pplupo/.gemini/antigravity/bin/pkgconf" + - "/home/pplupo/.config/Antigravity/bin/pkg-config" + - "/home/pplupo/.config/Antigravity/bin/pkgconf" + - "/home/pplupo/.npm-global/bin/pkg-config" + - "/home/pplupo/.npm-global/bin/pkgconf" + - "/home/pplupo/.bun/bin/pkg-config" + - "/home/pplupo/.bun/bin/pkgconf" + - "/home/pplupo/.cargo/bin/pkg-config" + - "/home/pplupo/.cargo/bin/pkgconf" + - "/home/pplupo/.pyenv/shims/pkg-config" + - "/home/pplupo/.pyenv/shims/pkgconf" + - "/home/pplupo/.pyenv/bin/pkg-config" + - "/home/pplupo/.pyenv/bin/pkgconf" + - "/home/pplupo/bin/pkg-config" + - "/home/pplupo/bin/pkgconf" + - "/usr/local/bin/pkg-config" + - "/usr/local/bin/pkgconf" + found: "/usr/bin/pkg-config" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/FindPkgConfig.cmake:761 (find_library)" + - "/usr/share/cmake/Modules/FindPkgConfig.cmake:811 (_pkg_find_libs)" + - "/usr/share/cmake/Modules/FindPkgConfig.cmake:1149 (_pkg_recalculate)" + - "/usr/share/cmake/Modules/FindPkgConfig.cmake:1166 (_pkg_check_modules_internal)" + - "CMakeLists.txt:10 (pkg_check_modules)" + mode: "library" + variable: "pkgcfg_lib_GLIB2_glib-2.0" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "glib-2.0" + candidate_directories: + - "/usr/lib/" + found: "/usr/lib/libglib-2.0.so" + search_context: + ENV{PATH}: + - "/home/pplupo/.gemini/antigravity/bin" + - "/home/pplupo/.config/Antigravity/bin" + - "/home/pplupo/.npm-global/bin" + - "/home/pplupo/.bun/bin" + - "/home/pplupo/.cargo/bin" + - "/home/pplupo/.pyenv/shims" + - "/home/pplupo/.pyenv/bin" + - "/home/pplupo/bin" + - "/usr/local/bin" + - "/usr/local/bin" + - "/usr/bin" + - "/bin" + - "/usr/local/sbin" + - "/home/pplupo/.local/share/flatpak/exports/bin" + - "/var/lib/flatpak/exports/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + - "/home/pplupo/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" +... diff --git a/wlx/wayland_qt_base/build/CMakeFiles/CMakeDirectoryInformation.cmake b/wlx/wayland_qt_base/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..beb7efd --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.3 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/pplupo/repos/plugins/wlx/wayland_qt_base") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/wlx/wayland_qt_base/build/CMakeFiles/CMakeRuleHashes.txt b/wlx/wayland_qt_base/build/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000..c458a25 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,3 @@ +# Hashes of file build rules. +bafe98226d5aab042a50f878484438bc CMakeFiles/wayland_qt_base_autogen +ac6dee5cafde9716bc5ecc9811ae36bf wayland_qt_base_autogen/timestamp diff --git a/wlx/wayland_qt_base/build/CMakeFiles/InstallScripts.json b/wlx/wayland_qt_base/build/CMakeFiles/InstallScripts.json new file mode 100644 index 0000000..00b6a67 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/InstallScripts.json @@ -0,0 +1,7 @@ +{ + "InstallScripts" : + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/cmake_install.cmake" + ], + "Parallel" : false +} diff --git a/wlx/wayland_qt_base/build/CMakeFiles/Makefile.cmake b/wlx/wayland_qt_base/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..69c5019 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,543 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.3 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/CMakeLists.txt" + "CMakeFiles/4.3.3/CMakeCCompiler.cmake" + "CMakeFiles/4.3.3/CMakeCXXCompiler.cmake" + "CMakeFiles/4.3.3/CMakeSystem.cmake" + "/usr/lib/cmake/Qt6/FindWrapAtomic.cmake" + "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake" + "/usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + "/usr/lib/cmake/Qt6/Qt6Config.cmake" + "/usr/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + "/usr/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + "/usr/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + "/usr/lib/cmake/Qt6/Qt6Dependencies.cmake" + "/usr/lib/cmake/Qt6/Qt6Targets.cmake" + "/usr/lib/cmake/Qt6/Qt6TargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + "/usr/lib/cmake/Qt6/QtFeature.cmake" + "/usr/lib/cmake/Qt6/QtFeatureCommon.cmake" + "/usr/lib/cmake/Qt6/QtInstallPaths.cmake" + "/usr/lib/cmake/Qt6/QtPublicAndroidHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicCMakeEarlyPolicyHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicPluginHelpers_v2.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomAttributionHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomBuildToolHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomCommonGenerationHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomCpeHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomCycloneDXHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomDepHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomDocumentNamespaceHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomExternalReferenceHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomFileHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomGenerationCycloneDXHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomLicenseHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomOpsHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomPurlHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomPythonHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomQtEntityHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomRelationshipHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicSbomSystemDepHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + "/usr/lib/cmake/Qt6/QtPublicWindowsHelpers.cmake" + "/usr/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + "/usr/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" + "/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" + "/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" + "/usr/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" + "/usr/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" + "/usr/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" + "/usr/lib/cmake/Qt6Core/Qt6CoreTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake" + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + "/usr/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake" + "/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake" + "/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake" + "/usr/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake" + "/usr/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake" + "/usr/lib/cmake/Qt6DBus/Qt6DBusTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake" + "/usr/lib/cmake/Qt6DBus/Qt6DBusTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6DBus/Qt6DBusVersionlessAliasTargets.cmake" + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake" + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake" + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake" + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake" + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake" + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6GuiTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginConfig.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargets.cmake" + "/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake" + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake" + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake" + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake" + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake" + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake" + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake" + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake" + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake" + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake" + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake" + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake" + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake" + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake" + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake" + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargetsPrecheck.cmake" + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake" + "/usr/share/cmake/Modules/CMakeCCompiler.cmake.in" + "/usr/share/cmake/Modules/CMakeCCompilerABI.c" + "/usr/share/cmake/Modules/CMakeCInformation.cmake" + "/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake" + "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake" + "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake" + "/usr/share/cmake/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake" + "/usr/share/cmake/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake" + "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake/Modules/CheckCSourceCompiles.cmake" + "/usr/share/cmake/Modules/CheckCXXCompilerFlag.cmake" + "/usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake" + "/usr/share/cmake/Modules/CheckIncludeFile.cmake" + "/usr/share/cmake/Modules/CheckLibraryExists.cmake" + "/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake" + "/usr/share/cmake/Modules/Compiler/GNU.cmake" + "/usr/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake/Modules/FindOpenGL.cmake" + "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake/Modules/FindPackageMessage.cmake" + "/usr/share/cmake/Modules/FindPkgConfig.cmake" + "/usr/share/cmake/Modules/FindThreads.cmake" + "/usr/share/cmake/Modules/FindVulkan.cmake" + "/usr/share/cmake/Modules/GNUInstallDirs.cmake" + "/usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake" + "/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake" + "/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake" + "/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake" + "/usr/share/cmake/Modules/Internal/CMakeInspectCLinker.cmake" + "/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake" + "/usr/share/cmake/Modules/Internal/CheckCompilerFlag.cmake" + "/usr/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake" + "/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" + "/usr/share/cmake/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake/Modules/Linker/GNU-C.cmake" + "/usr/share/cmake/Modules/Linker/GNU-CXX.cmake" + "/usr/share/cmake/Modules/Linker/GNU.cmake" + "/usr/share/cmake/Modules/MacroAddFileDependencies.cmake" + "/usr/share/cmake/Modules/Platform/Linker/GNU.cmake" + "/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake" + "/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake" + "/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake" + "/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake" + "/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake" + "/usr/share/cmake/Modules/Platform/Linux.cmake" + "/usr/share/cmake/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/4.3.3/CMakeSystem.cmake" + "CMakeFiles/4.3.3/CMakeCCompiler.cmake" + "CMakeFiles/4.3.3/CMakeCXXCompiler.cmake" + "CMakeFiles/4.3.3/CMakeCCompiler.cmake" + "CMakeFiles/4.3.3/CMakeCCompiler.cmake" + "CMakeFiles/4.3.3/CMakeCXXCompiler.cmake" + "CMakeFiles/4.3.3/CMakeCXXCompiler.cmake" + "CMakeFiles/wayland_qt_base_autogen.dir/AutogenInfo.json" + ".qt/QtDeploySupport.cmake" + ".qt/QtDeployTargets.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/wayland_qt_base.dir/DependInfo.cmake" + "CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/DependInfo.cmake" + "CMakeFiles/wayland_qt_base_autogen.dir/DependInfo.cmake" + ) diff --git a/wlx/wayland_qt_base/build/CMakeFiles/Makefile2 b/wlx/wayland_qt_base/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..1605177 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/Makefile2 @@ -0,0 +1,189 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.3 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/pplupo/repos/plugins/wlx/wayland_qt_base + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/wayland_qt_base.dir/all +.PHONY : all + +# The main recursive "codegen" target. +codegen: CMakeFiles/wayland_qt_base.dir/codegen +.PHONY : codegen + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/wayland_qt_base.dir/clean +clean: CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/clean +clean: CMakeFiles/wayland_qt_base_autogen.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/wayland_qt_base.dir + +# All Build rule for target. +CMakeFiles/wayland_qt_base.dir/all: CMakeFiles/wayland_qt_base_autogen.dir/all +CMakeFiles/wayland_qt_base.dir/all: CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 "Built target wayland_qt_base" +.PHONY : CMakeFiles/wayland_qt_base.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/wayland_qt_base.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles 16 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/wayland_qt_base.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles 0 +.PHONY : CMakeFiles/wayland_qt_base.dir/rule + +# Convenience name for target. +wayland_qt_base: CMakeFiles/wayland_qt_base.dir/rule +.PHONY : wayland_qt_base + +# codegen rule for target. +CMakeFiles/wayland_qt_base.dir/codegen: CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 "Finished codegen for target wayland_qt_base" +.PHONY : CMakeFiles/wayland_qt_base.dir/codegen + +# clean rule for target. +CMakeFiles/wayland_qt_base.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/clean +.PHONY : CMakeFiles/wayland_qt_base.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir + +# All Build rule for target. +CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/build.make CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/build.make CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num= "Built target wayland_qt_base_autogen_timestamp_deps" +.PHONY : CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles 0 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles 0 +.PHONY : CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/rule + +# Convenience name for target. +wayland_qt_base_autogen_timestamp_deps: CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/rule +.PHONY : wayland_qt_base_autogen_timestamp_deps + +# codegen rule for target. +CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/build.make CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num= "Finished codegen for target wayland_qt_base_autogen_timestamp_deps" +.PHONY : CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/codegen + +# clean rule for target. +CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/build.make CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/clean +.PHONY : CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/wayland_qt_base_autogen.dir + +# All Build rule for target. +CMakeFiles/wayland_qt_base_autogen.dir/all: CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base_autogen.dir/build.make CMakeFiles/wayland_qt_base_autogen.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base_autogen.dir/build.make CMakeFiles/wayland_qt_base_autogen.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=16 "Built target wayland_qt_base_autogen" +.PHONY : CMakeFiles/wayland_qt_base_autogen.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/wayland_qt_base_autogen.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles 1 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/wayland_qt_base_autogen.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles 0 +.PHONY : CMakeFiles/wayland_qt_base_autogen.dir/rule + +# Convenience name for target. +wayland_qt_base_autogen: CMakeFiles/wayland_qt_base_autogen.dir/rule +.PHONY : wayland_qt_base_autogen + +# codegen rule for target. +CMakeFiles/wayland_qt_base_autogen.dir/codegen: CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base_autogen.dir/build.make CMakeFiles/wayland_qt_base_autogen.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=16 "Finished codegen for target wayland_qt_base_autogen" +.PHONY : CMakeFiles/wayland_qt_base_autogen.dir/codegen + +# clean rule for target. +CMakeFiles/wayland_qt_base_autogen.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base_autogen.dir/build.make CMakeFiles/wayland_qt_base_autogen.dir/clean +.PHONY : CMakeFiles/wayland_qt_base_autogen.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/wlx/wayland_qt_base/build/CMakeFiles/TargetDirectories.txt b/wlx/wayland_qt_base/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..c8bd5b5 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,5 @@ +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/edit_cache.dir +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/rebuild_cache.dir +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir diff --git a/wlx/wayland_qt_base/build/CMakeFiles/cmake.check_cache b/wlx/wayland_qt_base/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/wlx/wayland_qt_base/build/CMakeFiles/progress.marks b/wlx/wayland_qt_base/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..b6a7d89 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +16 diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/DependInfo.cmake b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/DependInfo.cmake new file mode 100644 index 0000000..c42b8b4 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/DependInfo.cmake @@ -0,0 +1,36 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "wayland_qt_base_autogen/timestamp" "custom" "wayland_qt_base_autogen/deps" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/CrashLogger.cpp" "CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o" "gcc" "CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o.d" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EditableGridWidget.cpp" "CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o" "gcc" "CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o.d" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EncodingUtils.cpp" "CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o" "gcc" "CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o.d" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterRowWidget.cpp" "CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o" "gcc" "CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o.d" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterableHeaderView.cpp" "CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o" "gcc" "CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o.d" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FindReplacePanel.cpp" "CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o" "gcc" "CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o.d" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FocusManager.cpp" "CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o" "gcc" "CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o.d" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginSplitView.cpp" "CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o" "gcc" "CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o.d" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginStatusBar.cpp" "CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o" "gcc" "CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o.d" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginToolBar.cpp" "CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o" "gcc" "CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o.d" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ScopedFindReplacePanel.cpp" "CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o" "gcc" "CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o.d" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ThemeManager.cpp" "CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o" "gcc" "CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o.d" + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/mocs_compilation.cpp" "CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o" "gcc" "CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/build.make b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/build.make new file mode 100644 index 0000000..e40bdb6 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/build.make @@ -0,0 +1,312 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.3 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/pplupo/repos/plugins/wlx/wayland_qt_base + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build + +# Include any dependencies generated for this target. +include CMakeFiles/wayland_qt_base.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/wayland_qt_base.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/wayland_qt_base.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/wayland_qt_base.dir/flags.make + +wayland_qt_base_autogen/timestamp: /usr/lib/qt6/moc +wayland_qt_base_autogen/timestamp: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC for target wayland_qt_base" + /usr/bin/cmake -E cmake_autogen /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/AutogenInfo.json "" + /usr/bin/cmake -E touch /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/timestamp + +CMakeFiles/wayland_qt_base.dir/codegen: +.PHONY : CMakeFiles/wayland_qt_base.dir/codegen + +CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o: CMakeFiles/wayland_qt_base.dir/flags.make +CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o: wayland_qt_base_autogen/mocs_compilation.cpp +CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o -MF CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/mocs_compilation.cpp + +CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/mocs_compilation.cpp > CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.i + +CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/mocs_compilation.cpp -o CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.s + +CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o: CMakeFiles/wayland_qt_base.dir/flags.make +CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o: /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FocusManager.cpp +CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o -MF CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o.d -o CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FocusManager.cpp + +CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FocusManager.cpp > CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.i + +CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FocusManager.cpp -o CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.s + +CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o: CMakeFiles/wayland_qt_base.dir/flags.make +CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o: /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginToolBar.cpp +CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o -MF CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o.d -o CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginToolBar.cpp + +CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginToolBar.cpp > CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.i + +CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginToolBar.cpp -o CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.s + +CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o: CMakeFiles/wayland_qt_base.dir/flags.make +CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o: /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EditableGridWidget.cpp +CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o -MF CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o.d -o CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EditableGridWidget.cpp + +CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EditableGridWidget.cpp > CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.i + +CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EditableGridWidget.cpp -o CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.s + +CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o: CMakeFiles/wayland_qt_base.dir/flags.make +CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o: /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FindReplacePanel.cpp +CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o -MF CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o.d -o CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FindReplacePanel.cpp + +CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FindReplacePanel.cpp > CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.i + +CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FindReplacePanel.cpp -o CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.s + +CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o: CMakeFiles/wayland_qt_base.dir/flags.make +CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o: /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ScopedFindReplacePanel.cpp +CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o -MF CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o.d -o CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ScopedFindReplacePanel.cpp + +CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ScopedFindReplacePanel.cpp > CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.i + +CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ScopedFindReplacePanel.cpp -o CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.s + +CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o: CMakeFiles/wayland_qt_base.dir/flags.make +CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o: /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EncodingUtils.cpp +CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o -MF CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o.d -o CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EncodingUtils.cpp + +CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EncodingUtils.cpp > CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.i + +CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EncodingUtils.cpp -o CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.s + +CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o: CMakeFiles/wayland_qt_base.dir/flags.make +CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o: /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterRowWidget.cpp +CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o -MF CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o.d -o CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterRowWidget.cpp + +CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterRowWidget.cpp > CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.i + +CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterRowWidget.cpp -o CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.s + +CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o: CMakeFiles/wayland_qt_base.dir/flags.make +CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o: /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterableHeaderView.cpp +CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o -MF CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o.d -o CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterableHeaderView.cpp + +CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterableHeaderView.cpp > CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.i + +CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterableHeaderView.cpp -o CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.s + +CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o: CMakeFiles/wayland_qt_base.dir/flags.make +CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o: /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginStatusBar.cpp +CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o -MF CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o.d -o CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginStatusBar.cpp + +CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginStatusBar.cpp > CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.i + +CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginStatusBar.cpp -o CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.s + +CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o: CMakeFiles/wayland_qt_base.dir/flags.make +CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o: /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginSplitView.cpp +CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o -MF CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o.d -o CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginSplitView.cpp + +CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginSplitView.cpp > CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.i + +CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginSplitView.cpp -o CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.s + +CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o: CMakeFiles/wayland_qt_base.dir/flags.make +CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o: /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ThemeManager.cpp +CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o -MF CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o.d -o CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ThemeManager.cpp + +CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ThemeManager.cpp > CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.i + +CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ThemeManager.cpp -o CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.s + +CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o: CMakeFiles/wayland_qt_base.dir/flags.make +CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o: /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/CrashLogger.cpp +CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o: CMakeFiles/wayland_qt_base.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building CXX object CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o -MF CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o.d -o CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o -c /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/CrashLogger.cpp + +CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/CrashLogger.cpp > CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.i + +CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/CrashLogger.cpp -o CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.s + +# Object files for target wayland_qt_base +wayland_qt_base_OBJECTS = \ +"CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o" \ +"CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o" \ +"CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o" \ +"CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o" \ +"CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o" \ +"CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o" \ +"CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o" \ +"CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o" \ +"CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o" \ +"CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o" \ +"CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o" \ +"CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o" \ +"CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o" + +# External object files for target wayland_qt_base +wayland_qt_base_EXTERNAL_OBJECTS = + +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/build.make +libwayland_qt_base.a: CMakeFiles/wayland_qt_base.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Linking CXX static library libwayland_qt_base.a" + $(CMAKE_COMMAND) -P CMakeFiles/wayland_qt_base.dir/cmake_clean_target.cmake + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/wayland_qt_base.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/wayland_qt_base.dir/build: libwayland_qt_base.a +.PHONY : CMakeFiles/wayland_qt_base.dir/build + +CMakeFiles/wayland_qt_base.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/wayland_qt_base.dir/cmake_clean.cmake +.PHONY : CMakeFiles/wayland_qt_base.dir/clean + +CMakeFiles/wayland_qt_base.dir/depend: wayland_qt_base_autogen/timestamp + cd /home/pplupo/repos/plugins/wlx/wayland_qt_base/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/pplupo/repos/plugins/wlx/wayland_qt_base /home/pplupo/repos/plugins/wlx/wayland_qt_base /home/pplupo/repos/plugins/wlx/wayland_qt_base/build /home/pplupo/repos/plugins/wlx/wayland_qt_base/build /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/DependInfo.cmake "--color=$(COLOR)" wayland_qt_base +.PHONY : CMakeFiles/wayland_qt_base.dir/depend + diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/cmake_clean.cmake b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/cmake_clean.cmake new file mode 100644 index 0000000..9403f13 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/cmake_clean.cmake @@ -0,0 +1,40 @@ +file(REMOVE_RECURSE + "CMakeFiles/wayland_qt_base_autogen.dir/AutogenUsed.txt" + "CMakeFiles/wayland_qt_base_autogen.dir/ParseCache.txt" + "wayland_qt_base_autogen" + "CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o" + "CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o.d" + "CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o" + "CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o.d" + "CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o" + "CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o.d" + "CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o" + "CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o.d" + "CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o" + "CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o.d" + "CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o" + "CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o.d" + "CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o" + "CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o.d" + "CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o" + "CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o.d" + "CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o" + "CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o.d" + "CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o" + "CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o.d" + "CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o" + "CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o.d" + "CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o" + "CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o.d" + "CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o" + "CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o.d" + "libwayland_qt_base.a" + "libwayland_qt_base.pdb" + "wayland_qt_base_autogen/mocs_compilation.cpp" + "wayland_qt_base_autogen/timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/wayland_qt_base.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/cmake_clean_target.cmake b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..3cbc723 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libwayland_qt_base.a" +) diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/compiler_depend.internal b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/compiler_depend.internal new file mode 100644 index 0000000..853af78 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/compiler_depend.internal @@ -0,0 +1,1062 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.3 + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/timestamp + /home/pplupo/repos/plugins/wlx/wayland_qt_base/CMakeLists.txt + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCCompiler.cmake + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCXXCompiler.cmake + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeSystem.cmake + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/CrashLogger.h + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EditableGridWidget.h + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EncodingUtils.h + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterRowWidget.h + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterableHeaderView.h + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FindReplacePanel.h + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FocusManager.h + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginSplitView.h + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginStatusBar.h + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginToolBar.h + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ScopedFindReplacePanel.h + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ThemeManager.h + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/CrashLogger.cpp + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EditableGridWidget.cpp + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EncodingUtils.cpp + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterRowWidget.cpp + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterableHeaderView.cpp + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FindReplacePanel.cpp + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FocusManager.cpp + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginSplitView.cpp + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginStatusBar.cpp + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginToolBar.cpp + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ScopedFindReplacePanel.cpp + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ThemeManager.cpp + /usr/bin/cmake + /usr/include/alloca.h + /usr/include/asm-generic/bitsperlong.h + /usr/include/asm-generic/errno-base.h + /usr/include/asm-generic/errno.h + /usr/include/asm-generic/int-ll64.h + /usr/include/asm-generic/posix_types.h + /usr/include/asm-generic/types.h + /usr/include/asm/bitsperlong.h + /usr/include/asm/errno.h + /usr/include/asm/posix_types.h + /usr/include/asm/posix_types_64.h + /usr/include/asm/types.h + /usr/include/assert.h + /usr/include/bits/atomic_wide_counter.h + /usr/include/bits/byteswap.h + /usr/include/bits/cpu-set.h + /usr/include/bits/endian.h + /usr/include/bits/endianness.h + /usr/include/bits/errno.h + /usr/include/bits/floatn-common.h + /usr/include/bits/floatn.h + /usr/include/bits/libc-header-start.h + /usr/include/bits/local_lim.h + /usr/include/bits/locale.h + /usr/include/bits/long-double.h + /usr/include/bits/posix1_lim.h + /usr/include/bits/posix2_lim.h + /usr/include/bits/pthread_stack_min-dynamic.h + /usr/include/bits/pthreadtypes-arch.h + /usr/include/bits/pthreadtypes.h + /usr/include/bits/sched.h + /usr/include/bits/select.h + /usr/include/bits/setjmp.h + /usr/include/bits/stdint-intn.h + /usr/include/bits/stdint-least.h + /usr/include/bits/stdint-uintn.h + /usr/include/bits/stdio_lim.h + /usr/include/bits/stdlib-float.h + /usr/include/bits/struct_mutex.h + /usr/include/bits/struct_rwlock.h + /usr/include/bits/thread-shared-types.h + /usr/include/bits/time.h + /usr/include/bits/time64.h + /usr/include/bits/timesize.h + /usr/include/bits/timex.h + /usr/include/bits/types.h + /usr/include/bits/types/FILE.h + /usr/include/bits/types/__FILE.h + /usr/include/bits/types/__fpos64_t.h + /usr/include/bits/types/__fpos_t.h + /usr/include/bits/types/__locale_t.h + /usr/include/bits/types/__mbstate_t.h + /usr/include/bits/types/__sigset_t.h + /usr/include/bits/types/clock_t.h + /usr/include/bits/types/clockid_t.h + /usr/include/bits/types/cookie_io_functions_t.h + /usr/include/bits/types/error_t.h + /usr/include/bits/types/locale_t.h + /usr/include/bits/types/mbstate_t.h + /usr/include/bits/types/sigset_t.h + /usr/include/bits/types/struct_FILE.h + /usr/include/bits/types/struct___jmp_buf_tag.h + /usr/include/bits/types/struct_itimerspec.h + /usr/include/bits/types/struct_sched_param.h + /usr/include/bits/types/struct_timespec.h + /usr/include/bits/types/struct_timeval.h + /usr/include/bits/types/struct_tm.h + /usr/include/bits/types/time_t.h + /usr/include/bits/types/timer_t.h + /usr/include/bits/types/wint_t.h + /usr/include/bits/typesizes.h + /usr/include/bits/uintn-identity.h + /usr/include/bits/uio_lim.h + /usr/include/bits/waitflags.h + /usr/include/bits/waitstatus.h + /usr/include/bits/wchar.h + /usr/include/bits/wctype-wchar.h + /usr/include/bits/wordsize.h + /usr/include/bits/xopen_lim.h + /usr/include/c++/16.1.1/algorithm + /usr/include/c++/16.1.1/array + /usr/include/c++/16.1.1/atomic + /usr/include/c++/16.1.1/backward/auto_ptr.h + /usr/include/c++/16.1.1/backward/binders.h + /usr/include/c++/16.1.1/bit + /usr/include/c++/16.1.1/bits/algorithmfwd.h + /usr/include/c++/16.1.1/bits/align.h + /usr/include/c++/16.1.1/bits/alloc_traits.h + /usr/include/c++/16.1.1/bits/allocated_ptr.h + /usr/include/c++/16.1.1/bits/allocator.h + /usr/include/c++/16.1.1/bits/atomic_base.h + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h + /usr/include/c++/16.1.1/bits/atomic_wait.h + /usr/include/c++/16.1.1/bits/basic_ios.h + /usr/include/c++/16.1.1/bits/basic_ios.tcc + /usr/include/c++/16.1.1/bits/basic_string.h + /usr/include/c++/16.1.1/bits/basic_string.tcc + /usr/include/c++/16.1.1/bits/binders.h + /usr/include/c++/16.1.1/bits/char_traits.h + /usr/include/c++/16.1.1/bits/charconv.h + /usr/include/c++/16.1.1/bits/chrono.h + /usr/include/c++/16.1.1/bits/chrono_io.h + /usr/include/c++/16.1.1/bits/concept_check.h + /usr/include/c++/16.1.1/bits/cpp_type_traits.h + /usr/include/c++/16.1.1/bits/cxxabi_forced.h + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h + /usr/include/c++/16.1.1/bits/enable_special_members.h + /usr/include/c++/16.1.1/bits/erase_if.h + /usr/include/c++/16.1.1/bits/exception.h + /usr/include/c++/16.1.1/bits/exception_defines.h + /usr/include/c++/16.1.1/bits/exception_ptr.h + /usr/include/c++/16.1.1/bits/functexcept.h + /usr/include/c++/16.1.1/bits/functional_hash.h + /usr/include/c++/16.1.1/bits/hash_bytes.h + /usr/include/c++/16.1.1/bits/hashtable.h + /usr/include/c++/16.1.1/bits/hashtable_policy.h + /usr/include/c++/16.1.1/bits/intcmp.h + /usr/include/c++/16.1.1/bits/invoke.h + /usr/include/c++/16.1.1/bits/ios_base.h + /usr/include/c++/16.1.1/bits/istream.tcc + /usr/include/c++/16.1.1/bits/iterator_concepts.h + /usr/include/c++/16.1.1/bits/list.tcc + /usr/include/c++/16.1.1/bits/locale_classes.h + /usr/include/c++/16.1.1/bits/locale_classes.tcc + /usr/include/c++/16.1.1/bits/locale_facets.h + /usr/include/c++/16.1.1/bits/locale_facets.tcc + /usr/include/c++/16.1.1/bits/localefwd.h + /usr/include/c++/16.1.1/bits/max_size_type.h + /usr/include/c++/16.1.1/bits/memory_resource.h + /usr/include/c++/16.1.1/bits/memoryfwd.h + /usr/include/c++/16.1.1/bits/move.h + /usr/include/c++/16.1.1/bits/nested_exception.h + /usr/include/c++/16.1.1/bits/new_allocator.h + /usr/include/c++/16.1.1/bits/new_except.h + /usr/include/c++/16.1.1/bits/new_throw.h + /usr/include/c++/16.1.1/bits/node_handle.h + /usr/include/c++/16.1.1/bits/ostream.h + /usr/include/c++/16.1.1/bits/ostream.tcc + /usr/include/c++/16.1.1/bits/ostream_insert.h + /usr/include/c++/16.1.1/bits/ostream_print.h + /usr/include/c++/16.1.1/bits/parse_numbers.h + /usr/include/c++/16.1.1/bits/postypes.h + /usr/include/c++/16.1.1/bits/predefined_ops.h + /usr/include/c++/16.1.1/bits/ptr_traits.h + /usr/include/c++/16.1.1/bits/range_access.h + /usr/include/c++/16.1.1/bits/ranges_algo.h + /usr/include/c++/16.1.1/bits/ranges_algobase.h + /usr/include/c++/16.1.1/bits/ranges_base.h + /usr/include/c++/16.1.1/bits/ranges_cmp.h + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h + /usr/include/c++/16.1.1/bits/ranges_util.h + /usr/include/c++/16.1.1/bits/refwrap.h + /usr/include/c++/16.1.1/bits/requires_hosted.h + /usr/include/c++/16.1.1/bits/shared_ptr.h + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h + /usr/include/c++/16.1.1/bits/shared_ptr_base.h + /usr/include/c++/16.1.1/bits/specfun.h + /usr/include/c++/16.1.1/bits/sstream.tcc + /usr/include/c++/16.1.1/bits/std_abs.h + /usr/include/c++/16.1.1/bits/std_function.h + /usr/include/c++/16.1.1/bits/stdexcept_except.h + /usr/include/c++/16.1.1/bits/stdexcept_throw.h + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h + /usr/include/c++/16.1.1/bits/stl_algo.h + /usr/include/c++/16.1.1/bits/stl_algobase.h + /usr/include/c++/16.1.1/bits/stl_bvector.h + /usr/include/c++/16.1.1/bits/stl_construct.h + /usr/include/c++/16.1.1/bits/stl_function.h + /usr/include/c++/16.1.1/bits/stl_heap.h + /usr/include/c++/16.1.1/bits/stl_iterator.h + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h + /usr/include/c++/16.1.1/bits/stl_list.h + /usr/include/c++/16.1.1/bits/stl_map.h + /usr/include/c++/16.1.1/bits/stl_multimap.h + /usr/include/c++/16.1.1/bits/stl_multiset.h + /usr/include/c++/16.1.1/bits/stl_numeric.h + /usr/include/c++/16.1.1/bits/stl_pair.h + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h + /usr/include/c++/16.1.1/bits/stl_relops.h + /usr/include/c++/16.1.1/bits/stl_set.h + /usr/include/c++/16.1.1/bits/stl_tempbuf.h + /usr/include/c++/16.1.1/bits/stl_tree.h + /usr/include/c++/16.1.1/bits/stl_uninitialized.h + /usr/include/c++/16.1.1/bits/stl_vector.h + /usr/include/c++/16.1.1/bits/stream_iterator.h + /usr/include/c++/16.1.1/bits/streambuf.tcc + /usr/include/c++/16.1.1/bits/streambuf_iterator.h + /usr/include/c++/16.1.1/bits/string_view.tcc + /usr/include/c++/16.1.1/bits/stringfwd.h + /usr/include/c++/16.1.1/bits/uniform_int_dist.h + /usr/include/c++/16.1.1/bits/unique_ptr.h + /usr/include/c++/16.1.1/bits/unordered_map.h + /usr/include/c++/16.1.1/bits/unordered_set.h + /usr/include/c++/16.1.1/bits/uses_allocator.h + /usr/include/c++/16.1.1/bits/uses_allocator_args.h + /usr/include/c++/16.1.1/bits/utility.h + /usr/include/c++/16.1.1/bits/vector.tcc + /usr/include/c++/16.1.1/bits/version.h + /usr/include/c++/16.1.1/cassert + /usr/include/c++/16.1.1/cctype + /usr/include/c++/16.1.1/cerrno + /usr/include/c++/16.1.1/charconv + /usr/include/c++/16.1.1/chrono + /usr/include/c++/16.1.1/climits + /usr/include/c++/16.1.1/clocale + /usr/include/c++/16.1.1/cmath + /usr/include/c++/16.1.1/compare + /usr/include/c++/16.1.1/concepts + /usr/include/c++/16.1.1/cstddef + /usr/include/c++/16.1.1/cstdint + /usr/include/c++/16.1.1/cstdio + /usr/include/c++/16.1.1/cstdlib + /usr/include/c++/16.1.1/cstring + /usr/include/c++/16.1.1/ctime + /usr/include/c++/16.1.1/cwchar + /usr/include/c++/16.1.1/cwctype + /usr/include/c++/16.1.1/debug/assertions.h + /usr/include/c++/16.1.1/debug/debug.h + /usr/include/c++/16.1.1/exception + /usr/include/c++/16.1.1/ext/aligned_buffer.h + /usr/include/c++/16.1.1/ext/alloc_traits.h + /usr/include/c++/16.1.1/ext/atomicity.h + /usr/include/c++/16.1.1/ext/concurrence.h + /usr/include/c++/16.1.1/ext/numeric_traits.h + /usr/include/c++/16.1.1/ext/string_conversions.h + /usr/include/c++/16.1.1/ext/type_traits.h + /usr/include/c++/16.1.1/format + /usr/include/c++/16.1.1/functional + /usr/include/c++/16.1.1/initializer_list + /usr/include/c++/16.1.1/ios + /usr/include/c++/16.1.1/iosfwd + /usr/include/c++/16.1.1/istream + /usr/include/c++/16.1.1/iterator + /usr/include/c++/16.1.1/limits + /usr/include/c++/16.1.1/list + /usr/include/c++/16.1.1/map + /usr/include/c++/16.1.1/memory + /usr/include/c++/16.1.1/new + /usr/include/c++/16.1.1/numeric + /usr/include/c++/16.1.1/optional + /usr/include/c++/16.1.1/ostream + /usr/include/c++/16.1.1/pstl/execution_defs.h + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h + /usr/include/c++/16.1.1/pstl/pstl_config.h + /usr/include/c++/16.1.1/ratio + /usr/include/c++/16.1.1/set + /usr/include/c++/16.1.1/sstream + /usr/include/c++/16.1.1/stdexcept + /usr/include/c++/16.1.1/streambuf + /usr/include/c++/16.1.1/string + /usr/include/c++/16.1.1/string_view + /usr/include/c++/16.1.1/system_error + /usr/include/c++/16.1.1/tr1/bessel_function.tcc + /usr/include/c++/16.1.1/tr1/beta_function.tcc + /usr/include/c++/16.1.1/tr1/ell_integral.tcc + /usr/include/c++/16.1.1/tr1/exp_integral.tcc + /usr/include/c++/16.1.1/tr1/gamma.tcc + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc + /usr/include/c++/16.1.1/tr1/legendre_function.tcc + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc + /usr/include/c++/16.1.1/tr1/special_function_util.h + /usr/include/c++/16.1.1/tuple + /usr/include/c++/16.1.1/type_traits + /usr/include/c++/16.1.1/typeinfo + /usr/include/c++/16.1.1/unordered_map + /usr/include/c++/16.1.1/unordered_set + /usr/include/c++/16.1.1/utility + /usr/include/c++/16.1.1/variant + /usr/include/c++/16.1.1/vector + /usr/include/c++/16.1.1/version + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h + /usr/include/ctype.h + /usr/include/endian.h + /usr/include/errno.h + /usr/include/features-time64.h + /usr/include/features.h + /usr/include/gnu/stubs-64.h + /usr/include/gnu/stubs.h + /usr/include/limits.h + /usr/include/linux/errno.h + /usr/include/linux/limits.h + /usr/include/linux/posix_types.h + /usr/include/linux/sched/types.h + /usr/include/linux/stddef.h + /usr/include/linux/types.h + /usr/include/locale.h + /usr/include/pthread.h + /usr/include/qt6/QtCore/QMap + /usr/include/qt6/QtCore/QObject + /usr/include/qt6/QtCore/QPointer + /usr/include/qt6/QtCore/QSet + /usr/include/qt6/QtCore/QTimer + /usr/include/qt6/QtCore/QVector + /usr/include/qt6/QtCore/q17memory.h + /usr/include/qt6/QtCore/q20bit.h + /usr/include/qt6/QtCore/q20functional.h + /usr/include/qt6/QtCore/q20iterator.h + /usr/include/qt6/QtCore/q20memory.h + /usr/include/qt6/QtCore/q20type_traits.h + /usr/include/qt6/QtCore/q20utility.h + /usr/include/qt6/QtCore/q23type_traits.h + /usr/include/qt6/QtCore/q23utility.h + /usr/include/qt6/QtCore/qabstracteventdispatcher.h + /usr/include/qt6/QtCore/qabstractitemmodel.h + /usr/include/qt6/QtCore/qalgorithms.h + /usr/include/qt6/QtCore/qalloc.h + /usr/include/qt6/QtCore/qanystringview.h + /usr/include/qt6/QtCore/qarraydata.h + /usr/include/qt6/QtCore/qarraydataops.h + /usr/include/qt6/QtCore/qarraydatapointer.h + /usr/include/qt6/QtCore/qassert.h + /usr/include/qt6/QtCore/qatomic.h + /usr/include/qt6/QtCore/qatomic_cxx11.h + /usr/include/qt6/QtCore/qbasicatomic.h + /usr/include/qt6/QtCore/qbasictimer.h + /usr/include/qt6/QtCore/qbindingstorage.h + /usr/include/qt6/QtCore/qbytearray.h + /usr/include/qt6/QtCore/qbytearrayalgorithms.h + /usr/include/qt6/QtCore/qbytearraylist.h + /usr/include/qt6/QtCore/qbytearrayview.h + /usr/include/qt6/QtCore/qchar.h + /usr/include/qt6/QtCore/qcheckedint_impl.h + /usr/include/qt6/QtCore/qcompare.h + /usr/include/qt6/QtCore/qcompare_impl.h + /usr/include/qt6/QtCore/qcomparehelpers.h + /usr/include/qt6/QtCore/qcompilerdetection.h + /usr/include/qt6/QtCore/qconfig.h + /usr/include/qt6/QtCore/qconstructormacros.h + /usr/include/qt6/QtCore/qcontainerfwd.h + /usr/include/qt6/QtCore/qcontainerinfo.h + /usr/include/qt6/QtCore/qcontainertools_impl.h + /usr/include/qt6/QtCore/qcontiguouscache.h + /usr/include/qt6/QtCore/qdarwinhelpers.h + /usr/include/qt6/QtCore/qdatastream.h + /usr/include/qt6/QtCore/qdeadlinetimer.h + /usr/include/qt6/QtCore/qdebug.h + /usr/include/qt6/QtCore/qendian.h + /usr/include/qt6/QtCore/qeventloop.h + /usr/include/qt6/QtCore/qexceptionhandling.h + /usr/include/qt6/QtCore/qflags.h + /usr/include/qt6/QtCore/qfloat16.h + /usr/include/qt6/QtCore/qforeach.h + /usr/include/qt6/QtCore/qfunctionaltools_impl.h + /usr/include/qt6/QtCore/qfunctionpointer.h + /usr/include/qt6/QtCore/qgenericatomic.h + /usr/include/qt6/QtCore/qglobal.h + /usr/include/qt6/QtCore/qglobalstatic.h + /usr/include/qt6/QtCore/qhash.h + /usr/include/qt6/QtCore/qhashfunctions.h + /usr/include/qt6/QtCore/qiodevice.h + /usr/include/qt6/QtCore/qiodevicebase.h + /usr/include/qt6/QtCore/qitemselectionmodel.h + /usr/include/qt6/QtCore/qiterable.h + /usr/include/qt6/QtCore/qiterator.h + /usr/include/qt6/QtCore/qlatin1stringview.h + /usr/include/qt6/QtCore/qline.h + /usr/include/qt6/QtCore/qlist.h + /usr/include/qt6/QtCore/qlocale.h + /usr/include/qt6/QtCore/qlogging.h + /usr/include/qt6/QtCore/qmalloc.h + /usr/include/qt6/QtCore/qmap.h + /usr/include/qt6/QtCore/qmargins.h + /usr/include/qt6/QtCore/qmath.h + /usr/include/qt6/QtCore/qmetacontainer.h + /usr/include/qt6/QtCore/qmetatype.h + /usr/include/qt6/QtCore/qminmax.h + /usr/include/qt6/QtCore/qnamespace.h + /usr/include/qt6/QtCore/qnumeric.h + /usr/include/qt6/QtCore/qobject.h + /usr/include/qt6/QtCore/qobject_impl.h + /usr/include/qt6/QtCore/qobjectdefs.h + /usr/include/qt6/QtCore/qobjectdefs_impl.h + /usr/include/qt6/QtCore/qoverload.h + /usr/include/qt6/QtCore/qpair.h + /usr/include/qt6/QtCore/qpoint.h + /usr/include/qt6/QtCore/qpointer.h + /usr/include/qt6/QtCore/qprocessordetection.h + /usr/include/qt6/QtCore/qrect.h + /usr/include/qt6/QtCore/qrefcount.h + /usr/include/qt6/QtCore/qregularexpression.h + /usr/include/qt6/QtCore/qscopedpointer.h + /usr/include/qt6/QtCore/qscopeguard.h + /usr/include/qt6/QtCore/qset.h + /usr/include/qt6/QtCore/qshareddata.h + /usr/include/qt6/QtCore/qshareddata_impl.h + /usr/include/qt6/QtCore/qsharedpointer.h + /usr/include/qt6/QtCore/qsharedpointer_impl.h + /usr/include/qt6/QtCore/qsize.h + /usr/include/qt6/QtCore/qspan.h + /usr/include/qt6/QtCore/qstdlibdetection.h + /usr/include/qt6/QtCore/qstring.h + /usr/include/qt6/QtCore/qstringalgorithms.h + /usr/include/qt6/QtCore/qstringbuilder.h + /usr/include/qt6/QtCore/qstringconverter.h + /usr/include/qt6/QtCore/qstringconverter_base.h + /usr/include/qt6/QtCore/qstringfwd.h + /usr/include/qt6/QtCore/qstringlist.h + /usr/include/qt6/QtCore/qstringmatcher.h + /usr/include/qt6/QtCore/qstringtokenizer.h + /usr/include/qt6/QtCore/qstringview.h + /usr/include/qt6/QtCore/qswap.h + /usr/include/qt6/QtCore/qsysinfo.h + /usr/include/qt6/QtCore/qsystemdetection.h + /usr/include/qt6/QtCore/qtaggedpointer.h + /usr/include/qt6/QtCore/qtclasshelpermacros.h + /usr/include/qt6/QtCore/qtconfiginclude.h + /usr/include/qt6/QtCore/qtconfigmacros.h + /usr/include/qt6/QtCore/qtcore-config.h + /usr/include/qt6/QtCore/qtcoreexports.h + /usr/include/qt6/QtCore/qtcoreglobal.h + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h + /usr/include/qt6/QtCore/qtdeprecationmarkers.h + /usr/include/qt6/QtCore/qtenvironmentvariables.h + /usr/include/qt6/QtCore/qtextstream.h + /usr/include/qt6/QtCore/qtformat_impl.h + /usr/include/qt6/QtCore/qtimer.h + /usr/include/qt6/QtCore/qtmetamacros.h + /usr/include/qt6/QtCore/qtnoop.h + /usr/include/qt6/QtCore/qtpreprocessorsupport.h + /usr/include/qt6/QtCore/qtresource.h + /usr/include/qt6/QtCore/qttranslation.h + /usr/include/qt6/QtCore/qttypetraits.h + /usr/include/qt6/QtCore/qtversion.h + /usr/include/qt6/QtCore/qtversionchecks.h + /usr/include/qt6/QtCore/qtypeinfo.h + /usr/include/qt6/QtCore/qtypes.h + /usr/include/qt6/QtCore/qurl.h + /usr/include/qt6/QtCore/qutf8stringview.h + /usr/include/qt6/QtCore/qvariant.h + /usr/include/qt6/QtCore/qvarlengtharray.h + /usr/include/qt6/QtCore/qvector.h + /usr/include/qt6/QtCore/qversiontagging.h + /usr/include/qt6/QtCore/qxptype_traits.h + /usr/include/qt6/QtCore/qyieldcpu.h + /usr/include/qt6/QtGui/QKeySequence + /usr/include/qt6/QtGui/QUndoStack + /usr/include/qt6/QtGui/qaction.h + /usr/include/qt6/QtGui/qbitmap.h + /usr/include/qt6/QtGui/qbrush.h + /usr/include/qt6/QtGui/qcolor.h + /usr/include/qt6/QtGui/qcursor.h + /usr/include/qt6/QtGui/qfont.h + /usr/include/qt6/QtGui/qfontinfo.h + /usr/include/qt6/QtGui/qfontmetrics.h + /usr/include/qt6/QtGui/qfontvariableaxis.h + /usr/include/qt6/QtGui/qicon.h + /usr/include/qt6/QtGui/qimage.h + /usr/include/qt6/QtGui/qkeysequence.h + /usr/include/qt6/QtGui/qpaintdevice.h + /usr/include/qt6/QtGui/qpalette.h + /usr/include/qt6/QtGui/qpicture.h + /usr/include/qt6/QtGui/qpixelformat.h + /usr/include/qt6/QtGui/qpixmap.h + /usr/include/qt6/QtGui/qpolygon.h + /usr/include/qt6/QtGui/qregion.h + /usr/include/qt6/QtGui/qrgb.h + /usr/include/qt6/QtGui/qrgba64.h + /usr/include/qt6/QtGui/qtextdocument.h + /usr/include/qt6/QtGui/qtgui-config.h + /usr/include/qt6/QtGui/qtguiexports.h + /usr/include/qt6/QtGui/qtguiglobal.h + /usr/include/qt6/QtGui/qtransform.h + /usr/include/qt6/QtGui/qundostack.h + /usr/include/qt6/QtGui/qvalidator.h + /usr/include/qt6/QtGui/qwindowdefs.h + /usr/include/qt6/QtWidgets/QHeaderView + /usr/include/qt6/QtWidgets/QLabel + /usr/include/qt6/QtWidgets/QSplitter + /usr/include/qt6/QtWidgets/QStyledItemDelegate + /usr/include/qt6/QtWidgets/QTableView + /usr/include/qt6/QtWidgets/QToolBar + /usr/include/qt6/QtWidgets/QWidget + /usr/include/qt6/QtWidgets/qabstractitemdelegate.h + /usr/include/qt6/QtWidgets/qabstractitemview.h + /usr/include/qt6/QtWidgets/qabstractscrollarea.h + /usr/include/qt6/QtWidgets/qabstractslider.h + /usr/include/qt6/QtWidgets/qabstractspinbox.h + /usr/include/qt6/QtWidgets/qframe.h + /usr/include/qt6/QtWidgets/qheaderview.h + /usr/include/qt6/QtWidgets/qlabel.h + /usr/include/qt6/QtWidgets/qrubberband.h + /usr/include/qt6/QtWidgets/qsizepolicy.h + /usr/include/qt6/QtWidgets/qslider.h + /usr/include/qt6/QtWidgets/qsplitter.h + /usr/include/qt6/QtWidgets/qstyle.h + /usr/include/qt6/QtWidgets/qstyleditemdelegate.h + /usr/include/qt6/QtWidgets/qstyleoption.h + /usr/include/qt6/QtWidgets/qtabbar.h + /usr/include/qt6/QtWidgets/qtableview.h + /usr/include/qt6/QtWidgets/qtabwidget.h + /usr/include/qt6/QtWidgets/qtoolbar.h + /usr/include/qt6/QtWidgets/qtwidgets-config.h + /usr/include/qt6/QtWidgets/qtwidgetsexports.h + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h + /usr/include/qt6/QtWidgets/qwidget.h + /usr/include/sched.h + /usr/include/stdc-predef.h + /usr/include/stdint.h + /usr/include/stdio.h + /usr/include/stdlib.h + /usr/include/string.h + /usr/include/strings.h + /usr/include/sys/cdefs.h + /usr/include/sys/select.h + /usr/include/sys/single_threaded.h + /usr/include/sys/types.h + /usr/include/time.h + /usr/include/wchar.h + /usr/include/wctype.h + /usr/lib/cmake/Qt6/FindWrapAtomic.cmake + /usr/lib/cmake/Qt6/FindWrapOpenGL.cmake + /usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake + /usr/lib/cmake/Qt6/Qt6Config.cmake + /usr/lib/cmake/Qt6/Qt6ConfigExtras.cmake + /usr/lib/cmake/Qt6/Qt6ConfigVersion.cmake + /usr/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake + /usr/lib/cmake/Qt6/Qt6Dependencies.cmake + /usr/lib/cmake/Qt6/Qt6Targets.cmake + /usr/lib/cmake/Qt6/Qt6TargetsPrecheck.cmake + /usr/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake + /usr/lib/cmake/Qt6/QtFeature.cmake + /usr/lib/cmake/Qt6/QtFeatureCommon.cmake + /usr/lib/cmake/Qt6/QtInstallPaths.cmake + /usr/lib/cmake/Qt6/QtPublicAndroidHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicAppleHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicCMakeEarlyPolicyHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicGitHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicPluginHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicPluginHelpers_v2.cmake + /usr/lib/cmake/Qt6/QtPublicSbomAttributionHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomBuildToolHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomCommonGenerationHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomCpeHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomCycloneDXHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomDepHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomDocumentNamespaceHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomExternalReferenceHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomFileHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomGenerationCycloneDXHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomLicenseHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomOpsHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomPurlHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomPythonHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomQtEntityHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomRelationshipHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicSbomSystemDepHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicTargetHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicTestHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicToolHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake + /usr/lib/cmake/Qt6/QtPublicWindowsHelpers.cmake + /usr/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Core/Qt6CoreConfig.cmake + /usr/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake + /usr/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake + /usr/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake + /usr/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake + /usr/lib/cmake/Qt6Core/Qt6CoreMacros.cmake + /usr/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Core/Qt6CoreTargets.cmake + /usr/lib/cmake/Qt6Core/Qt6CoreTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargetsPrecheck.cmake + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake + /usr/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake + /usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake + /usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake + /usr/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake + /usr/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake + /usr/lib/cmake/Qt6DBus/Qt6DBusTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake + /usr/lib/cmake/Qt6DBus/Qt6DBusTargetsPrecheck.cmake + /usr/lib/cmake/Qt6DBus/Qt6DBusVersionlessAliasTargets.cmake + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargetsPrecheck.cmake + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake + /usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake + /usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake + /usr/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake + /usr/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6GuiTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginConfig.cmake + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargets.cmake + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargetsPrecheck.cmake + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargetsPrecheck.cmake + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargetsPrecheck.cmake + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargetsPrecheck.cmake + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h + /usr/share/cmake/Modules/CMakeCCompiler.cmake.in + /usr/share/cmake/Modules/CMakeCCompilerABI.c + /usr/share/cmake/Modules/CMakeCInformation.cmake + /usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in + /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp + /usr/share/cmake/Modules/CMakeCXXInformation.cmake + /usr/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake + /usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake + /usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake + /usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake + /usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake + /usr/share/cmake/Modules/CMakeDetermineCompiler.cmake + /usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake + /usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake + /usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake + /usr/share/cmake/Modules/CMakeDetermineSystem.cmake + /usr/share/cmake/Modules/CMakeFindBinUtils.cmake + /usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake + /usr/share/cmake/Modules/CMakeGenericSystem.cmake + /usr/share/cmake/Modules/CMakeInitializeConfigs.cmake + /usr/share/cmake/Modules/CMakeLanguageInformation.cmake + /usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake + /usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake + /usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake + /usr/share/cmake/Modules/CMakeSystem.cmake.in + /usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake + /usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake + /usr/share/cmake/Modules/CMakeTestCCompiler.cmake + /usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake + /usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake + /usr/share/cmake/Modules/CMakeUnixFindMake.cmake + /usr/share/cmake/Modules/CheckCSourceCompiles.cmake + /usr/share/cmake/Modules/CheckCXXCompilerFlag.cmake + /usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake + /usr/share/cmake/Modules/CheckIncludeFile.cmake + /usr/share/cmake/Modules/CheckLibraryExists.cmake + /usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake + /usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake + /usr/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/GNU-C.cmake + /usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/GNU-CXX.cmake + /usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake + /usr/share/cmake/Modules/Compiler/GNU.cmake + /usr/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake + /usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake + /usr/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake + /usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake + /usr/share/cmake/Modules/FindOpenGL.cmake + /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake + /usr/share/cmake/Modules/FindPackageMessage.cmake + /usr/share/cmake/Modules/FindPkgConfig.cmake + /usr/share/cmake/Modules/FindThreads.cmake + /usr/share/cmake/Modules/FindVulkan.cmake + /usr/share/cmake/Modules/GNUInstallDirs.cmake + /usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake + /usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake + /usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake + /usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake + /usr/share/cmake/Modules/Internal/CMakeInspectCLinker.cmake + /usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake + /usr/share/cmake/Modules/Internal/CheckCompilerFlag.cmake + /usr/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake + /usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake + /usr/share/cmake/Modules/Internal/FeatureTesting.cmake + /usr/share/cmake/Modules/Linker/GNU-C.cmake + /usr/share/cmake/Modules/Linker/GNU-CXX.cmake + /usr/share/cmake/Modules/Linker/GNU.cmake + /usr/share/cmake/Modules/MacroAddFileDependencies.cmake + /usr/share/cmake/Modules/Platform/Linker/GNU.cmake + /usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake + /usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake + /usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake + /usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake + /usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake + /usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake + /usr/share/cmake/Modules/Platform/Linux-GNU.cmake + /usr/share/cmake/Modules/Platform/Linux-Initialize.cmake + /usr/share/cmake/Modules/Platform/Linux.cmake + /usr/share/cmake/Modules/Platform/UnixPaths.cmake + diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/compiler_depend.make b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/compiler_depend.make new file mode 100644 index 0000000..ed2f438 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/compiler_depend.make @@ -0,0 +1,3175 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.3 + +wayland_qt_base_autogen/timestamp: /home/pplupo/repos/plugins/wlx/wayland_qt_base/CMakeLists.txt \ + CMakeFiles/4.3.3/CMakeCCompiler.cmake \ + CMakeFiles/4.3.3/CMakeCXXCompiler.cmake \ + CMakeFiles/4.3.3/CMakeSystem.cmake \ + wayland_qt_base_autogen/moc_predefs.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/CrashLogger.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EditableGridWidget.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EncodingUtils.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterRowWidget.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterableHeaderView.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FindReplacePanel.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FocusManager.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginSplitView.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginStatusBar.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginToolBar.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ScopedFindReplacePanel.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ThemeManager.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/CrashLogger.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EditableGridWidget.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EncodingUtils.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterRowWidget.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterableHeaderView.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FindReplacePanel.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FocusManager.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginSplitView.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginStatusBar.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginToolBar.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ScopedFindReplacePanel.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ThemeManager.cpp \ + /usr/bin/cmake \ + /usr/include/alloca.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/asm/bitsperlong.h \ + /usr/include/asm/errno.h \ + /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h \ + /usr/include/asm/types.h \ + /usr/include/assert.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/cpu-set.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/errno.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/local_lim.h \ + /usr/include/bits/locale.h \ + /usr/include/bits/long-double.h \ + /usr/include/bits/posix1_lim.h \ + /usr/include/bits/posix2_lim.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/sched.h \ + /usr/include/bits/select.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/bits/stdint-least.h \ + /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/time.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/timesize.h \ + /usr/include/bits/timex.h \ + /usr/include/bits/types.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__locale_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/types/wint_t.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/bits/uio_lim.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/wchar.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/bits/wordsize.h \ + /usr/include/bits/xopen_lim.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/backward/binders.h \ + /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/chrono.h \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/list.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/ostream.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/c++/16.1.1/bits/postypes.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/requires_hosted.h \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/bits/utility.h \ + /usr/include/c++/16.1.1/bits/vector.tcc \ + /usr/include/c++/16.1.1/bits/version.h \ + /usr/include/c++/16.1.1/cassert \ + /usr/include/c++/16.1.1/cctype \ + /usr/include/c++/16.1.1/cerrno \ + /usr/include/c++/16.1.1/charconv \ + /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/climits \ + /usr/include/c++/16.1.1/clocale \ + /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/cstddef \ + /usr/include/c++/16.1.1/cstdint \ + /usr/include/c++/16.1.1/cstdio \ + /usr/include/c++/16.1.1/cstdlib \ + /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/cwchar \ + /usr/include/c++/16.1.1/cwctype \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd \ + /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/limits \ + /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/set \ + /usr/include/c++/16.1.1/sstream \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/variant \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/version \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/ctype.h \ + /usr/include/endian.h \ + /usr/include/errno.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/gnu/stubs.h \ + /usr/include/limits.h \ + /usr/include/linux/errno.h \ + /usr/include/linux/limits.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/sched/types.h \ + /usr/include/linux/stddef.h \ + /usr/include/linux/types.h \ + /usr/include/locale.h \ + /usr/include/pthread.h \ + /usr/include/qt6/QtCore/QMap \ + /usr/include/qt6/QtCore/QObject \ + /usr/include/qt6/QtCore/QPointer \ + /usr/include/qt6/QtCore/QSet \ + /usr/include/qt6/QtCore/QTimer \ + /usr/include/qt6/QtCore/QVector \ + /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/q20memory.h \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/q20utility.h \ + /usr/include/qt6/QtCore/q23type_traits.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/qabstracteventdispatcher.h \ + /usr/include/qt6/QtCore/qabstractitemmodel.h \ + /usr/include/qt6/QtCore/qalgorithms.h \ + /usr/include/qt6/QtCore/qalloc.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qarraydata.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qassert.h \ + /usr/include/qt6/QtCore/qatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qbasictimer.h \ + /usr/include/qt6/QtCore/qbindingstorage.h \ + /usr/include/qt6/QtCore/qbytearray.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qchar.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qdeadlinetimer.h \ + /usr/include/qt6/QtCore/qdebug.h \ + /usr/include/qt6/QtCore/qendian.h \ + /usr/include/qt6/QtCore/qeventloop.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qflags.h \ + /usr/include/qt6/QtCore/qfloat16.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/qt6/QtCore/qiodevice.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qitemselectionmodel.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qiterator.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qline.h \ + /usr/include/qt6/QtCore/qlist.h \ + /usr/include/qt6/QtCore/qlocale.h \ + /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qmalloc.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnamespace.h \ + /usr/include/qt6/QtCore/qnumeric.h \ + /usr/include/qt6/QtCore/qobject.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qoverload.h \ + /usr/include/qt6/QtCore/qpair.h \ + /usr/include/qt6/QtCore/qpoint.h \ + /usr/include/qt6/QtCore/qpointer.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qregularexpression.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qscopeguard.h \ + /usr/include/qt6/QtCore/qset.h \ + /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/qt6/QtCore/qsize.h \ + /usr/include/qt6/QtCore/qspan.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qstringfwd.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qsysinfo.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qtformat_impl.h \ + /usr/include/qt6/QtCore/qtimer.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qttypetraits.h \ + /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qtypes.h \ + /usr/include/qt6/QtCore/qurl.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qvector.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/qyieldcpu.h \ + /usr/include/qt6/QtGui/QKeySequence \ + /usr/include/qt6/QtGui/QUndoStack \ + /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtGui/qbrush.h \ + /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qcursor.h \ + /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtGui/qimage.h \ + /usr/include/qt6/QtGui/qkeysequence.h \ + /usr/include/qt6/QtGui/qpaintdevice.h \ + /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qpicture.h \ + /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h \ + /usr/include/qt6/QtGui/qrgb.h \ + /usr/include/qt6/QtGui/qrgba64.h \ + /usr/include/qt6/QtGui/qtextdocument.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtGui/qtguiglobal.h \ + /usr/include/qt6/QtGui/qtransform.h \ + /usr/include/qt6/QtGui/qundostack.h \ + /usr/include/qt6/QtGui/qvalidator.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtWidgets/QHeaderView \ + /usr/include/qt6/QtWidgets/QLabel \ + /usr/include/qt6/QtWidgets/QSplitter \ + /usr/include/qt6/QtWidgets/QStyledItemDelegate \ + /usr/include/qt6/QtWidgets/QTableView \ + /usr/include/qt6/QtWidgets/QToolBar \ + /usr/include/qt6/QtWidgets/QWidget \ + /usr/include/qt6/QtWidgets/qabstractitemdelegate.h \ + /usr/include/qt6/QtWidgets/qabstractitemview.h \ + /usr/include/qt6/QtWidgets/qabstractscrollarea.h \ + /usr/include/qt6/QtWidgets/qabstractslider.h \ + /usr/include/qt6/QtWidgets/qabstractspinbox.h \ + /usr/include/qt6/QtWidgets/qframe.h \ + /usr/include/qt6/QtWidgets/qheaderview.h \ + /usr/include/qt6/QtWidgets/qlabel.h \ + /usr/include/qt6/QtWidgets/qrubberband.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtWidgets/qslider.h \ + /usr/include/qt6/QtWidgets/qsplitter.h \ + /usr/include/qt6/QtWidgets/qstyle.h \ + /usr/include/qt6/QtWidgets/qstyleditemdelegate.h \ + /usr/include/qt6/QtWidgets/qstyleoption.h \ + /usr/include/qt6/QtWidgets/qtabbar.h \ + /usr/include/qt6/QtWidgets/qtableview.h \ + /usr/include/qt6/QtWidgets/qtabwidget.h \ + /usr/include/qt6/QtWidgets/qtoolbar.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/sched.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdint.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/sys/cdefs.h \ + /usr/include/sys/select.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/sys/types.h \ + /usr/include/time.h \ + /usr/include/wchar.h \ + /usr/include/wctype.h \ + /usr/lib/cmake/Qt6/FindWrapAtomic.cmake \ + /usr/lib/cmake/Qt6/FindWrapOpenGL.cmake \ + /usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake \ + /usr/lib/cmake/Qt6/Qt6Config.cmake \ + /usr/lib/cmake/Qt6/Qt6ConfigExtras.cmake \ + /usr/lib/cmake/Qt6/Qt6ConfigVersion.cmake \ + /usr/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6/Qt6Dependencies.cmake \ + /usr/lib/cmake/Qt6/Qt6Targets.cmake \ + /usr/lib/cmake/Qt6/Qt6TargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake \ + /usr/lib/cmake/Qt6/QtFeature.cmake \ + /usr/lib/cmake/Qt6/QtFeatureCommon.cmake \ + /usr/lib/cmake/Qt6/QtInstallPaths.cmake \ + /usr/lib/cmake/Qt6/QtPublicAndroidHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicAppleHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicCMakeEarlyPolicyHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicGitHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicPluginHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicPluginHelpers_v2.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomAttributionHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomBuildToolHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomCommonGenerationHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomCpeHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomCycloneDXHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomDepHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomDocumentNamespaceHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomExternalReferenceHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomFileHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomGenerationCycloneDXHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomLicenseHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomOpsHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomPurlHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomPythonHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomQtEntityHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomRelationshipHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomSystemDepHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicTargetHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicTestHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicToolHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicWindowsHelpers.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreConfig.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreMacros.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreTargets.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusVersionlessAliasTargets.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/share/cmake/Modules/CMakeCCompiler.cmake.in \ + /usr/share/cmake/Modules/CMakeCCompilerABI.c \ + /usr/share/cmake/Modules/CMakeCInformation.cmake \ + /usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in \ + /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp \ + /usr/share/cmake/Modules/CMakeCXXInformation.cmake \ + /usr/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake \ + /usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake \ + /usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake \ + /usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake \ + /usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake \ + /usr/share/cmake/Modules/CMakeDetermineCompiler.cmake \ + /usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake \ + /usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake \ + /usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake \ + /usr/share/cmake/Modules/CMakeDetermineSystem.cmake \ + /usr/share/cmake/Modules/CMakeFindBinUtils.cmake \ + /usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake \ + /usr/share/cmake/Modules/CMakeGenericSystem.cmake \ + /usr/share/cmake/Modules/CMakeInitializeConfigs.cmake \ + /usr/share/cmake/Modules/CMakeLanguageInformation.cmake \ + /usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake \ + /usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake \ + /usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake \ + /usr/share/cmake/Modules/CMakeSystem.cmake.in \ + /usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake \ + /usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake \ + /usr/share/cmake/Modules/CMakeTestCCompiler.cmake \ + /usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake \ + /usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake \ + /usr/share/cmake/Modules/CMakeUnixFindMake.cmake \ + /usr/share/cmake/Modules/CheckCSourceCompiles.cmake \ + /usr/share/cmake/Modules/CheckCXXCompilerFlag.cmake \ + /usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake \ + /usr/share/cmake/Modules/CheckIncludeFile.cmake \ + /usr/share/cmake/Modules/CheckLibraryExists.cmake \ + /usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake \ + /usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake \ + /usr/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/GNU-C.cmake \ + /usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/GNU-CXX.cmake \ + /usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake \ + /usr/share/cmake/Modules/Compiler/GNU.cmake \ + /usr/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake \ + /usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake \ + /usr/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/FindOpenGL.cmake \ + /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake \ + /usr/share/cmake/Modules/FindPackageMessage.cmake \ + /usr/share/cmake/Modules/FindPkgConfig.cmake \ + /usr/share/cmake/Modules/FindThreads.cmake \ + /usr/share/cmake/Modules/FindVulkan.cmake \ + /usr/share/cmake/Modules/GNUInstallDirs.cmake \ + /usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake \ + /usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake \ + /usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake \ + /usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake \ + /usr/share/cmake/Modules/Internal/CMakeInspectCLinker.cmake \ + /usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake \ + /usr/share/cmake/Modules/Internal/CheckCompilerFlag.cmake \ + /usr/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake \ + /usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake \ + /usr/share/cmake/Modules/Internal/FeatureTesting.cmake \ + /usr/share/cmake/Modules/Linker/GNU-C.cmake \ + /usr/share/cmake/Modules/Linker/GNU-CXX.cmake \ + /usr/share/cmake/Modules/Linker/GNU.cmake \ + /usr/share/cmake/Modules/MacroAddFileDependencies.cmake \ + /usr/share/cmake/Modules/Platform/Linker/GNU.cmake \ + /usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake \ + /usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake \ + /usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake \ + /usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake \ + /usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake \ + /usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake \ + /usr/share/cmake/Modules/Platform/Linux-GNU.cmake \ + /usr/share/cmake/Modules/Platform/Linux-Initialize.cmake \ + /usr/share/cmake/Modules/Platform/Linux.cmake \ + /usr/share/cmake/Modules/Platform/UnixPaths.cmake + + +/usr/share/cmake/Modules/Platform/Linux.cmake: + +/usr/share/cmake/Modules/Platform/Linux-GNU.cmake: + +/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake: + +/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake: + +/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake: + +/usr/share/cmake/Modules/Linker/GNU.cmake: + +/usr/share/cmake/Modules/Linker/GNU-CXX.cmake: + +/usr/share/cmake/Modules/Linker/GNU-C.cmake: + +/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake: + +/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake: + +/usr/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake: + +/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake: + +/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake: + +/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake: + +/usr/share/cmake/Modules/GNUInstallDirs.cmake: + +/usr/share/cmake/Modules/FindVulkan.cmake: + +/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake: + +/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake: + +/usr/share/cmake/Modules/Compiler/GNU-C.cmake: + +/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake: + +/usr/share/cmake/Modules/CheckLibraryExists.cmake: + +/usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake: + +/usr/share/cmake/Modules/CheckCXXCompilerFlag.cmake: + +/usr/share/cmake/Modules/CheckCSourceCompiles.cmake: + +/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake: + +/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake: + +/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/CMakeSystem.cmake.in: + +/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake: + +/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake: + +/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake: + +/usr/share/cmake/Modules/CMakeLanguageInformation.cmake: + +/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake: + +/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake: + +/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake: + +/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake: + +/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake: + +/usr/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake: + +/usr/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp: + +/usr/share/cmake/Modules/CMakeCInformation.cmake: + +/usr/share/cmake/Modules/CMakeCCompilerABI.c: + +/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake: + +/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake: + +/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake: + +/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake: + +/usr/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake: + +/usr/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake: + +/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake: + +/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake: + +/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake: + +/usr/share/cmake/Modules/FindPackageMessage.cmake: + +/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake: + +/usr/share/cmake/Modules/Internal/FeatureTesting.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginAdditionalTargetInfo.cmake: + +/usr/share/cmake/Modules/CMakeCXXInformation.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargetsPrecheck.cmake: + +/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake: + +/usr/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake: + +/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake: + +/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginConfig.cmake: + +/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargetsPrecheck.cmake: + +/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargetsPrecheck.cmake: + +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h: + +/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets.cmake: + +/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/share/cmake/Modules/FindPkgConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6GuiTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake: + +/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake: + +/usr/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6DBus/Qt6DBusTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets.cmake: + +/usr/lib/cmake/Qt6DBus/Qt6DBusTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake: + +/usr/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake: + +/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake: + +/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake: + +/usr/lib/cmake/Qt6Core/Qt6CoreTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Core/Qt6CoreMacros.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets.cmake: + +/usr/lib/cmake/Qt6/QtPublicWindowsHelpers.cmake: + +/usr/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake: + +/usr/lib/cmake/Qt6/QtPublicTestHelpers.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginConfig.cmake: + +/usr/lib/cmake/Qt6/QtPublicTargetHelpers.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomSystemDepHelpers.cmake: + +/usr/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomQtEntityHelpers.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomPurlHelpers.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomOpsHelpers.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomGenerationCycloneDXHelpers.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomFileHelpers.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomCommonGenerationHelpers.cmake: + +/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomAttributionHelpers.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomDocumentNamespaceHelpers.cmake: + +/usr/lib/cmake/Qt6/QtPublicPluginHelpers_v2.cmake: + +/usr/lib/cmake/Qt6/QtPublicPluginHelpers.cmake: + +/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake: + +/usr/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake: + +/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake: + +/usr/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6/QtPublicCMakeEarlyPolicyHelpers.cmake: + +/usr/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake: + +/usr/lib/cmake/Qt6/Qt6TargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6/Qt6Targets.cmake: + +/usr/lib/cmake/Qt6/Qt6Dependencies.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6/Qt6ConfigExtras.cmake: + +/usr/lib/cmake/Qt6/Qt6Config.cmake: + +/usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake: + +/usr/lib/cmake/Qt6/FindWrapAtomic.cmake: + +/usr/include/wctype.h: + +/usr/include/wchar.h: + +/usr/include/sys/cdefs.h: + +/usr/lib/cmake/Qt6/QtPublicAndroidHelpers.cmake: + +/usr/include/strings.h: + +/usr/include/string.h: + +/usr/include/stdio.h: + +/usr/include/stdint.h: + +/usr/lib/cmake/Qt6/QtPublicSbomCycloneDXHelpers.cmake: + +/usr/include/c++/16.1.1/ext/atomicity.h: + +/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake: + +/usr/include/c++/16.1.1/ext/alloc_traits.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginStatusBar.cpp: + +/usr/include/qt6/QtCore/qobjectdefs_impl.h: + +/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake: + +/usr/include/c++/16.1.1/ext/aligned_buffer.h: + +/usr/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake: + +/usr/include/c++/16.1.1/debug/debug.h: + +/usr/include/qt6/QtCore/qfloat16.h: + +/usr/include/qt6/QtCore/qlatin1stringview.h: + +/usr/include/c++/16.1.1/debug/assertions.h: + +/usr/include/c++/16.1.1/bits/specfun.h: + +/usr/lib/cmake/Qt6/Qt6ConfigVersion.cmake: + +/usr/include/c++/16.1.1/cwctype: + +/usr/include/c++/16.1.1/ctime: + +/usr/include/c++/16.1.1/cstdio: + +/usr/include/c++/16.1.1/compare: + +/usr/share/cmake/Modules/CMakeFindBinUtils.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomExternalReferenceHelpers.cmake: + +/usr/include/c++/16.1.1/climits: + +/usr/include/bits/wordsize.h: + +/usr/include/c++/16.1.1/chrono: + +/usr/lib/cmake/Qt6/QtPublicSbomBuildToolHelpers.cmake: + +/usr/include/c++/16.1.1/cassert: + +/usr/include/c++/16.1.1/bits/uses_allocator_args.h: + +/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake: + +/usr/include/asm-generic/errno-base.h: + +/usr/include/c++/16.1.1/bits/vector.tcc: + +/usr/include/qt6/QtCore/qabstracteventdispatcher.h: + +/usr/include/c++/16.1.1/bits/uniform_int_dist.h: + +/usr/include/stdc-predef.h: + +/usr/include/c++/16.1.1/bits/stl_map.h: + +/usr/include/c++/16.1.1/limits: + +/usr/include/c++/16.1.1/bits/stl_uninitialized.h: + +/usr/include/c++/16.1.1/bits/stl_tree.h: + +/usr/include/qt6/QtCore/qdebug.h: + +/usr/include/c++/16.1.1/bits/stl_tempbuf.h: + +/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargetsPrecheck.cmake: + +/usr/include/c++/16.1.1/bits/stl_relops.h: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets.cmake: + +/usr/include/c++/16.1.1/bits/stl_pair.h: + +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: + +/usr/include/c++/16.1.1/bits/stl_algo.h: + +/usr/include/c++/16.1.1/bits/stl_list.h: + +/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake: + +/usr/include/c++/16.1.1/bits/sstream.tcc: + +/usr/include/c++/16.1.1/cstdlib: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargetsPrecheck.cmake: + +/usr/include/qt6/QtCore/qlist.h: + +/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginAdditionalTargetInfo.cmake: + +/usr/include/c++/16.1.1/bits/stl_iterator.h: + +/usr/include/qt6/QtCore/qarraydataops.h: + +/usr/include/qt6/QtCore/qflags.h: + +/usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake: + +/usr/include/c++/16.1.1/bits/stl_heap.h: + +/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake: + +/usr/include/qt6/QtCore/qoverload.h: + +/usr/include/c++/16.1.1/bits/version.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterableHeaderView.h: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets.cmake: + +/usr/include/c++/16.1.1/bits/stl_algobase.h: + +/usr/include/c++/16.1.1/bits/stdexcept_except.h: + +/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake: + +/usr/include/c++/16.1.1/bits/std_function.h: + +/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake: + +/usr/include/c++/16.1.1/bits/ranges_base.h: + +/usr/include/bits/errno.h: + +/usr/include/qt6/QtCore/qstdlibdetection.h: + +/usr/include/c++/16.1.1/bits/ranges_algobase.h: + +/usr/include/c++/16.1.1/bits/memoryfwd.h: + +/usr/include/c++/16.1.1/sstream: + +/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfig.cmake: + +/usr/include/qt6/QtCore/qcontainertools_impl.h: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargetsPrecheck.cmake: + +/usr/include/c++/16.1.1/bits/predefined_ops.h: + +/usr/include/qt6/QtWidgets/qstyleoption.h: + +/usr/include/c++/16.1.1/bits/node_handle.h: + +/usr/include/c++/16.1.1/bits/nested_exception.h: + +/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets-relwithdebinfo.cmake: + +/usr/include/c++/16.1.1/bits/move.h: + +/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake: + +/usr/include/c++/16.1.1/bits/cxxabi_forced.h: + +/usr/include/c++/16.1.1/bits/max_size_type.h: + +/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets.cmake: + +/usr/include/c++/16.1.1/bits/locale_facets.h: + +/usr/include/c++/16.1.1/bits/locale_classes.tcc: + +/usr/include/c++/16.1.1/bits/ostream_print.h: + +/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake: + +/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/CMakeUnixFindMake.cmake: + +/usr/include/c++/16.1.1/bits/iterator_concepts.h: + +/usr/include/qt6/QtCore/qstringtokenizer.h: + +/usr/include/c++/16.1.1/bits/invoke.h: + +/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake: + +/usr/include/c++/16.1.1/bits/intcmp.h: + +/usr/include/c++/16.1.1/ostream: + +/usr/include/qt6/QtCore/qvarlengtharray.h: + +/usr/include/c++/16.1.1/bits/hashtable_policy.h: + +/usr/include/bits/types/__mbstate_t.h: + +/usr/include/c++/16.1.1/bits/stl_function.h: + +/usr/include/qt6/QtGui/QUndoStack: + +/usr/include/qt6/QtCore/qbasicatomic.h: + +/usr/include/c++/16.1.1/bits/exception_ptr.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginToolBar.cpp: + +/usr/include/qt6/QtCore/qttypetraits.h: + +/usr/include/c++/16.1.1/bits/exception.h: + +/usr/include/qt6/QtCore/qgenericatomic.h: + +/usr/include/c++/16.1.1/unordered_set: + +/usr/include/c++/16.1.1/bits/erase_if.h: + +/usr/include/c++/16.1.1/backward/auto_ptr.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EditableGridWidget.cpp: + +/usr/include/c++/16.1.1/bits/functional_hash.h: + +/usr/include/c++/16.1.1/bits/unordered_set.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginSplitView.h: + +/usr/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake: + +/usr/include/bits/locale.h: + +/usr/include/c++/16.1.1/bits/concept_check.h: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/include/c++/16.1.1/bits/exception_defines.h: + +/usr/include/c++/16.1.1/bits/chrono.h: + +/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargetsPrecheck.cmake: + +/usr/include/c++/16.1.1/bits/char_traits.h: + +/usr/include/c++/16.1.1/bits/binders.h: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargetsPrecheck.cmake: + +/usr/include/c++/16.1.1/bits/functexcept.h: + +/usr/include/c++/16.1.1/iosfwd: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets.cmake: + +/usr/include/c++/16.1.1/new: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets.cmake: + +/usr/include/c++/16.1.1/bits/ostream.h: + +/usr/include/bits/pthread_stack_min-dynamic.h: + +/usr/include/bits/posix1_lim.h: + +/usr/include/c++/16.1.1/bits/ptr_traits.h: + +/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargets-relwithdebinfo.cmake: + +/usr/include/c++/16.1.1/cerrno: + +/usr/share/cmake/Modules/Platform/UnixPaths.cmake: + +/usr/include/qt6/QtCore/qutf8stringview.h: + +/usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h: + +/usr/include/c++/16.1.1/bits/basic_string.tcc: + +/usr/include/qt6/QtCore/qmath.h: + +/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/include/c++/16.1.1/bits/new_except.h: + +/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginAdditionalTargetInfo.cmake: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ThemeManager.cpp: + +/usr/include/c++/16.1.1/bits/alloc_traits.h: + +/usr/include/bits/floatn.h: + +/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake: + +/usr/include/c++/16.1.1/concepts: + +/usr/include/bits/byteswap.h: + +/usr/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomCpeHelpers.cmake: + +/usr/include/c++/16.1.1/bits/cpp_type_traits.h: + +/usr/include/qt6/QtCore/qbytearray.h: + +/usr/include/qt6/QtCore/qtdeprecationdefinitions.h: + +/usr/include/asm/posix_types.h: + +/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets-relwithdebinfo.cmake: + +/usr/include/bits/time.h: + +/usr/include/c++/16.1.1/version: + +/usr/include/asm/posix_types_64.h: + +/usr/include/sys/single_threaded.h: + +/usr/include/asm-generic/errno.h: + +/usr/include/asm-generic/types.h: + +/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake: + +/usr/include/c++/16.1.1/bits/list.tcc: + +/usr/include/asm-generic/bitsperlong.h: + +/usr/include/bits/stdint-least.h: + +/usr/include/c++/16.1.1/bits/hashtable.h: + +/usr/include/c++/16.1.1/exception: + +/usr/include/c++/16.1.1/cwchar: + +/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets.cmake: + +/usr/lib/cmake/Qt6/QtFeatureCommon.cmake: + +/usr/include/bits/posix2_lim.h: + +/usr/include/alloca.h: + +/usr/lib/cmake/Qt6/QtPublicSbomHelpers.cmake: + +/usr/include/c++/16.1.1/set: + +/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake: + +/usr/include/c++/16.1.1/tr1/legendre_function.tcc: + +/usr/lib/cmake/Qt6Core/Qt6CoreConfig.cmake: + +/usr/include/c++/16.1.1/cstdint: + +/usr/include/asm/types.h: + +/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake: + +/usr/include/c++/16.1.1/charconv: + +/usr/include/bits/types/struct_FILE.h: + +/usr/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake: + +/usr/include/c++/16.1.1/bits/string_view.tcc: + +/usr/include/qt6/QtGui/qcolor.h: + +/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/include/qt6/QtCore/qtcoreexports.h: + +/usr/lib/cmake/Qt6/QtPublicSbomRelationshipHelpers.cmake: + +/usr/include/qt6/QtWidgets/qrubberband.h: + +/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake: + +/usr/include/c++/16.1.1/bits/stl_construct.h: + +/usr/include/c++/16.1.1/bits/locale_facets.tcc: + +/usr/include/bits/libc-header-start.h: + +/usr/include/qt6/QtCore/qtresource.h: + +/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake: + +/usr/include/bits/uio_lim.h: + +/usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h: + +/usr/include/asm/errno.h: + +/usr/include/qt6/QtWidgets/qsizepolicy.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EditableGridWidget.h: + +/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake: + +/usr/include/asm-generic/int-ll64.h: + +/usr/lib/cmake/Qt6/QtPublicSbomLicenseHelpers.cmake: + +/usr/include/qt6/QtCore/qxptype_traits.h: + +/usr/include/c++/16.1.1/algorithm: + +/usr/include/c++/16.1.1/bits/ios_base.h: + +/usr/include/qt6/QtCore/qcheckedint_impl.h: + +/usr/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake: + +/usr/include/c++/16.1.1/bits/stdexcept_throw.h: + +/usr/include/bits/endian.h: + +/usr/include/c++/16.1.1/bits/new_allocator.h: + +/usr/share/cmake/Modules/CMakeGenericSystem.cmake: + +/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake: + +/usr/include/ctype.h: + +/usr/include/bits/thread-shared-types.h: + +/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h: + +/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargetsPrecheck.cmake: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ScopedFindReplacePanel.cpp: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginToolBar.h: + +/usr/include/qt6/QtCore/qiodevicebase.h: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargetsPrecheck.cmake: + +/usr/include/c++/16.1.1/bits/enable_special_members.h: + +/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargets.cmake: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterRowWidget.h: + +/usr/include/c++/16.1.1/tr1/ell_integral.tcc: + +/usr/include/bits/types/__locale_t.h: + +/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargetsPrecheck.cmake: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EncodingUtils.h: + +/usr/include/sys/types.h: + +/usr/include/c++/16.1.1/bits/ostream_insert.h: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets-relwithdebinfo.cmake: + +/usr/include/qt6/QtCore/qttranslation.h: + +/usr/include/qt6/QtCore/qversiontagging.h: + +/usr/include/c++/16.1.1/ext/numeric_traits.h: + +/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargetsPrecheck.cmake: + +/usr/include/bits/long-double.h: + +/usr/include/qt6/QtCore/qsharedpointer_impl.h: + +/usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h: + +/usr/include/qt6/QtCore/qpair.h: + +/usr/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6/QtPublicGitHelpers.cmake: + +/usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h: + +/usr/include/asm-generic/posix_types.h: + +/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake: + +/usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc: + +/usr/share/cmake/Modules/CheckIncludeFile.cmake: + +/usr/include/bits/types/__sigset_t.h: + +/usr/include/c++/16.1.1/tuple: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FocusManager.h: + +/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake: + +/usr/include/c++/16.1.1/bits/chrono_io.h: + +/usr/include/asm/bitsperlong.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FocusManager.cpp: + +/usr/include/c++/16.1.1/list: + +/usr/include/bits/uintn-identity.h: + +/usr/include/c++/16.1.1/bits/stl_vector.h: + +/usr/include/c++/16.1.1/bits/allocator.h: + +/usr/include/c++/16.1.1/backward/binders.h: + +/usr/include/c++/16.1.1/bits/stl_multimap.h: + +CMakeFiles/4.3.3/CMakeSystem.cmake: + +/usr/include/bits/timesize.h: + +/usr/include/qt6/QtCore/qiterator.h: + +/usr/include/qt6/QtCore/qminmax.h: + +/usr/include/bits/waitstatus.h: + +/usr/share/cmake/Modules/FindOpenGL.cmake: + +/usr/include/bits/types/struct___jmp_buf_tag.h: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargetsPrecheck.cmake: + +/usr/include/bits/wchar.h: + +/usr/include/bits/typesizes.h: + +/usr/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake: + +/usr/include/c++/16.1.1/bits/stl_multiset.h: + +/usr/include/c++/16.1.1/bits/postypes.h: + +/usr/include/c++/16.1.1/bits/shared_ptr.h: + +/usr/include/bits/local_lim.h: + +CMakeFiles/4.3.3/CMakeCCompiler.cmake: + +/usr/include/qt6/QtCore/qscopeguard.h: + +/usr/include/c++/16.1.1/bits/unique_ptr.h: + +/usr/include/c++/16.1.1/bits/charconv.h: + +/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake: + +/usr/include/c++/16.1.1/ext/string_conversions.h: + +/usr/include/qt6/QtCore/qstring.h: + +/usr/include/bits/types/FILE.h: + +/usr/include/linux/posix_types.h: + +/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake: + +/usr/include/qt6/QtCore/QObject: + +/usr/include/qt6/QtCore/q23utility.h: + +/usr/share/cmake/Modules/Internal/CMakeInspectCLinker.cmake: + +/usr/include/c++/16.1.1/cstddef: + +/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake: + +/usr/include/qt6/QtCore/qrefcount.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ThemeManager.h: + +/usr/include/c++/16.1.1/bits/streambuf.tcc: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginStatusBar.h: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargetsPrecheck.cmake: + +/usr/include/qt6/QtCore/q23type_traits.h: + +/usr/include/bits/endianness.h: + +/usr/include/c++/16.1.1/bits/stringfwd.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FindReplacePanel.cpp: + +/usr/include/bits/types/clock_t.h: + +/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake: + +/usr/include/c++/16.1.1/clocale: + +/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake: + +/usr/include/c++/16.1.1/bits/algorithmfwd.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterRowWidget.cpp: + +/usr/include/bits/pthreadtypes.h: + +/usr/include/qt6/QtWidgets/qheaderview.h: + +/usr/include/qt6/QtWidgets/QLabel: + +/usr/include/bits/types/__FILE.h: + +/usr/include/bits/types/cookie_io_functions_t.h: + +/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginAdditionalTargetInfo.cmake: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/CrashLogger.cpp: + +/usr/include/c++/16.1.1/bits/atomic_base.h: + +/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake: + +/usr/include/bits/select.h: + +/usr/include/bits/atomic_wide_counter.h: + +/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake: + +/usr/include/c++/16.1.1/bits/allocated_ptr.h: + +/usr/include/c++/16.1.1/ext/type_traits.h: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargetsPrecheck.cmake: + +/usr/include/bits/setjmp.h: + +/usr/share/cmake/Modules/Compiler/GNU.cmake: + +/usr/include/c++/16.1.1/bits/localefwd.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/CrashLogger.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ScopedFindReplacePanel.h: + +/usr/include/bits/types/error_t.h: + +/usr/include/qt6/QtCore/qstringalgorithms.h: + +/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake: + +/usr/include/c++/16.1.1/string: + +/usr/include/qt6/QtGui/qfontinfo.h: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginAdditionalTargetInfo.cmake: + +/usr/include/qt6/QtGui/qtextdocument.h: + +/usr/include/c++/16.1.1/bits/shared_ptr_base.h: + +/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake: + +/usr/include/c++/16.1.1/bits/refwrap.h: + +/usr/share/cmake/Modules/CMakeCCompiler.cmake.in: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargetsPrecheck.cmake: + +/usr/include/c++/16.1.1/bit: + +/usr/include/c++/16.1.1/type_traits: + +/usr/include/bits/stdio_lim.h: + +/usr/include/bits/types/struct_timeval.h: + +/usr/include/qt6/QtWidgets/qabstractitemview.h: + +/usr/include/c++/16.1.1/bits/range_access.h: + +/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargetsPrecheck.cmake: + +/usr/include/bits/struct_mutex.h: + +/usr/include/bits/types/time_t.h: + +/usr/lib/cmake/Qt6Core/Qt6CoreTargets.cmake: + +/usr/include/bits/stdlib-float.h: + +/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfig.cmake: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginSplitView.cpp: + +/usr/include/qt6/QtGui/qtransform.h: + +/usr/include/bits/time64.h: + +/usr/include/c++/16.1.1/bits/uses_allocator.h: + +/usr/include/linux/errno.h: + +/usr/include/qt6/QtWidgets/qtwidgets-config.h: + +/usr/include/c++/16.1.1/bits/utility.h: + +/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfig.cmake: + +/usr/include/qt6/QtCore/qprocessordetection.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterableHeaderView.cpp: + +/usr/include/bits/types.h: + +/usr/include/qt6/QtCore/qiodevice.h: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfig.cmake: + +/usr/include/qt6/QtCore/qtaggedpointer.h: + +/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargets-relwithdebinfo.cmake: + +/usr/include/qt6/QtCore/qassert.h: + +/usr/include/qt6/QtWidgets/qtableview.h: + +/usr/include/c++/16.1.1/bits/hash_bytes.h: + +/usr/include/bits/types/struct_tm.h: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets.cmake: + +CMakeFiles/4.3.3/CMakeCXXCompiler.cmake: + +/usr/include/bits/types/__fpos_t.h: + +/usr/include/c++/16.1.1/ext/concurrence.h: + +/usr/include/qt6/QtCore/qsharedpointer.h: + +/usr/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomPythonHelpers.cmake: + +/usr/include/bits/types/locale_t.h: + +/usr/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EncodingUtils.cpp: + +/usr/include/qt6/QtCore/qmalloc.h: + +/usr/include/bits/types/mbstate_t.h: + +/usr/include/c++/16.1.1/bits/ranges_cmp.h: + +/usr/include/c++/16.1.1/bits/stream_iterator.h: + +/usr/include/bits/types/sigset_t.h: + +/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake: + +/usr/include/c++/16.1.1/bits/ostream.tcc: + +/usr/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake: + +/usr/include/qt6/QtCore/qconfig.h: + +/usr/include/qt6/QtCore/qshareddata_impl.h: + +/usr/include/bits/sched.h: + +/usr/include/bits/struct_rwlock.h: + +/usr/include/bits/types/struct_itimerspec.h: + +/usr/include/qt6/QtCore/q20type_traits.h: + +/usr/include/bits/types/struct_sched_param.h: + +/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargets-relwithdebinfo.cmake: + +/usr/include/bits/waitflags.h: + +/usr/include/qt6/QtCore/qcompilerdetection.h: + +/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake: + +/usr/include/bits/types/__fpos64_t.h: + +/usr/include/c++/16.1.1/bits/requires_hosted.h: + +/usr/lib/cmake/Qt6DBus/Qt6DBusVersionlessAliasTargets.cmake: + +/usr/include/c++/16.1.1/bits/ranges_algo.h: + +/usr/include/c++/16.1.1/bits/ranges_util.h: + +/usr/include/c++/16.1.1/cstring: + +/usr/include/c++/16.1.1/bits/align.h: + +/usr/include/c++/16.1.1/bits/streambuf_iterator.h: + +/usr/include/bits/types/struct_timespec.h: + +/usr/include/qt6/QtCore/qiterable.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/CMakeLists.txt: + +/usr/include/c++/16.1.1/bits/std_abs.h: + +/usr/include/qt6/QtCore/qscopedpointer.h: + +/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake: + +/usr/include/bits/types/timer_t.h: + +/usr/include/qt6/QtCore/qvariant.h: + +/usr/include/bits/types/wint_t.h: + +/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake: + +/usr/lib/cmake/Qt6/QtPublicSbomDepHelpers.cmake: + +/usr/include/c++/16.1.1/bits/stl_numeric.h: + +/usr/include/bits/stdint-intn.h: + +/usr/include/bits/wctype-wchar.h: + +/usr/include/bits/xopen_lim.h: + +/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargetsPrecheck.cmake: + +/usr/lib/cmake/Qt6/QtInstallPaths.cmake: + +/usr/include/c++/16.1.1/bits/stl_set.h: + +/usr/include/bits/types/clockid_t.h: + +/usr/include/c++/16.1.1/bits/new_throw.h: + +/usr/include/c++/16.1.1/bits/basic_ios.h: + +/usr/include/endian.h: + +/usr/include/qt6/QtCore/qitemselectionmodel.h: + +/usr/include/qt6/QtCore/qstringbuilder.h: + +/usr/include/qt6/QtGui/qregion.h: + +/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets.cmake: + +/usr/include/c++/16.1.1/cmath: + +/usr/include/c++/16.1.1/atomic: + +/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginConfig.cmake: + +/usr/include/bits/cpu-set.h: + +/usr/include/c++/16.1.1/bits/basic_ios.tcc: + +/usr/include/bits/floatn-common.h: + +/usr/include/qt6/QtWidgets/qtabwidget.h: + +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: + +/usr/include/c++/16.1.1/bits/basic_string.h: + +/usr/include/qt6/QtCore/qtimer.h: + +/usr/include/c++/16.1.1/format: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginAdditionalTargetInfo.cmake: + +/usr/include/qt6/QtCore/qbytearrayalgorithms.h: + +/usr/include/qt6/QtWidgets/qframe.h: + +/usr/include/c++/16.1.1/initializer_list: + +/usr/include/c++/16.1.1/istream: + +/usr/lib/cmake/Qt6/QtPublicAppleHelpers.cmake: + +/usr/include/c++/16.1.1/iterator: + +/usr/include/qt6/QtCore/qtenvironmentvariables.h: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets.cmake: + +/usr/include/qt6/QtCore/qconstructormacros.h: + +/usr/include/c++/16.1.1/map: + +/usr/include/c++/16.1.1/memory: + +/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginConfig.cmake: + +/usr/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake: + +/usr/include/c++/16.1.1/pstl/execution_defs.h: + +/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake: + +/usr/include/c++/16.1.1/tr1/hypergeometric.tcc: + +/usr/include/bits/timex.h: + +/usr/include/c++/16.1.1/pstl/glue_numeric_defs.h: + +/usr/share/cmake/Modules/Platform/Linker/GNU.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake: + +/usr/include/c++/16.1.1/pstl/pstl_config.h: + +/usr/include/c++/16.1.1/ratio: + +/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake: + +/usr/include/c++/16.1.1/stdexcept: + +/usr/include/qt6/QtCore/qcompare.h: + +/usr/include/c++/16.1.1/string_view: + +/usr/include/c++/16.1.1/system_error: + +/usr/include/c++/16.1.1/streambuf: + +/usr/include/qt6/QtWidgets/qtoolbar.h: + +/usr/include/c++/16.1.1/tr1/bessel_function.tcc: + +/usr/include/c++/16.1.1/tr1/riemann_zeta.tcc: + +/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginAdditionalTargetInfo.cmake: + +/usr/include/c++/16.1.1/tr1/beta_function.tcc: + +/usr/include/qt6/QtCore/qset.h: + +/usr/include/c++/16.1.1/tr1/special_function_util.h: + +/usr/include/c++/16.1.1/tr1/exp_integral.tcc: + +/usr/include/qt6/QtCore/qcompare_impl.h: + +/usr/include/c++/16.1.1/tr1/gamma.tcc: + +/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake: + +/usr/include/c++/16.1.1/tr1/poly_laguerre.tcc: + +/usr/include/qt6/QtGui/qrgba64.h: + +/usr/include/c++/16.1.1/typeinfo: + +/usr/include/qt6/QtGui/qicon.h: + +/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake: + +/usr/include/qt6/QtWidgets/QToolBar: + +/usr/include/c++/16.1.1/unordered_map: + +/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake: + +/usr/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake: + +/usr/include/qt6/QtCore/QPointer: + +/usr/include/qt6/QtCore/qstringfwd.h: + +/usr/include/c++/16.1.1/utility: + +/usr/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake: + +/usr/include/c++/16.1.1/variant: + +/usr/include/c++/16.1.1/vector: + +/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h: + +/usr/include/qt6/QtWidgets/qtwidgetsexports.h: + +/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h: + +/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargetsPrecheck.cmake: + +/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h: + +/usr/include/qt6/QtCore/qdatastream.h: + +/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h: + +/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h: + +/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake: + +/usr/include/qt6/QtCore/qtextstream.h: + +/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h: + +/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargetsPrecheck.cmake: + +/usr/include/c++/16.1.1/cctype: + +/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h: + +/usr/include/errno.h: + +/usr/include/features-time64.h: + +/usr/include/qt6/QtCore/QVector: + +/usr/include/qt6/QtCore/q17memory.h: + +/usr/include/gnu/stubs-64.h: + +/usr/include/qt6/QtCore/qtversionchecks.h: + +/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake: + +/usr/include/qt6/QtCore/qatomic.h: + +/usr/include/c++/16.1.1/optional: + +/usr/include/linux/limits.h: + +/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake: + +/usr/include/linux/sched/types.h: + +/usr/include/linux/stddef.h: + +/usr/include/linux/types.h: + +/usr/include/pthread.h: + +/usr/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake: + +/usr/include/qt6/QtWidgets/qwidget.h: + +/usr/include/qt6/QtCore/QMap: + +/usr/include/qt6/QtCore/qanystringview.h: + +/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfig.cmake: + +/usr/include/qt6/QtCore/QSet: + +/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake: + +/usr/include/qt6/QtCore/QTimer: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfig.cmake: + +/usr/include/qt6/QtCore/q20functional.h: + +/usr/include/features.h: + +/usr/include/qt6/QtCore/q20iterator.h: + +/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake: + +/usr/include/qt6/QtCore/q20memory.h: + +/usr/include/qt6/QtGui/qimage.h: + +/usr/include/qt6/QtCore/q20utility.h: + +/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake: + +/usr/include/qt6/QtCore/qabstractitemmodel.h: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginConfig.cmake: + +/usr/include/qt6/QtCore/qalloc.h: + +/usr/include/qt6/QtCore/qarraydatapointer.h: + +/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargetsPrecheck.cmake: + +/usr/include/qt6/QtCore/qatomic_cxx11.h: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/include/qt6/QtCore/qbindingstorage.h: + +/usr/include/qt6/QtCore/qbytearraylist.h: + +/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets-relwithdebinfo.cmake: + +/usr/include/c++/16.1.1/bits/istream.tcc: + +/usr/include/qt6/QtCore/qbytearrayview.h: + +/usr/include/qt6/QtCore/qchar.h: + +/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake: + +wayland_qt_base_autogen/moc_predefs.h: + +/usr/include/qt6/QtCore/qcomparehelpers.h: + +/usr/include/qt6/QtCore/qcontainerfwd.h: + +/usr/include/qt6/QtCore/qcontainerinfo.h: + +/usr/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake: + +/usr/include/qt6/QtCore/qcontiguouscache.h: + +/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets.cmake: + +/usr/include/qt6/QtCore/qdarwinhelpers.h: + +/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake: + +/usr/include/c++/16.1.1/bits/memory_resource.h: + +/usr/include/qt6/QtCore/qdeadlinetimer.h: + +/usr/include/qt6/QtCore/qendian.h: + +/usr/include/c++/16.1.1/bits/locale_classes.h: + +/usr/include/qt6/QtCore/qeventloop.h: + +/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake: + +/usr/include/qt6/QtCore/qexceptionhandling.h: + +/usr/share/cmake/Modules/FindThreads.cmake: + +/usr/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake: + +/usr/include/qt6/QtCore/qforeach.h: + +/usr/include/c++/16.1.1/numeric: + +/usr/include/qt6/QtCore/qfunctionpointer.h: + +/usr/include/qt6/QtCore/qglobal.h: + +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FindReplacePanel.h: + +/usr/include/qt6/QtCore/qhash.h: + +/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake: + +/usr/include/c++/16.1.1/bits/ranges_uninitialized.h: + +/usr/include/qt6/QtCore/qhashfunctions.h: + +/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h: + +/usr/include/qt6/QtWidgets/qabstractspinbox.h: + +/usr/include/qt6/QtCore/qline.h: + +/usr/include/time.h: + +/usr/include/qt6/QtCore/qlocale.h: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets.cmake: + +/usr/include/bits/stdint-uintn.h: + +/usr/include/qt6/QtCore/qlogging.h: + +/usr/include/qt6/QtCore/qmap.h: + +/usr/share/cmake/Modules/MacroAddFileDependencies.cmake: + +/usr/include/qt6/QtCore/qmargins.h: + +/usr/include/qt6/QtCore/qmetatype.h: + +/usr/include/qt6/QtWidgets/QWidget: + +/usr/share/cmake/Modules/CMakeDetermineSystem.cmake: + +/usr/include/qt6/QtCore/qnamespace.h: + +/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake: + +/usr/include/qt6/QtCore/qnumeric.h: + +/usr/include/qt6/QtCore/qobject.h: + +/usr/include/qt6/QtCore/qobject_impl.h: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargets-relwithdebinfo.cmake: + +/usr/include/qt6/QtCore/qglobalstatic.h: + +/usr/include/limits.h: + +/usr/include/qt6/QtCore/qobjectdefs.h: + +/usr/include/c++/16.1.1/bits/atomic_wait.h: + +/usr/include/qt6/QtCore/qpoint.h: + +/usr/include/bits/pthreadtypes-arch.h: + +/usr/include/c++/16.1.1/tr1/poly_hermite.tcc: + +/usr/include/qt6/QtCore/qpointer.h: + +/usr/include/qt6/QtCore/qshareddata.h: + +/usr/include/c++/16.1.1/functional: + +/usr/include/qt6/QtCore/qsize.h: + +/usr/include/qt6/QtCore/qtnoop.h: + +/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake: + +/usr/include/qt6/QtCore/qspan.h: + +/usr/include/c++/16.1.1/bits/stl_bvector.h: + +/usr/include/c++/16.1.1/array: + +/usr/include/qt6/QtCore/qregularexpression.h: + +/usr/include/qt6/QtCore/qstringconverter.h: + +/usr/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake: + +/usr/include/qt6/QtGui/qpixmap.h: + +/usr/include/qt6/QtCore/qstringconverter_base.h: + +/usr/include/qt6/QtCore/qstringlist.h: + +/usr/include/assert.h: + +/usr/include/qt6/QtCore/qstringmatcher.h: + +/usr/include/c++/16.1.1/bits/parse_numbers.h: + +/usr/include/qt6/QtCore/qstringview.h: + +/usr/include/sys/select.h: + +/usr/include/qt6/QtGui/qundostack.h: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargets-relwithdebinfo.cmake: + +/usr/include/qt6/QtCore/qswap.h: + +/usr/include/qt6/QtCore/qsysinfo.h: + +/usr/include/qt6/QtCore/qsystemdetection.h: + +/usr/include/qt6/QtCore/qtclasshelpermacros.h: + +/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake: + +/usr/include/gnu/stubs.h: + +/usr/include/qt6/QtCore/qtconfigmacros.h: + +/usr/include/qt6/QtCore/qtcore-config.h: + +/usr/include/qt6/QtCore/qtcoreglobal.h: + +/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h: + +/usr/include/locale.h: + +/usr/include/qt6/QtCore/qtdeprecationmarkers.h: + +/usr/include/qt6/QtCore/qtformat_impl.h: + +/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake: + +/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake: + +/usr/include/qt6/QtCore/qarraydata.h: + +/usr/include/qt6/QtWidgets/QHeaderView: + +/usr/share/cmake/Modules/Internal/CheckCompilerFlag.cmake: + +/usr/include/qt6/QtCore/qtmetamacros.h: + +/usr/include/qt6/QtCore/qtpreprocessorsupport.h: + +/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargetsPrecheck.cmake: + +/usr/include/qt6/QtGui/qpalette.h: + +/usr/include/qt6/QtCore/qtversion.h: + +/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake: + +/usr/include/qt6/QtCore/qtconfiginclude.h: + +/usr/include/qt6/QtCore/qtypes.h: + +/usr/include/qt6/QtCore/qalgorithms.h: + +/usr/include/qt6/QtGui/qwindowdefs.h: + +/usr/include/qt6/QtCore/qurl.h: + +/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h: + +/usr/include/qt6/QtCore/qvector.h: + +/usr/include/qt6/QtCore/qyieldcpu.h: + +/usr/include/qt6/QtWidgets/qsplitter.h: + +/usr/include/c++/16.1.1/bits/cxxabi_init_exception.h: + +/usr/include/qt6/QtGui/QKeySequence: + +/usr/share/cmake/Modules/CMakeTestCCompiler.cmake: + +/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake: + +/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake: + +/usr/include/qt6/QtGui/qaction.h: + +/usr/include/qt6/QtGui/qbitmap.h: + +/usr/include/qt6/QtCore/q20bit.h: + +/usr/include/qt6/QtGui/qbrush.h: + +/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets.cmake: + +/usr/include/c++/16.1.1/ios: + +/usr/include/qt6/QtGui/qcursor.h: + +/usr/lib/cmake/Qt6/QtPublicToolHelpers.cmake: + +/usr/include/qt6/QtGui/qfontmetrics.h: + +/usr/include/qt6/QtCore/qbasictimer.h: + +/usr/include/qt6/QtGui/qfontvariableaxis.h: + +/usr/include/qt6/QtGui/qkeysequence.h: + +/usr/include/qt6/QtGui/qpixelformat.h: + +/usr/lib/cmake/Qt6/QtFeature.cmake: + +/usr/include/qt6/QtGui/qpaintdevice.h: + +/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginConfig.cmake: + +/usr/include/qt6/QtCore/qfunctionaltools_impl.h: + +/usr/include/qt6/QtGui/qpolygon.h: + +/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake: + +/usr/include/qt6/QtGui/qpicture.h: + +/usr/include/c++/16.1.1/bits/shared_ptr_atomic.h: + +/usr/bin/cmake: + +/usr/include/qt6/QtGui/qrgb.h: + +/usr/include/qt6/QtGui/qtgui-config.h: + +/usr/include/qt6/QtGui/qtguiexports.h: + +/usr/include/qt6/QtGui/qfont.h: + +/usr/include/qt6/QtGui/qtguiglobal.h: + +/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake: + +/usr/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake: + +/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargetsPrecheck.cmake: + +/usr/include/qt6/QtGui/qvalidator.h: + +/usr/include/qt6/QtCore/qmetacontainer.h: + +/usr/include/qt6/QtWidgets/QSplitter: + +/usr/include/qt6/QtWidgets/QStyledItemDelegate: + +/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake: + +/usr/include/qt6/QtWidgets/QTableView: + +/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargetsPrecheck.cmake: + +/usr/include/qt6/QtWidgets/qabstractitemdelegate.h: + +/usr/include/qt6/QtWidgets/qabstractscrollarea.h: + +/usr/include/c++/16.1.1/bits/stl_iterator_base_types.h: + +/usr/include/qt6/QtCore/qtypeinfo.h: + +/usr/include/qt6/QtWidgets/qabstractslider.h: + +/usr/include/qt6/QtWidgets/qlabel.h: + +/usr/include/stdlib.h: + +/usr/include/qt6/QtCore/qrect.h: + +/usr/include/qt6/QtWidgets/qslider.h: + +/usr/include/qt6/QtWidgets/qstyle.h: + +/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake: + +/usr/include/qt6/QtWidgets/qstyleditemdelegate.h: + +/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake: + +/usr/include/c++/16.1.1/bits/unordered_map.h: + +/usr/include/qt6/QtWidgets/qtabbar.h: + +/usr/include/qt6/QtWidgets/qtwidgetsglobal.h: + +/usr/include/sched.h: diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/compiler_depend.ts b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/compiler_depend.ts new file mode 100644 index 0000000..3f2323a --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for wayland_qt_base. diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/depend.make b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/depend.make new file mode 100644 index 0000000..d5bc322 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for wayland_qt_base. +# This may be replaced when dependencies are built. diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/flags.make b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/flags.make new file mode 100644 index 0000000..d6c3bcf --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.3 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_WIDGETS_LIB + +CXX_INCLUDES = -I/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/include -I/home/pplupo/repos/plugins/wlx/wayland_qt_base/include -I/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/lib -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -isystem /usr/include/qt6/QtCore -isystem /usr/include/qt6 -isystem /usr/lib/qt6/mkspecs/linux-g++ -isystem /usr/include/qt6/QtGui -isystem /usr/include/qt6/QtWidgets + +CXX_FLAGS = -std=gnu++20 -mno-direct-extern-access + diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/link.txt b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/link.txt new file mode 100644 index 0000000..eb925ca --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libwayland_qt_base.a CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o +/usr/bin/ranlib libwayland_qt_base.a diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/progress.make b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/progress.make new file mode 100644 index 0000000..1029366 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/progress.make @@ -0,0 +1,16 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 +CMAKE_PROGRESS_10 = 10 +CMAKE_PROGRESS_11 = 11 +CMAKE_PROGRESS_12 = 12 +CMAKE_PROGRESS_13 = 13 +CMAKE_PROGRESS_14 = 14 +CMAKE_PROGRESS_15 = 15 + diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o new file mode 100644 index 0000000..dca542a Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o.d b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o.d new file mode 100644 index 0000000..cf7eee2 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o.d @@ -0,0 +1,155 @@ +CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/CrashLogger.cpp \ + /usr/include/stdc-predef.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/CrashLogger.h \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/version.h \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/bits/hash_bytes.h /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/move.h /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/bits/requires_hosted.h \ + /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/postypes.h /usr/include/c++/16.1.1/cwchar \ + /usr/include/wchar.h /usr/include/bits/libc-header-start.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/__locale_t.h /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/16.1.1/iosfwd \ + /usr/include/c++/16.1.1/cctype /usr/include/ctype.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/backward/binders.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/utility.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bit /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/numbers /usr/include/c++/16.1.1/limits \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/c++/16.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/cstddef \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/tuple /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/cstring /usr/include/string.h \ + /usr/include/strings.h /usr/include/c++/16.1.1/ctime /usr/include/time.h \ + /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/c++/16.1.1/mutex /usr/include/c++/16.1.1/bits/chrono.h \ + /usr/include/c++/16.1.1/ratio /usr/include/c++/16.1.1/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/bits/std_mutex.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/linux/sched/types.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/c++/16.1.1/bits/unique_lock.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h /usr/include/dlfcn.h \ + /usr/include/bits/dlfcn.h /usr/include/bits/dl_find_object.h \ + /usr/include/execinfo.h /usr/include/c++/16.1.1/cxxabi.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cxxabi_tweaks.h \ + /usr/include/libgen.h diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o new file mode 100644 index 0000000..3c77c3d Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o.d b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o.d new file mode 100644 index 0000000..7a546af --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o.d @@ -0,0 +1,471 @@ +CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EditableGridWidget.cpp \ + /usr/include/stdc-predef.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EditableGridWidget.h \ + /usr/include/qt6/QtWidgets/QWidget /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtGui/qtguiglobal.h /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/bits/version.h /usr/include/c++/16.1.1/cstddef \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/utility.h /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/wchar.h \ + /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h /usr/include/assert.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/c++/16.1.1/version /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/16.1.1/limits \ + /usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/backward/binders.h /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/numbers /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/pstl/glue_algorithm_defs.h \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/linux/sched/types.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/variant /usr/include/c++/16.1.1/bits/monostate.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/bits/requires_hosted.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qnamespace.h /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/vector.tcc /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/ostream.h /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/postypes.h /usr/include/c++/16.1.1/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/16.1.1/cctype \ + /usr/include/ctype.h /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/c++/16.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/pstl/glue_memory_defs.h \ + /usr/include/qt6/QtCore/qobject.h /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qchar.h /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/q23type_traits.h /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/16.1.1/stdlib.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qlist.h /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/qt6/QtCore/qiterator.h /usr/include/c++/16.1.1/ranges \ + /usr/include/c++/16.1.1/span /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qalgorithms.h /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qfloat16.h /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qtformat_impl.h /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/charconv /usr/include/c++/16.1.1/locale \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.h \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/16.1.1/bits/codecvt.h \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.tcc \ + /usr/include/c++/16.1.1/bits/locale_conv.h \ + /usr/include/c++/16.1.1/bits/formatfwd.h \ + /usr/include/c++/16.1.1/bits/unicode.h \ + /usr/include/c++/16.1.1/bits/unicode-data.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/list.tcc /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qbindingstorage.h /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/bits/chrono.h /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/sstream /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/q20utility.h /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qkeysequence.h /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtCore/qsize.h /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpaintdevice.h /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qpoint.h /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qrgb.h /usr/include/qt6/QtGui/qrgba64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtGui/qimage.h /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qtransform.h /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h /usr/include/qt6/QtCore/qspan.h \ + /usr/include/c++/16.1.1/cassert /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/qline.h /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qdebug.h /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/c++/16.1.1/climits /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/c++/16.1.1/set /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qset.h /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qalloc.h /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qbrush.h /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtCore/qendian.h /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtGui/qcursor.h /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtWidgets/QTableView \ + /usr/include/qt6/QtWidgets/qtableview.h \ + /usr/include/qt6/QtWidgets/qabstractitemview.h \ + /usr/include/qt6/QtWidgets/qabstractscrollarea.h \ + /usr/include/qt6/QtWidgets/qframe.h \ + /usr/include/qt6/QtCore/qabstractitemmodel.h \ + /usr/include/qt6/QtCore/qitemselectionmodel.h \ + /usr/include/qt6/QtWidgets/qabstractitemdelegate.h \ + /usr/include/qt6/QtWidgets/qstyleoption.h \ + /usr/include/qt6/QtCore/qlocale.h \ + /usr/include/qt6/QtWidgets/qabstractspinbox.h \ + /usr/include/qt6/QtGui/qvalidator.h \ + /usr/include/qt6/QtCore/qregularexpression.h \ + /usr/include/qt6/QtWidgets/qslider.h \ + /usr/include/qt6/QtWidgets/qabstractslider.h \ + /usr/include/qt6/QtWidgets/qstyle.h /usr/include/qt6/QtWidgets/qtabbar.h \ + /usr/include/qt6/QtWidgets/qtabwidget.h \ + /usr/include/qt6/QtWidgets/qrubberband.h \ + /usr/include/qt6/QtGui/QUndoStack /usr/include/qt6/QtGui/qundostack.h \ + /usr/include/qt6/QtWidgets/QHeaderView \ + /usr/include/qt6/QtWidgets/qheaderview.h \ + /usr/include/qt6/QtWidgets/QStyledItemDelegate \ + /usr/include/qt6/QtWidgets/qstyleditemdelegate.h \ + /usr/include/qt6/QtCore/QTimer /usr/include/qt6/QtCore/qtimer.h \ + /usr/include/qt6/QtCore/qbasictimer.h \ + /usr/include/qt6/QtCore/qabstracteventdispatcher.h \ + /usr/include/qt6/QtCore/qeventloop.h \ + /usr/include/qt6/QtCore/qdeadlinetimer.h \ + /usr/include/qt6/QtCore/QPointer /usr/include/qt6/QtCore/qpointer.h \ + /usr/include/qt6/QtCore/QSet \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FocusManager.h \ + /usr/include/qt6/QtCore/QObject /usr/include/qt6/QtGui/QKeySequence \ + /usr/include/qt6/QtCore/QVector /usr/include/qt6/QtCore/qvector.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterRowWidget.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ThemeManager.h \ + /usr/include/qt6/QtCore/QString /usr/include/qt6/QtWidgets/QApplication \ + /usr/include/qt6/QtWidgets/qapplication.h \ + /usr/include/qt6/QtCore/qcoreapplication.h \ + /usr/include/qt6/QtCore/qcoreevent.h \ + /usr/include/qt6/QtCore/qnativeinterface.h \ + /usr/include/qt6/QtCore/qcoreapplication_platform.h \ + /usr/include/qt6/QtGui/qguiapplication.h \ + /usr/include/qt6/QtGui/qinputmethod.h \ + /usr/include/qt6/QtGui/qguiapplication_platform.h \ + /usr/include/qt6/QtGui/QClipboard /usr/include/qt6/QtGui/qclipboard.h \ + /usr/include/qt6/QtWidgets/QVBoxLayout \ + /usr/include/qt6/QtWidgets/qboxlayout.h \ + /usr/include/qt6/QtWidgets/qlayout.h \ + /usr/include/qt6/QtWidgets/qlayoutitem.h \ + /usr/include/qt6/QtWidgets/qgridlayout.h \ + /usr/include/qt6/QtWidgets/QMenu /usr/include/qt6/QtWidgets/qmenu.h \ + /usr/include/qt6/QtGui/QPainter /usr/include/qt6/QtGui/qpainter.h \ + /usr/include/qt6/QtGui/qtextoption.h /usr/include/qt6/QtGui/qpen.h \ + /usr/include/qt6/QtGui/QTextOption /usr/include/qt6/QtGui/QTextDocument \ + /usr/include/qt6/QtGui/qtextdocument.h /usr/include/qt6/QtCore/qurl.h \ + /usr/include/qt6/QtGui/QAbstractTextDocumentLayout \ + /usr/include/qt6/QtGui/qabstracttextdocumentlayout.h \ + /usr/include/qt6/QtGui/qtextlayout.h /usr/include/qt6/QtGui/qevent.h \ + /usr/include/qt6/QtCore/qiodevice.h /usr/include/qt6/QtGui/qeventpoint.h \ + /usr/include/qt6/QtGui/qvector2d.h /usr/include/qt6/QtGui/qvectornd.h \ + /usr/include/qt6/QtGui/qpointingdevice.h \ + /usr/include/qt6/QtGui/qinputdevice.h /usr/include/qt6/QtGui/qscreen.h \ + /usr/include/qt6/QtCore/QList /usr/include/qt6/QtCore/QObject \ + /usr/include/qt6/QtCore/QRect /usr/include/qt6/QtCore/QSize \ + /usr/include/qt6/QtCore/QSizeF /usr/include/qt6/QtGui/QTransform \ + /usr/include/qt6/QtGui/qscreen_platform.h \ + /usr/include/qt6/QtGui/qglyphrun.h /usr/include/qt6/QtGui/qrawfont.h \ + /usr/include/qt6/QtGui/qfontdatabase.h \ + /usr/include/qt6/QtGui/qtextcursor.h \ + /usr/include/qt6/QtGui/qtextformat.h \ + /usr/include/qt6/QtCore/QAbstractItemModel \ + /usr/include/qt6/QtGui/QMouseEvent /usr/include/qt6/QtGui/QKeyEvent \ + /usr/include/qt6/QtWidgets/QAbstractItemDelegate \ + /usr/include/qt6/QtCore/QItemSelectionModel \ + /usr/include/qt6/QtCore/QRegularExpression \ + /usr/include/qt6/QtWidgets/QMessageBox \ + /usr/include/qt6/QtWidgets/qmessagebox.h \ + /usr/include/qt6/QtWidgets/qdialog.h \ + /usr/include/qt6/QtWidgets/qdialogbuttonbox.h \ + /usr/include/qt6/QtCore/QSortFilterProxyModel \ + /usr/include/qt6/QtCore/qsortfilterproxymodel.h \ + /usr/include/qt6/QtCore/qabstractproxymodel.h diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o new file mode 100644 index 0000000..0936320 Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o.d b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o.d new file mode 100644 index 0000000..4cad400 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o.d @@ -0,0 +1,449 @@ +CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EncodingUtils.cpp \ + /usr/include/stdc-predef.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EncodingUtils.h \ + /usr/include/qt6/QtCore/QString /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qchar.h /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/bits/version.h /usr/include/c++/16.1.1/cstddef \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/utility.h /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/wchar.h \ + /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h /usr/include/assert.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/c++/16.1.1/version /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/16.1.1/limits \ + /usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/backward/binders.h /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/numbers /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/pstl/glue_algorithm_defs.h \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/linux/sched/types.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/variant /usr/include/c++/16.1.1/bits/monostate.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/bits/requires_hosted.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/vector.tcc /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qnamespace.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/q23type_traits.h /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/c++/16.1.1/iosfwd /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/postypes.h /usr/include/c++/16.1.1/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/16.1.1/cctype \ + /usr/include/ctype.h /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/c++/16.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/ostream.h /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/pstl/glue_memory_defs.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/16.1.1/stdlib.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/QByteArray /usr/include/qt6/QtCore/QFile \ + /usr/include/qt6/QtCore/qfile.h /usr/include/qt6/QtCore/qfiledevice.h \ + /usr/include/qt6/QtCore/qiodevice.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qobject.h /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/qt6/QtCore/qlist.h /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/qt6/QtCore/qiterator.h /usr/include/c++/16.1.1/ranges \ + /usr/include/c++/16.1.1/span /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qalgorithms.h /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qdatastream.h /usr/include/qt6/QtCore/qfloat16.h \ + /usr/include/qt6/QtCore/qmath.h /usr/include/qt6/QtCore/qtformat_impl.h \ + /usr/include/c++/16.1.1/format /usr/include/c++/16.1.1/charconv \ + /usr/include/c++/16.1.1/locale \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.h \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/16.1.1/bits/codecvt.h \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.tcc \ + /usr/include/c++/16.1.1/bits/locale_conv.h \ + /usr/include/c++/16.1.1/bits/formatfwd.h \ + /usr/include/c++/16.1.1/bits/unicode.h \ + /usr/include/c++/16.1.1/bits/unicode-data.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/list.tcc /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qbindingstorage.h /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/bits/chrono.h /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/sstream /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/chrono_io.h /usr/include/qt6/QtCore/qspan.h \ + /usr/include/c++/16.1.1/cassert /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/c++/16.1.1/filesystem /usr/include/c++/16.1.1/bits/fs_fwd.h \ + /usr/include/c++/16.1.1/bits/fs_path.h /usr/include/c++/16.1.1/iomanip \ + /usr/include/c++/16.1.1/bits/quoted_string.h \ + /usr/include/c++/16.1.1/codecvt /usr/include/c++/16.1.1/bits/fs_dir.h \ + /usr/include/c++/16.1.1/bits/fs_ops.h /usr/include/glib-2.0/glib.h \ + /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ + /usr/lib/glib-2.0/include/glibconfig.h \ + /usr/include/glib-2.0/glib/gmacros.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/float.h \ + /usr/include/glib-2.0/glib/gversionmacros.h \ + /usr/include/glib-2.0/glib/glib-visibility.h \ + /usr/include/glib-2.0/glib/garray.h \ + /usr/include/glib-2.0/glib/gasyncqueue.h \ + /usr/include/glib-2.0/glib/gthread.h \ + /usr/include/glib-2.0/glib/gatomic.h \ + /usr/include/glib-2.0/glib/glib-typeof.h \ + /usr/include/glib-2.0/glib/gerror.h /usr/include/glib-2.0/glib/gquark.h \ + /usr/include/glib-2.0/glib/gutils.h \ + /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ + /usr/include/bits/signum-generic.h /usr/include/bits/signum-arch.h \ + /usr/include/bits/types/sig_atomic_t.h \ + /usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \ + /usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \ + /usr/include/bits/siginfo-consts-arch.h \ + /usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \ + /usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \ + /usr/include/bits/sigstksz.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/bits/ss_flags.h \ + /usr/include/bits/types/struct_sigstack.h /usr/include/bits/sigthread.h \ + /usr/include/bits/signal_ext.h /usr/include/glib-2.0/glib/gbase64.h \ + /usr/include/glib-2.0/glib/gbitlock.h \ + /usr/include/glib-2.0/glib/gbookmarkfile.h \ + /usr/include/glib-2.0/glib/gdatetime.h \ + /usr/include/glib-2.0/glib/gtimezone.h \ + /usr/include/glib-2.0/glib/gbytes.h \ + /usr/include/glib-2.0/glib/gcharset.h \ + /usr/include/glib-2.0/glib/gchecksum.h \ + /usr/include/glib-2.0/glib/gconvert.h \ + /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ + /usr/include/glib-2.0/glib/gdir.h /usr/include/dirent.h \ + /usr/include/bits/dirent.h /usr/include/bits/dirent_ext.h \ + /usr/include/glib-2.0/glib/genviron.h \ + /usr/include/glib-2.0/glib/gfileutils.h \ + /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \ + /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ + /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \ + /usr/include/glib-2.0/glib/gchecksum.h \ + /usr/include/glib-2.0/glib/ghook.h \ + /usr/include/glib-2.0/glib/ghostutils.h \ + /usr/include/glib-2.0/glib/giochannel.h \ + /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ + /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ + /usr/include/glib-2.0/glib/gunicode.h \ + /usr/include/glib-2.0/glib/gstrfuncs.h \ + /usr/include/glib-2.0/glib/gkeyfile.h \ + /usr/include/glib-2.0/glib/gmappedfile.h \ + /usr/include/glib-2.0/glib/gmarkup.h \ + /usr/include/glib-2.0/glib/gmessages.h \ + /usr/include/glib-2.0/glib/gvariant.h \ + /usr/include/glib-2.0/glib/gvarianttype.h \ + /usr/include/glib-2.0/glib/goption.h \ + /usr/include/glib-2.0/glib/gpathbuf.h \ + /usr/include/glib-2.0/glib/gpattern.h \ + /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ + /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ + /usr/include/glib-2.0/glib/grcbox.h \ + /usr/include/glib-2.0/glib/grefcount.h \ + /usr/include/glib-2.0/glib/grefstring.h \ + /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \ + /usr/include/glib-2.0/glib/gregex.h \ + /usr/include/glib-2.0/glib/gscanner.h \ + /usr/include/glib-2.0/glib/gsequence.h \ + /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \ + /usr/include/glib-2.0/glib/gspawn.h \ + /usr/include/glib-2.0/glib/gstringchunk.h \ + /usr/include/glib-2.0/glib/gstrvbuilder.h \ + /usr/include/glib-2.0/glib/gtestutils.h \ + /usr/include/glib-2.0/glib/gthreadpool.h \ + /usr/include/glib-2.0/glib/gtimer.h \ + /usr/include/glib-2.0/glib/gtrashstack.h \ + /usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \ + /usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \ + /usr/include/glib-2.0/glib/deprecated/gallocator.h \ + /usr/include/glib-2.0/glib/deprecated/gcache.h \ + /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ + /usr/include/glib-2.0/glib/deprecated/gmain.h \ + /usr/include/glib-2.0/glib/deprecated/grel.h \ + /usr/include/glib-2.0/glib/deprecated/gthread.h \ + /usr/include/glib-2.0/glib/glib-autocleanups.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/lib/enca.h diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o new file mode 100644 index 0000000..fcc9db8 Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o.d b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o.d new file mode 100644 index 0000000..6b75733 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o.d @@ -0,0 +1,426 @@ +CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterRowWidget.cpp \ + /usr/include/stdc-predef.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterRowWidget.h \ + /usr/include/qt6/QtWidgets/QWidget /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtGui/qtguiglobal.h /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/bits/version.h /usr/include/c++/16.1.1/cstddef \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/utility.h /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/wchar.h \ + /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h /usr/include/assert.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/c++/16.1.1/version /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/16.1.1/limits \ + /usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/backward/binders.h /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/numbers /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/pstl/glue_algorithm_defs.h \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/linux/sched/types.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/variant /usr/include/c++/16.1.1/bits/monostate.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/bits/requires_hosted.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qnamespace.h /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/vector.tcc /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/ostream.h /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/postypes.h /usr/include/c++/16.1.1/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/16.1.1/cctype \ + /usr/include/ctype.h /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/c++/16.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/pstl/glue_memory_defs.h \ + /usr/include/qt6/QtCore/qobject.h /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qchar.h /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/q23type_traits.h /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/16.1.1/stdlib.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qlist.h /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/qt6/QtCore/qiterator.h /usr/include/c++/16.1.1/ranges \ + /usr/include/c++/16.1.1/span /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qalgorithms.h /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qfloat16.h /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qtformat_impl.h /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/charconv /usr/include/c++/16.1.1/locale \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.h \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/16.1.1/bits/codecvt.h \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.tcc \ + /usr/include/c++/16.1.1/bits/locale_conv.h \ + /usr/include/c++/16.1.1/bits/formatfwd.h \ + /usr/include/c++/16.1.1/bits/unicode.h \ + /usr/include/c++/16.1.1/bits/unicode-data.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/list.tcc /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qbindingstorage.h /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/bits/chrono.h /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/sstream /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/q20utility.h /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qkeysequence.h /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtCore/qsize.h /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpaintdevice.h /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qpoint.h /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qrgb.h /usr/include/qt6/QtGui/qrgba64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtGui/qimage.h /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qtransform.h /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h /usr/include/qt6/QtCore/qspan.h \ + /usr/include/c++/16.1.1/cassert /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/qline.h /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qdebug.h /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/c++/16.1.1/climits /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/c++/16.1.1/set /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qset.h /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qalloc.h /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qbrush.h /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtCore/qendian.h /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtGui/qcursor.h /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtCore/QVector /usr/include/qt6/QtCore/qvector.h \ + /usr/include/qt6/QtWidgets/QLineEdit \ + /usr/include/qt6/QtWidgets/qlineedit.h \ + /usr/include/qt6/QtWidgets/qframe.h /usr/include/qt6/QtGui/qtextcursor.h \ + /usr/include/qt6/QtGui/qtextdocument.h /usr/include/qt6/QtCore/qurl.h \ + /usr/include/qt6/QtGui/qtextformat.h /usr/include/qt6/QtGui/qpen.h \ + /usr/include/qt6/QtGui/qtextoption.h \ + /usr/include/qt6/QtWidgets/QHBoxLayout \ + /usr/include/qt6/QtWidgets/qboxlayout.h \ + /usr/include/qt6/QtWidgets/qlayout.h \ + /usr/include/qt6/QtWidgets/qlayoutitem.h \ + /usr/include/qt6/QtWidgets/qgridlayout.h \ + /usr/include/qt6/QtWidgets/QTableView \ + /usr/include/qt6/QtWidgets/qtableview.h \ + /usr/include/qt6/QtWidgets/qabstractitemview.h \ + /usr/include/qt6/QtWidgets/qabstractscrollarea.h \ + /usr/include/qt6/QtCore/qabstractitemmodel.h \ + /usr/include/qt6/QtCore/qitemselectionmodel.h \ + /usr/include/qt6/QtWidgets/qabstractitemdelegate.h \ + /usr/include/qt6/QtWidgets/qstyleoption.h \ + /usr/include/qt6/QtCore/qlocale.h \ + /usr/include/qt6/QtWidgets/qabstractspinbox.h \ + /usr/include/qt6/QtGui/qvalidator.h \ + /usr/include/qt6/QtCore/qregularexpression.h \ + /usr/include/qt6/QtWidgets/qslider.h \ + /usr/include/qt6/QtWidgets/qabstractslider.h \ + /usr/include/qt6/QtWidgets/qstyle.h /usr/include/qt6/QtWidgets/qtabbar.h \ + /usr/include/qt6/QtWidgets/qtabwidget.h \ + /usr/include/qt6/QtWidgets/qrubberband.h \ + /usr/include/qt6/QtWidgets/QHeaderView \ + /usr/include/qt6/QtWidgets/qheaderview.h \ + /usr/include/qt6/QtCore/QAbstractItemModel \ + /usr/include/qt6/QtCore/QEvent /usr/include/qt6/QtCore/qcoreevent.h \ + /usr/include/qt6/QtCore/qbasictimer.h \ + /usr/include/qt6/QtCore/qabstracteventdispatcher.h \ + /usr/include/qt6/QtCore/qeventloop.h \ + /usr/include/qt6/QtCore/qdeadlinetimer.h diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o new file mode 100644 index 0000000..b4d94f4 Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o.d b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o.d new file mode 100644 index 0000000..16c73c0 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o.d @@ -0,0 +1,413 @@ +CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterableHeaderView.cpp \ + /usr/include/stdc-predef.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterableHeaderView.h \ + /usr/include/qt6/QtWidgets/QHeaderView \ + /usr/include/qt6/QtWidgets/qheaderview.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtGui/qtguiglobal.h /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/bits/version.h /usr/include/c++/16.1.1/cstddef \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/utility.h /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/wchar.h \ + /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h /usr/include/assert.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/c++/16.1.1/version /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/16.1.1/limits \ + /usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/backward/binders.h /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/numbers /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/pstl/glue_algorithm_defs.h \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/linux/sched/types.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/variant /usr/include/c++/16.1.1/bits/monostate.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/bits/requires_hosted.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtWidgets/qabstractitemview.h \ + /usr/include/qt6/QtWidgets/qabstractscrollarea.h \ + /usr/include/qt6/QtWidgets/qframe.h /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qnamespace.h /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/vector.tcc /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/ostream.h /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/postypes.h /usr/include/c++/16.1.1/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/16.1.1/cctype \ + /usr/include/ctype.h /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/c++/16.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/pstl/glue_memory_defs.h \ + /usr/include/qt6/QtCore/qobject.h /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qchar.h /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/q23type_traits.h /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/16.1.1/stdlib.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qlist.h /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/qt6/QtCore/qiterator.h /usr/include/c++/16.1.1/ranges \ + /usr/include/c++/16.1.1/span /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qalgorithms.h /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qfloat16.h /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qtformat_impl.h /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/charconv /usr/include/c++/16.1.1/locale \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.h \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/16.1.1/bits/codecvt.h \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.tcc \ + /usr/include/c++/16.1.1/bits/locale_conv.h \ + /usr/include/c++/16.1.1/bits/formatfwd.h \ + /usr/include/c++/16.1.1/bits/unicode.h \ + /usr/include/c++/16.1.1/bits/unicode-data.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/list.tcc /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qbindingstorage.h /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/bits/chrono.h /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/sstream /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/q20utility.h /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qkeysequence.h /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtCore/qsize.h /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpaintdevice.h /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qpoint.h /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qrgb.h /usr/include/qt6/QtGui/qrgba64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtGui/qimage.h /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qtransform.h /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h /usr/include/qt6/QtCore/qspan.h \ + /usr/include/c++/16.1.1/cassert /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/qline.h /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qdebug.h /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/c++/16.1.1/climits /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/c++/16.1.1/set /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qset.h /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qalloc.h /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qbrush.h /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtCore/qendian.h /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtGui/qcursor.h /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtCore/qabstractitemmodel.h \ + /usr/include/qt6/QtCore/qitemselectionmodel.h \ + /usr/include/qt6/QtWidgets/qabstractitemdelegate.h \ + /usr/include/qt6/QtWidgets/qstyleoption.h \ + /usr/include/qt6/QtCore/qlocale.h \ + /usr/include/qt6/QtWidgets/qabstractspinbox.h \ + /usr/include/qt6/QtGui/qvalidator.h \ + /usr/include/qt6/QtCore/qregularexpression.h \ + /usr/include/qt6/QtWidgets/qslider.h \ + /usr/include/qt6/QtWidgets/qabstractslider.h \ + /usr/include/qt6/QtWidgets/qstyle.h /usr/include/qt6/QtWidgets/qtabbar.h \ + /usr/include/qt6/QtWidgets/qtabwidget.h \ + /usr/include/qt6/QtWidgets/qrubberband.h /usr/include/qt6/QtCore/QVector \ + /usr/include/qt6/QtCore/qvector.h /usr/include/qt6/QtWidgets/QLineEdit \ + /usr/include/qt6/QtWidgets/qlineedit.h \ + /usr/include/qt6/QtGui/qtextcursor.h \ + /usr/include/qt6/QtGui/qtextdocument.h /usr/include/qt6/QtCore/qurl.h \ + /usr/include/qt6/QtGui/qtextformat.h /usr/include/qt6/QtGui/qpen.h \ + /usr/include/qt6/QtGui/qtextoption.h \ + /usr/include/qt6/QtCore/QAbstractItemModel diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o new file mode 100644 index 0000000..12f24d2 Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o.d b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o.d new file mode 100644 index 0000000..48cdb85 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o.d @@ -0,0 +1,412 @@ +CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FindReplacePanel.cpp \ + /usr/include/stdc-predef.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FindReplacePanel.h \ + /usr/include/qt6/QtWidgets/QWidget /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtGui/qtguiglobal.h /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/bits/version.h /usr/include/c++/16.1.1/cstddef \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/utility.h /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/wchar.h \ + /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h /usr/include/assert.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/c++/16.1.1/version /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/16.1.1/limits \ + /usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/backward/binders.h /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/numbers /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/pstl/glue_algorithm_defs.h \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/linux/sched/types.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/variant /usr/include/c++/16.1.1/bits/monostate.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/bits/requires_hosted.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qnamespace.h /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/vector.tcc /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/ostream.h /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/postypes.h /usr/include/c++/16.1.1/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/16.1.1/cctype \ + /usr/include/ctype.h /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/c++/16.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/pstl/glue_memory_defs.h \ + /usr/include/qt6/QtCore/qobject.h /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qchar.h /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/q23type_traits.h /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/16.1.1/stdlib.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qlist.h /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/qt6/QtCore/qiterator.h /usr/include/c++/16.1.1/ranges \ + /usr/include/c++/16.1.1/span /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qalgorithms.h /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qfloat16.h /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qtformat_impl.h /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/charconv /usr/include/c++/16.1.1/locale \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.h \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/16.1.1/bits/codecvt.h \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.tcc \ + /usr/include/c++/16.1.1/bits/locale_conv.h \ + /usr/include/c++/16.1.1/bits/formatfwd.h \ + /usr/include/c++/16.1.1/bits/unicode.h \ + /usr/include/c++/16.1.1/bits/unicode-data.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/list.tcc /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qbindingstorage.h /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/bits/chrono.h /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/sstream /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/q20utility.h /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qkeysequence.h /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtCore/qsize.h /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpaintdevice.h /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qpoint.h /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qrgb.h /usr/include/qt6/QtGui/qrgba64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtGui/qimage.h /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qtransform.h /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h /usr/include/qt6/QtCore/qspan.h \ + /usr/include/c++/16.1.1/cassert /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/qline.h /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qdebug.h /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/c++/16.1.1/climits /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/c++/16.1.1/set /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qset.h /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qalloc.h /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qbrush.h /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtCore/qendian.h /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtGui/qcursor.h /usr/include/qt6/QtGui/qbitmap.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FocusManager.h \ + /usr/include/qt6/QtCore/QObject /usr/include/qt6/QtCore/QPointer \ + /usr/include/qt6/QtCore/qpointer.h /usr/include/qt6/QtGui/QKeySequence \ + /usr/include/qt6/QtCore/QSet /usr/include/qt6/QtCore/QVector \ + /usr/include/qt6/QtCore/qvector.h /usr/include/qt6/QtWidgets/QLineEdit \ + /usr/include/qt6/QtWidgets/qlineedit.h \ + /usr/include/qt6/QtWidgets/qframe.h /usr/include/qt6/QtGui/qtextcursor.h \ + /usr/include/qt6/QtGui/qtextdocument.h /usr/include/qt6/QtCore/qurl.h \ + /usr/include/qt6/QtGui/qtextformat.h /usr/include/qt6/QtGui/qpen.h \ + /usr/include/qt6/QtGui/qtextoption.h \ + /usr/include/qt6/QtWidgets/QCheckBox \ + /usr/include/qt6/QtWidgets/qcheckbox.h \ + /usr/include/qt6/QtWidgets/qabstractbutton.h \ + /usr/include/qt6/QtWidgets/QLabel /usr/include/qt6/QtWidgets/qlabel.h \ + /usr/include/qt6/QtGui/qpicture.h /usr/include/qt6/QtCore/qiodevice.h \ + /usr/include/qt6/QtWidgets/QPushButton \ + /usr/include/qt6/QtWidgets/qpushbutton.h \ + /usr/include/qt6/QtWidgets/QHBoxLayout \ + /usr/include/qt6/QtWidgets/qboxlayout.h \ + /usr/include/qt6/QtWidgets/qlayout.h \ + /usr/include/qt6/QtWidgets/qlayoutitem.h \ + /usr/include/qt6/QtWidgets/qgridlayout.h \ + /usr/include/qt6/QtWidgets/QVBoxLayout diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o new file mode 100644 index 0000000..d600871 Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o.d b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o.d new file mode 100644 index 0000000..d9264e7 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o.d @@ -0,0 +1,420 @@ +CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FocusManager.cpp \ + /usr/include/stdc-predef.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FocusManager.h \ + /usr/include/qt6/QtCore/QObject /usr/include/qt6/QtCore/qobject.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qnamespace.h /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/bits/version.h /usr/include/c++/16.1.1/cstddef \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/utility.h /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/wchar.h \ + /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h /usr/include/assert.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/c++/16.1.1/version /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/16.1.1/limits \ + /usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/backward/binders.h /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/numbers /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/pstl/glue_algorithm_defs.h \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/linux/sched/types.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/variant /usr/include/c++/16.1.1/bits/monostate.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/bits/requires_hosted.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/vector.tcc /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/ostream.h /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/postypes.h /usr/include/c++/16.1.1/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/16.1.1/cctype \ + /usr/include/ctype.h /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/c++/16.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/pstl/glue_memory_defs.h \ + /usr/include/qt6/QtCore/qstring.h /usr/include/qt6/QtCore/qchar.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/q23type_traits.h /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/16.1.1/stdlib.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qlist.h /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/qt6/QtCore/qiterator.h /usr/include/c++/16.1.1/ranges \ + /usr/include/c++/16.1.1/span /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qalgorithms.h /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qfloat16.h /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qtformat_impl.h /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/charconv /usr/include/c++/16.1.1/locale \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.h \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/16.1.1/bits/codecvt.h \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.tcc \ + /usr/include/c++/16.1.1/bits/locale_conv.h \ + /usr/include/c++/16.1.1/bits/formatfwd.h \ + /usr/include/c++/16.1.1/bits/unicode.h \ + /usr/include/c++/16.1.1/bits/unicode-data.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/list.tcc /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qbindingstorage.h /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/bits/chrono.h /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/sstream /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/qt6/QtWidgets/QWidget /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtGui/qtguiglobal.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtGui/qwindowdefs.h /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/q20utility.h /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qkeysequence.h /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtCore/qsize.h /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpaintdevice.h /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qpoint.h /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qrgb.h /usr/include/qt6/QtGui/qrgba64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtGui/qimage.h /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qtransform.h /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h /usr/include/qt6/QtCore/qspan.h \ + /usr/include/c++/16.1.1/cassert /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/qline.h /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qdebug.h /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/c++/16.1.1/climits /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/c++/16.1.1/set /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qset.h /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qalloc.h /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qbrush.h /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtCore/qendian.h /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtGui/qcursor.h /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtCore/QPointer /usr/include/qt6/QtCore/qpointer.h \ + /usr/include/qt6/QtGui/QKeySequence /usr/include/qt6/QtCore/QSet \ + /usr/include/qt6/QtCore/QVector /usr/include/qt6/QtCore/qvector.h \ + /usr/include/qt6/QtWidgets/QApplication \ + /usr/include/qt6/QtWidgets/qapplication.h \ + /usr/include/qt6/QtCore/qcoreapplication.h \ + /usr/include/qt6/QtCore/qcoreevent.h \ + /usr/include/qt6/QtCore/qbasictimer.h \ + /usr/include/qt6/QtCore/qabstracteventdispatcher.h \ + /usr/include/qt6/QtCore/qeventloop.h \ + /usr/include/qt6/QtCore/qdeadlinetimer.h \ + /usr/include/qt6/QtCore/qnativeinterface.h \ + /usr/include/qt6/QtCore/qcoreapplication_platform.h \ + /usr/include/qt6/QtGui/qguiapplication.h \ + /usr/include/qt6/QtGui/qinputmethod.h /usr/include/qt6/QtCore/qlocale.h \ + /usr/include/qt6/QtGui/qguiapplication_platform.h \ + /usr/include/qt6/QtGui/QKeyEvent /usr/include/qt6/QtGui/qevent.h \ + /usr/include/qt6/QtCore/qiodevice.h /usr/include/qt6/QtCore/qurl.h \ + /usr/include/qt6/QtGui/qeventpoint.h /usr/include/qt6/QtGui/qvector2d.h \ + /usr/include/qt6/QtGui/qvectornd.h \ + /usr/include/qt6/QtGui/qpointingdevice.h \ + /usr/include/qt6/QtGui/qinputdevice.h /usr/include/qt6/QtGui/qscreen.h \ + /usr/include/qt6/QtCore/QList /usr/include/qt6/QtCore/QObject \ + /usr/include/qt6/QtCore/QRect /usr/include/qt6/QtCore/QSize \ + /usr/include/qt6/QtCore/QSizeF /usr/include/qt6/QtGui/QTransform \ + /usr/include/qt6/QtGui/qscreen_platform.h \ + /usr/include/qt6/QtGui/QMouseEvent /usr/include/qt6/QtGui/QFocusEvent \ + /usr/include/qt6/QtCore/QChildEvent /usr/include/qt6/QtCore/QTimer \ + /usr/include/qt6/QtCore/qtimer.h /usr/include/qt6/QtGui/QUndoStack \ + /usr/include/qt6/QtGui/qundostack.h diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o new file mode 100644 index 0000000..6b459fe Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o.d b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o.d new file mode 100644 index 0000000..66b84fe --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o.d @@ -0,0 +1,391 @@ +CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginSplitView.cpp \ + /usr/include/stdc-predef.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginSplitView.h \ + /usr/include/qt6/QtWidgets/QSplitter \ + /usr/include/qt6/QtWidgets/qsplitter.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtGui/qtguiglobal.h /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/bits/version.h /usr/include/c++/16.1.1/cstddef \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/utility.h /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/wchar.h \ + /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h /usr/include/assert.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/c++/16.1.1/version /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/16.1.1/limits \ + /usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/backward/binders.h /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/numbers /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/pstl/glue_algorithm_defs.h \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/linux/sched/types.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/variant /usr/include/c++/16.1.1/bits/monostate.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/bits/requires_hosted.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtWidgets/qframe.h /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qnamespace.h /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/vector.tcc /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/ostream.h /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/postypes.h /usr/include/c++/16.1.1/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/16.1.1/cctype \ + /usr/include/ctype.h /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/c++/16.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/pstl/glue_memory_defs.h \ + /usr/include/qt6/QtCore/qobject.h /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qchar.h /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/q23type_traits.h /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/16.1.1/stdlib.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qlist.h /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/qt6/QtCore/qiterator.h /usr/include/c++/16.1.1/ranges \ + /usr/include/c++/16.1.1/span /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qalgorithms.h /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qfloat16.h /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qtformat_impl.h /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/charconv /usr/include/c++/16.1.1/locale \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.h \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/16.1.1/bits/codecvt.h \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.tcc \ + /usr/include/c++/16.1.1/bits/locale_conv.h \ + /usr/include/c++/16.1.1/bits/formatfwd.h \ + /usr/include/c++/16.1.1/bits/unicode.h \ + /usr/include/c++/16.1.1/bits/unicode-data.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/list.tcc /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qbindingstorage.h /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/bits/chrono.h /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/sstream /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/q20utility.h /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qkeysequence.h /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtCore/qsize.h /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpaintdevice.h /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qpoint.h /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qrgb.h /usr/include/qt6/QtGui/qrgba64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtGui/qimage.h /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qtransform.h /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h /usr/include/qt6/QtCore/qspan.h \ + /usr/include/c++/16.1.1/cassert /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/qline.h /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qdebug.h /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/c++/16.1.1/climits /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/c++/16.1.1/set /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qset.h /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qalloc.h /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qbrush.h /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtCore/qendian.h /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtGui/qcursor.h /usr/include/qt6/QtGui/qbitmap.h diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o new file mode 100644 index 0000000..834a65d Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o.d b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o.d new file mode 100644 index 0000000..e15fe7a --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o.d @@ -0,0 +1,399 @@ +CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginStatusBar.cpp \ + /usr/include/stdc-predef.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginStatusBar.h \ + /usr/include/qt6/QtWidgets/QWidget /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtGui/qtguiglobal.h /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/bits/version.h /usr/include/c++/16.1.1/cstddef \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/utility.h /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/wchar.h \ + /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h /usr/include/assert.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/c++/16.1.1/version /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/16.1.1/limits \ + /usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/backward/binders.h /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/numbers /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/pstl/glue_algorithm_defs.h \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/linux/sched/types.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/variant /usr/include/c++/16.1.1/bits/monostate.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/bits/requires_hosted.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qnamespace.h /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/vector.tcc /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/ostream.h /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/postypes.h /usr/include/c++/16.1.1/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/16.1.1/cctype \ + /usr/include/ctype.h /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/c++/16.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/pstl/glue_memory_defs.h \ + /usr/include/qt6/QtCore/qobject.h /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qchar.h /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/q23type_traits.h /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/16.1.1/stdlib.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qlist.h /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/qt6/QtCore/qiterator.h /usr/include/c++/16.1.1/ranges \ + /usr/include/c++/16.1.1/span /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qalgorithms.h /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qfloat16.h /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qtformat_impl.h /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/charconv /usr/include/c++/16.1.1/locale \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.h \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/16.1.1/bits/codecvt.h \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.tcc \ + /usr/include/c++/16.1.1/bits/locale_conv.h \ + /usr/include/c++/16.1.1/bits/formatfwd.h \ + /usr/include/c++/16.1.1/bits/unicode.h \ + /usr/include/c++/16.1.1/bits/unicode-data.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/list.tcc /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qbindingstorage.h /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/bits/chrono.h /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/sstream /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/q20utility.h /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qkeysequence.h /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtCore/qsize.h /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpaintdevice.h /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qpoint.h /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qrgb.h /usr/include/qt6/QtGui/qrgba64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtGui/qimage.h /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qtransform.h /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h /usr/include/qt6/QtCore/qspan.h \ + /usr/include/c++/16.1.1/cassert /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/qline.h /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qdebug.h /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/c++/16.1.1/climits /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/c++/16.1.1/set /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qset.h /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qalloc.h /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qbrush.h /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtCore/qendian.h /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtGui/qcursor.h /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtWidgets/QLabel /usr/include/qt6/QtWidgets/qlabel.h \ + /usr/include/qt6/QtWidgets/qframe.h /usr/include/qt6/QtGui/qpicture.h \ + /usr/include/qt6/QtCore/qiodevice.h \ + /usr/include/qt6/QtGui/qtextdocument.h /usr/include/qt6/QtCore/qurl.h \ + /usr/include/qt6/QtCore/QMap /usr/include/qt6/QtWidgets/QHBoxLayout \ + /usr/include/qt6/QtWidgets/qboxlayout.h \ + /usr/include/qt6/QtWidgets/qlayout.h \ + /usr/include/qt6/QtWidgets/qlayoutitem.h \ + /usr/include/qt6/QtWidgets/qgridlayout.h \ + /usr/include/qt6/QtWidgets/QFrame /usr/include/qt6/QtGui/QFont diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o new file mode 100644 index 0000000..34fac3b Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o.d b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o.d new file mode 100644 index 0000000..fb0cc0b --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o.d @@ -0,0 +1,417 @@ +CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginToolBar.cpp \ + /usr/include/stdc-predef.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginToolBar.h \ + /usr/include/qt6/QtWidgets/QToolBar \ + /usr/include/qt6/QtWidgets/qtoolbar.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtGui/qtguiglobal.h /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/bits/version.h /usr/include/c++/16.1.1/cstddef \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/utility.h /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/wchar.h \ + /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h /usr/include/assert.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/c++/16.1.1/version /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/16.1.1/limits \ + /usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/backward/binders.h /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/numbers /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/pstl/glue_algorithm_defs.h \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/linux/sched/types.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/variant /usr/include/c++/16.1.1/bits/monostate.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/bits/requires_hosted.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtGui/qaction.h /usr/include/qt6/QtGui/qkeysequence.h \ + /usr/include/qt6/QtCore/qstring.h /usr/include/qt6/QtCore/qchar.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/vector.tcc /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qnamespace.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/q23type_traits.h /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/c++/16.1.1/iosfwd /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/postypes.h /usr/include/c++/16.1.1/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/16.1.1/cctype \ + /usr/include/ctype.h /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/c++/16.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/ostream.h /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/pstl/glue_memory_defs.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/16.1.1/stdlib.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/qt6/QtGui/qicon.h /usr/include/qt6/QtCore/qsize.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/qhashfunctions.h /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/qt6/QtCore/qmargins.h /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/q20utility.h /usr/include/qt6/QtCore/qlist.h \ + /usr/include/qt6/QtCore/qiterator.h /usr/include/c++/16.1.1/ranges \ + /usr/include/c++/16.1.1/span /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qalgorithms.h /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtGui/qpixmap.h /usr/include/qt6/QtGui/qpaintdevice.h \ + /usr/include/qt6/QtGui/qwindowdefs.h /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qpoint.h /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qrgb.h /usr/include/qt6/QtGui/qrgba64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtGui/qimage.h /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qtransform.h /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qscopedpointer.h /usr/include/qt6/QtCore/qspan.h \ + /usr/include/c++/16.1.1/cassert /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/qline.h /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qmetatype.h /usr/include/qt6/QtCore/qfloat16.h \ + /usr/include/qt6/QtCore/qmath.h /usr/include/qt6/QtCore/qtformat_impl.h \ + /usr/include/c++/16.1.1/format /usr/include/c++/16.1.1/charconv \ + /usr/include/c++/16.1.1/locale \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.h \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/16.1.1/bits/codecvt.h \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.tcc \ + /usr/include/c++/16.1.1/bits/locale_conv.h \ + /usr/include/c++/16.1.1/bits/formatfwd.h \ + /usr/include/c++/16.1.1/bits/unicode.h \ + /usr/include/c++/16.1.1/bits/unicode-data.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/list.tcc /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/qt6/QtCore/qdebug.h /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/c++/16.1.1/climits /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/c++/16.1.1/chrono /usr/include/c++/16.1.1/bits/chrono.h \ + /usr/include/c++/16.1.1/ratio /usr/include/c++/16.1.1/sstream \ + /usr/include/c++/16.1.1/istream /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/chrono_io.h /usr/include/c++/16.1.1/set \ + /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qset.h /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qalloc.h /usr/include/qt6/QtCore/qobject.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qbindingstorage.h \ + /usr/include/qt6/QtWidgets/qwidget.h /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qbrush.h /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtCore/qendian.h /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtGui/qcursor.h /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtGui/QKeySequence \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FocusManager.h \ + /usr/include/qt6/QtCore/QObject /usr/include/qt6/QtWidgets/QWidget \ + /usr/include/qt6/QtCore/QPointer /usr/include/qt6/QtCore/qpointer.h \ + /usr/include/qt6/QtCore/QSet /usr/include/qt6/QtCore/QVector \ + /usr/include/qt6/QtCore/qvector.h /usr/include/qt6/QtGui/QAction \ + /usr/include/qt6/QtGui/QActionEvent /usr/include/qt6/QtGui/qevent.h \ + /usr/include/qt6/QtCore/qcoreevent.h \ + /usr/include/qt6/QtCore/qbasictimer.h \ + /usr/include/qt6/QtCore/qabstracteventdispatcher.h \ + /usr/include/qt6/QtCore/qeventloop.h \ + /usr/include/qt6/QtCore/qdeadlinetimer.h \ + /usr/include/qt6/QtCore/qiodevice.h /usr/include/qt6/QtCore/qurl.h \ + /usr/include/qt6/QtGui/qeventpoint.h /usr/include/qt6/QtGui/qvector2d.h \ + /usr/include/qt6/QtGui/qvectornd.h \ + /usr/include/qt6/QtGui/qpointingdevice.h \ + /usr/include/qt6/QtGui/qinputdevice.h /usr/include/qt6/QtGui/qscreen.h \ + /usr/include/qt6/QtCore/QList /usr/include/qt6/QtCore/QObject \ + /usr/include/qt6/QtCore/QRect /usr/include/qt6/QtCore/QSize \ + /usr/include/qt6/QtCore/QSizeF /usr/include/qt6/QtGui/QTransform \ + /usr/include/qt6/QtCore/qnativeinterface.h \ + /usr/include/qt6/QtGui/qscreen_platform.h \ + /usr/include/qt6/QtGui/qguiapplication.h \ + /usr/include/qt6/QtCore/qcoreapplication.h \ + /usr/include/qt6/QtCore/qcoreapplication_platform.h \ + /usr/include/qt6/QtGui/qinputmethod.h /usr/include/qt6/QtCore/qlocale.h \ + /usr/include/qt6/QtGui/qguiapplication_platform.h \ + /usr/include/qt6/QtCore/QTimer /usr/include/qt6/QtCore/qtimer.h diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o new file mode 100644 index 0000000..0b1c8f7 Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o.d b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o.d new file mode 100644 index 0000000..b048bc3 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o.d @@ -0,0 +1,417 @@ +CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ScopedFindReplacePanel.cpp \ + /usr/include/stdc-predef.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ScopedFindReplacePanel.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FindReplacePanel.h \ + /usr/include/qt6/QtWidgets/QWidget /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtGui/qtguiglobal.h /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/bits/version.h /usr/include/c++/16.1.1/cstddef \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/utility.h /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/wchar.h \ + /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h /usr/include/assert.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/c++/16.1.1/version /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/16.1.1/limits \ + /usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/backward/binders.h /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/numbers /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/pstl/glue_algorithm_defs.h \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/linux/sched/types.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/variant /usr/include/c++/16.1.1/bits/monostate.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/bits/requires_hosted.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qnamespace.h /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/vector.tcc /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/ostream.h /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/postypes.h /usr/include/c++/16.1.1/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/16.1.1/cctype \ + /usr/include/ctype.h /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/c++/16.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/pstl/glue_memory_defs.h \ + /usr/include/qt6/QtCore/qobject.h /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qchar.h /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/q23type_traits.h /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/16.1.1/stdlib.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qlist.h /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/qt6/QtCore/qiterator.h /usr/include/c++/16.1.1/ranges \ + /usr/include/c++/16.1.1/span /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qalgorithms.h /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qfloat16.h /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qtformat_impl.h /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/charconv /usr/include/c++/16.1.1/locale \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.h \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/16.1.1/bits/codecvt.h \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.tcc \ + /usr/include/c++/16.1.1/bits/locale_conv.h \ + /usr/include/c++/16.1.1/bits/formatfwd.h \ + /usr/include/c++/16.1.1/bits/unicode.h \ + /usr/include/c++/16.1.1/bits/unicode-data.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/list.tcc /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qbindingstorage.h /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/bits/chrono.h /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/sstream /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/q20utility.h /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qkeysequence.h /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtCore/qsize.h /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpaintdevice.h /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qpoint.h /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qrgb.h /usr/include/qt6/QtGui/qrgba64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtGui/qimage.h /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qtransform.h /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h /usr/include/qt6/QtCore/qspan.h \ + /usr/include/c++/16.1.1/cassert /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/qline.h /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qdebug.h /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/c++/16.1.1/climits /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/c++/16.1.1/set /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qset.h /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qalloc.h /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qbrush.h /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtCore/qendian.h /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtGui/qcursor.h /usr/include/qt6/QtGui/qbitmap.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FocusManager.h \ + /usr/include/qt6/QtCore/QObject /usr/include/qt6/QtCore/QPointer \ + /usr/include/qt6/QtCore/qpointer.h /usr/include/qt6/QtGui/QKeySequence \ + /usr/include/qt6/QtCore/QSet /usr/include/qt6/QtCore/QVector \ + /usr/include/qt6/QtCore/qvector.h /usr/include/qt6/QtWidgets/QComboBox \ + /usr/include/qt6/QtWidgets/qcombobox.h \ + /usr/include/qt6/QtWidgets/qabstractitemdelegate.h \ + /usr/include/qt6/QtWidgets/qstyleoption.h \ + /usr/include/qt6/QtCore/qlocale.h \ + /usr/include/qt6/QtWidgets/qabstractspinbox.h \ + /usr/include/qt6/QtGui/qvalidator.h \ + /usr/include/qt6/QtCore/qregularexpression.h \ + /usr/include/qt6/QtWidgets/qslider.h \ + /usr/include/qt6/QtWidgets/qabstractslider.h \ + /usr/include/qt6/QtWidgets/qstyle.h /usr/include/qt6/QtWidgets/qtabbar.h \ + /usr/include/qt6/QtWidgets/qtabwidget.h \ + /usr/include/qt6/QtWidgets/qrubberband.h \ + /usr/include/qt6/QtWidgets/qframe.h \ + /usr/include/qt6/QtCore/qabstractitemmodel.h \ + /usr/include/qt6/QtWidgets/QLabel /usr/include/qt6/QtWidgets/qlabel.h \ + /usr/include/qt6/QtGui/qpicture.h /usr/include/qt6/QtCore/qiodevice.h \ + /usr/include/qt6/QtGui/qtextdocument.h /usr/include/qt6/QtCore/qurl.h \ + /usr/include/qt6/QtWidgets/QHBoxLayout \ + /usr/include/qt6/QtWidgets/qboxlayout.h \ + /usr/include/qt6/QtWidgets/qlayout.h \ + /usr/include/qt6/QtWidgets/qlayoutitem.h \ + /usr/include/qt6/QtWidgets/qgridlayout.h diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o new file mode 100644 index 0000000..15b002d Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o.d b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o.d new file mode 100644 index 0000000..860d470 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o.d @@ -0,0 +1,391 @@ +CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ThemeManager.cpp \ + /usr/include/stdc-predef.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ThemeManager.h \ + /usr/include/qt6/QtWidgets/QWidget /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtGui/qtguiglobal.h /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/bits/version.h /usr/include/c++/16.1.1/cstddef \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/utility.h /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/wchar.h \ + /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h /usr/include/assert.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/c++/16.1.1/version /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/16.1.1/limits \ + /usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/backward/binders.h /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/numbers /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/pstl/glue_algorithm_defs.h \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/linux/sched/types.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/variant /usr/include/c++/16.1.1/bits/monostate.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/bits/requires_hosted.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qnamespace.h /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/vector.tcc /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/ostream.h /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/postypes.h /usr/include/c++/16.1.1/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/16.1.1/cctype \ + /usr/include/ctype.h /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/c++/16.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/pstl/glue_memory_defs.h \ + /usr/include/qt6/QtCore/qobject.h /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qchar.h /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/q23type_traits.h /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/16.1.1/stdlib.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qlist.h /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/qt6/QtCore/qiterator.h /usr/include/c++/16.1.1/ranges \ + /usr/include/c++/16.1.1/span /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qalgorithms.h /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qfloat16.h /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qtformat_impl.h /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/charconv /usr/include/c++/16.1.1/locale \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.h \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/16.1.1/bits/codecvt.h \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.tcc \ + /usr/include/c++/16.1.1/bits/locale_conv.h \ + /usr/include/c++/16.1.1/bits/formatfwd.h \ + /usr/include/c++/16.1.1/bits/unicode.h \ + /usr/include/c++/16.1.1/bits/unicode-data.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/list.tcc /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qbindingstorage.h /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/bits/chrono.h /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/sstream /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/q20utility.h /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qkeysequence.h /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtCore/qsize.h /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpaintdevice.h /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qpoint.h /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qrgb.h /usr/include/qt6/QtGui/qrgba64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtGui/qimage.h /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qtransform.h /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h /usr/include/qt6/QtCore/qspan.h \ + /usr/include/c++/16.1.1/cassert /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/qline.h /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qdebug.h /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/c++/16.1.1/climits /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/c++/16.1.1/set /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qset.h /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qalloc.h /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qbrush.h /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtCore/qendian.h /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtGui/qcursor.h /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtCore/QString /usr/include/qt6/QtCore/QSettings \ + /usr/include/qt6/QtCore/qsettings.h diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o new file mode 100644 index 0000000..01025a7 Binary files /dev/null and b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o differ diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o.d b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o.d new file mode 100644 index 0000000..05ca785 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o.d @@ -0,0 +1,450 @@ +CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/mocs_compilation.cpp \ + /usr/include/stdc-predef.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_EditableGridWidget.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/../../../include/wayland_qt_base/EditableGridWidget.h \ + /usr/include/qt6/QtWidgets/QWidget /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtGui/qtguiglobal.h /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/bits/version.h /usr/include/c++/16.1.1/cstddef \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/utility.h /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/cstdint \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdint.h \ + /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/wchar.h \ + /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h /usr/include/assert.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/c++/16.1.1/version /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/16.1.1/limits \ + /usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/backward/binders.h /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/cstdlib /usr/include/stdlib.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-float.h /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/numbers /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/pstl/glue_algorithm_defs.h \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/linux/sched/types.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/variant /usr/include/c++/16.1.1/bits/monostate.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/bits/requires_hosted.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qnamespace.h /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/vector.tcc /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/ostream.h /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/postypes.h /usr/include/c++/16.1.1/cwchar \ + /usr/include/wchar.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/clocale /usr/include/locale.h \ + /usr/include/bits/locale.h /usr/include/c++/16.1.1/cctype \ + /usr/include/ctype.h /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/cstdio /usr/include/stdio.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/c++/16.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/cwctype /usr/include/wctype.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/pstl/glue_memory_defs.h \ + /usr/include/qt6/QtCore/qobject.h /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qchar.h /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/q23type_traits.h /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/16.1.1/stdlib.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qlist.h /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/qt6/QtCore/qiterator.h /usr/include/c++/16.1.1/ranges \ + /usr/include/c++/16.1.1/span /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qalgorithms.h /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qfloat16.h /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qtformat_impl.h /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/charconv /usr/include/c++/16.1.1/locale \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.h \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/16.1.1/bits/codecvt.h \ + /usr/include/c++/16.1.1/bits/locale_facets_nonio.tcc \ + /usr/include/c++/16.1.1/bits/locale_conv.h \ + /usr/include/c++/16.1.1/bits/formatfwd.h \ + /usr/include/c++/16.1.1/bits/unicode.h \ + /usr/include/c++/16.1.1/bits/unicode-data.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/list.tcc /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qbindingstorage.h /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/bits/chrono.h /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/sstream /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/q20utility.h /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qkeysequence.h /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtCore/qsize.h /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpaintdevice.h /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qpoint.h /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qrgb.h /usr/include/qt6/QtGui/qrgba64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtGui/qimage.h /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qtransform.h /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h /usr/include/qt6/QtCore/qspan.h \ + /usr/include/c++/16.1.1/cassert /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/qline.h /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qdebug.h /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/c++/16.1.1/climits /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/c++/16.1.1/set /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qset.h /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qalloc.h /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qbrush.h /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtCore/qendian.h /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtGui/qcursor.h /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtWidgets/QTableView \ + /usr/include/qt6/QtWidgets/qtableview.h \ + /usr/include/qt6/QtWidgets/qabstractitemview.h \ + /usr/include/qt6/QtWidgets/qabstractscrollarea.h \ + /usr/include/qt6/QtWidgets/qframe.h \ + /usr/include/qt6/QtCore/qabstractitemmodel.h \ + /usr/include/qt6/QtCore/qitemselectionmodel.h \ + /usr/include/qt6/QtWidgets/qabstractitemdelegate.h \ + /usr/include/qt6/QtWidgets/qstyleoption.h \ + /usr/include/qt6/QtCore/qlocale.h \ + /usr/include/qt6/QtWidgets/qabstractspinbox.h \ + /usr/include/qt6/QtGui/qvalidator.h \ + /usr/include/qt6/QtCore/qregularexpression.h \ + /usr/include/qt6/QtWidgets/qslider.h \ + /usr/include/qt6/QtWidgets/qabstractslider.h \ + /usr/include/qt6/QtWidgets/qstyle.h /usr/include/qt6/QtWidgets/qtabbar.h \ + /usr/include/qt6/QtWidgets/qtabwidget.h \ + /usr/include/qt6/QtWidgets/qrubberband.h \ + /usr/include/qt6/QtGui/QUndoStack /usr/include/qt6/QtGui/qundostack.h \ + /usr/include/qt6/QtWidgets/QHeaderView \ + /usr/include/qt6/QtWidgets/qheaderview.h \ + /usr/include/qt6/QtWidgets/QStyledItemDelegate \ + /usr/include/qt6/QtWidgets/qstyleditemdelegate.h \ + /usr/include/qt6/QtCore/QTimer /usr/include/qt6/QtCore/qtimer.h \ + /usr/include/qt6/QtCore/qbasictimer.h \ + /usr/include/qt6/QtCore/qabstracteventdispatcher.h \ + /usr/include/qt6/QtCore/qeventloop.h \ + /usr/include/qt6/QtCore/qdeadlinetimer.h \ + /usr/include/qt6/QtCore/QPointer /usr/include/qt6/QtCore/qpointer.h \ + /usr/include/qt6/QtCore/QSet /usr/include/qt6/QtCore/qtmochelpers.h \ + /usr/include/qt6/QtCore/qtmocconstants.h \ + /usr/include/qt6/QtCore/q20algorithm.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterRowWidget.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/../../../include/wayland_qt_base/FilterRowWidget.h \ + /usr/include/qt6/QtCore/QVector /usr/include/qt6/QtCore/qvector.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterableHeaderView.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/../../../include/wayland_qt_base/FilterableHeaderView.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FindReplacePanel.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/../../../include/wayland_qt_base/FindReplacePanel.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FocusManager.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/../../../include/wayland_qt_base/FocusManager.h \ + /usr/include/qt6/QtCore/QObject /usr/include/qt6/QtGui/QKeySequence \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginSplitView.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/../../../include/wayland_qt_base/PluginSplitView.h \ + /usr/include/qt6/QtWidgets/QSplitter \ + /usr/include/qt6/QtWidgets/qsplitter.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginStatusBar.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/../../../include/wayland_qt_base/PluginStatusBar.h \ + /usr/include/qt6/QtWidgets/QLabel /usr/include/qt6/QtWidgets/qlabel.h \ + /usr/include/qt6/QtGui/qpicture.h /usr/include/qt6/QtCore/qiodevice.h \ + /usr/include/qt6/QtGui/qtextdocument.h /usr/include/qt6/QtCore/qurl.h \ + /usr/include/qt6/QtCore/QMap /usr/include/qt6/QtGui/qtextcursor.h \ + /usr/include/qt6/QtGui/qtextformat.h /usr/include/qt6/QtGui/qpen.h \ + /usr/include/qt6/QtGui/qtextoption.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginToolBar.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/../../../include/wayland_qt_base/PluginToolBar.h \ + /usr/include/qt6/QtWidgets/QToolBar \ + /usr/include/qt6/QtWidgets/qtoolbar.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_ScopedFindReplacePanel.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/../../../include/wayland_qt_base/ScopedFindReplacePanel.h diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/AutogenInfo.json b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..5b91d2e --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/AutogenInfo.json @@ -0,0 +1,888 @@ +{ + "BUILD_DIR" : "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen", + "CMAKE_BINARY_DIR" : "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build", + "CMAKE_CURRENT_BINARY_DIR" : "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build", + "CMAKE_CURRENT_SOURCE_DIR" : "/home/pplupo/repos/plugins/wlx/wayland_qt_base", + "CMAKE_EXECUTABLE" : "/usr/bin/cmake", + "CMAKE_LIST_FILES" : + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/CMakeLists.txt", + "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake", + "/usr/share/cmake/Modules/CMakeSystem.cmake.in", + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeSystem.cmake", + "/usr/share/cmake/Modules/CMakeUnixFindMake.cmake", + "/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake", + "/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake", + "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake", + "/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake", + "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake", + "/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake", + "/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake", + "/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake", + "/usr/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake", + "/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake", + "/usr/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake", + "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake", + "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake", + "/usr/share/cmake/Modules/CMakeCCompiler.cmake.in", + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCCompiler.cmake", + "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake", + "/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake", + "/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake", + "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake", + "/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake", + "/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake", + "/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake", + "/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake", + "/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake", + "/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake", + "/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake", + "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake", + "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake", + "/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in", + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCXXCompiler.cmake", + "/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake", + "/usr/share/cmake/Modules/CMakeGenericSystem.cmake", + "/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake", + "/usr/share/cmake/Modules/Platform/Linux.cmake", + "/usr/share/cmake/Modules/Platform/UnixPaths.cmake", + "/usr/share/cmake/Modules/CMakeCInformation.cmake", + "/usr/share/cmake/Modules/CMakeLanguageInformation.cmake", + "/usr/share/cmake/Modules/Compiler/GNU-C.cmake", + "/usr/share/cmake/Modules/Compiler/GNU.cmake", + "/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake", + "/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake", + "/usr/share/cmake/Modules/Platform/Linux-GNU.cmake", + "/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake", + "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake", + "/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake", + "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake", + "/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake", + "/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake", + "/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake", + "/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake", + "/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake", + "/usr/share/cmake/Modules/CMakeCCompilerABI.c", + "/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake", + "/usr/share/cmake/Modules/Internal/FeatureTesting.cmake", + "/usr/share/cmake/Modules/CMakeCCompiler.cmake.in", + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCCompiler.cmake", + "/usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake", + "/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake", + "/usr/share/cmake/Modules/Linker/GNU-C.cmake", + "/usr/share/cmake/Modules/Linker/GNU.cmake", + "/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake", + "/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake", + "/usr/share/cmake/Modules/Platform/Linker/GNU.cmake", + "/usr/share/cmake/Modules/Internal/CMakeInspectCLinker.cmake", + "/usr/share/cmake/Modules/CMakeCCompiler.cmake.in", + "/usr/share/cmake/Modules/CMakeCXXInformation.cmake", + "/usr/share/cmake/Modules/CMakeLanguageInformation.cmake", + "/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake", + "/usr/share/cmake/Modules/Compiler/GNU.cmake", + "/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake", + "/usr/share/cmake/Modules/Platform/Linux-GNU.cmake", + "/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake", + "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake", + "/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake", + "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake", + "/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake", + "/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake", + "/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake", + "/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake", + "/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake", + "/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp", + "/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake", + "/usr/share/cmake/Modules/Internal/FeatureTesting.cmake", + "/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in", + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCXXCompiler.cmake", + "/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake", + "/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake", + "/usr/share/cmake/Modules/Linker/GNU-CXX.cmake", + "/usr/share/cmake/Modules/Linker/GNU.cmake", + "/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake", + "/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake", + "/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake", + "/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in", + "/usr/lib/cmake/Qt6/Qt6ConfigVersion.cmake", + "/usr/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6/Qt6Config.cmake", + "/usr/lib/cmake/Qt6/QtPublicCMakeEarlyPolicyHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "/usr/lib/cmake/Qt6/Qt6ConfigExtras.cmake", + "/usr/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "/usr/lib/cmake/Qt6/QtInstallPaths.cmake", + "/usr/lib/cmake/Qt6/Qt6TargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6/Qt6Targets.cmake", + "/usr/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake", + "/usr/lib/cmake/Qt6/QtFeature.cmake", + "/usr/share/cmake/Modules/CheckCXXCompilerFlag.cmake", + "/usr/share/cmake/Modules/Internal/CheckCompilerFlag.cmake", + "/usr/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake", + "/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake", + "/usr/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake", + "/usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake", + "/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake", + "/usr/lib/cmake/Qt6/QtFeatureCommon.cmake", + "/usr/lib/cmake/Qt6/QtPublicAndroidHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicGitHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicPluginHelpers_v2.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomAttributionHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomBuildToolHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomCommonGenerationHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomCpeHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomCycloneDXHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomDocumentNamespaceHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomDepHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomExternalReferenceHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomFileHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomGenerationCycloneDXHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomLicenseHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomOpsHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomPurlHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomPythonHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomQtEntityHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomRelationshipHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicSbomSystemDepHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicTestHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicToolHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", + "/usr/lib/cmake/Qt6/QtPublicWindowsHelpers.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6/Qt6Dependencies.cmake", + "/usr/share/cmake/Modules/FindThreads.cmake", + "/usr/share/cmake/Modules/CheckLibraryExists.cmake", + "/usr/share/cmake/Modules/CheckIncludeFile.cmake", + "/usr/share/cmake/Modules/CheckCSourceCompiles.cmake", + "/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake", + "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/usr/share/cmake/Modules/FindPackageMessage.cmake", + "/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake", + "/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", + "/usr/lib/cmake/Qt6/FindWrapAtomic.cmake", + "/usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake", + "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/usr/share/cmake/Modules/FindPackageMessage.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake", + "/usr/lib/cmake/Qt6Core/Qt6CoreTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "/usr/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "/usr/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake", + "/usr/share/cmake/Modules/GNUInstallDirs.cmake", + "/usr/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake", + "/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake", + "/usr/share/cmake/Modules/FindOpenGL.cmake", + "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/usr/share/cmake/Modules/FindPackageMessage.cmake", + "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/usr/share/cmake/Modules/FindPackageMessage.cmake", + "/usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake", + "/usr/share/cmake/Modules/FindVulkan.cmake", + "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/usr/share/cmake/Modules/FindPackageMessage.cmake", + "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/usr/share/cmake/Modules/FindPackageMessage.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake", + "/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake", + "/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake", + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake", + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake", + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake", + "/usr/lib/cmake/Qt6DBus/Qt6DBusTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake", + "/usr/lib/cmake/Qt6DBus/Qt6DBusTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake", + "/usr/share/cmake/Modules/MacroAddFileDependencies.cmake", + "/usr/lib/cmake/Qt6DBus/Qt6DBusVersionlessAliasTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6GuiTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargets.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake", + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake", + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake", + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake", + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake", + "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake", + "/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake", + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake", + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargetsPrecheck.cmake", + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake", + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake", + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake", + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake", + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake", + "/usr/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake", + "/usr/share/cmake/Modules/FindPkgConfig.cmake", + "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake", + "/usr/share/cmake/Modules/FindPackageMessage.cmake" + ], + "CMAKE_SOURCE_DIR" : "/home/pplupo/repos/plugins/wlx/wayland_qt_base", + "CROSS_CONFIG" : false, + "DEP_FILE" : "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/deps", + "DEP_FILE_RULE_NAME" : "wayland_qt_base_autogen/timestamp", + "HEADERS" : + [ + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/CrashLogger.h", + "Mu", + "NFJ6QANG5N/moc_CrashLogger.cpp", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EditableGridWidget.h", + "Mu", + "NFJ6QANG5N/moc_EditableGridWidget.cpp", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EncodingUtils.h", + "Mu", + "NFJ6QANG5N/moc_EncodingUtils.cpp", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterRowWidget.h", + "Mu", + "NFJ6QANG5N/moc_FilterRowWidget.cpp", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterableHeaderView.h", + "Mu", + "NFJ6QANG5N/moc_FilterableHeaderView.cpp", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FindReplacePanel.h", + "Mu", + "NFJ6QANG5N/moc_FindReplacePanel.cpp", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FocusManager.h", + "Mu", + "NFJ6QANG5N/moc_FocusManager.cpp", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginSplitView.h", + "Mu", + "NFJ6QANG5N/moc_PluginSplitView.cpp", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginStatusBar.h", + "Mu", + "NFJ6QANG5N/moc_PluginStatusBar.cpp", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginToolBar.h", + "Mu", + "NFJ6QANG5N/moc_PluginToolBar.cpp", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ScopedFindReplacePanel.h", + "Mu", + "NFJ6QANG5N/moc_ScopedFindReplacePanel.cpp", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ThemeManager.h", + "Mu", + "NFJ6QANG5N/moc_ThemeManager.cpp", + null + ] + ], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/include", + "MOC_COMPILATION_FILE" : "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : [ "QT_CORE_LIB", "QT_GUI_LIB", "QT_NO_DEBUG", "QT_WIDGETS_LIB" ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/include", + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/lib", + "/usr/include/glib-2.0", + "/usr/lib/glib-2.0/include", + "/usr/include/sysprof-6", + "/usr/include/qt6/QtCore", + "/usr/include/qt6", + "/usr/lib/qt6/mkspecs/linux-g++", + "/usr/include/qt6/QtGui", + "/usr/include/qt6/QtWidgets", + "/usr/include", + "/usr/include/c++/16.1.1", + "/usr/include/c++/16.1.1/x86_64-pc-linux-gnu", + "/usr/include/c++/16.1.1/backward", + "/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include", + "/usr/local/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "/usr/bin/c++", + "-std=gnu++20", + "-w", + "-dM", + "-E", + "/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : [], + "MULTI_CONFIG" : false, + "PARALLEL" : 4, + "PARSE_CACHE_FILE" : "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "/usr/lib/qt6/moc", + "QT_UIC_EXECUTABLE" : "", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 11, + "SETTINGS_FILE" : "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/CrashLogger.cpp", + "Mu", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EditableGridWidget.cpp", + "Mu", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EncodingUtils.cpp", + "Mu", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterRowWidget.cpp", + "Mu", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterableHeaderView.cpp", + "Mu", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FindReplacePanel.cpp", + "Mu", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FocusManager.cpp", + "Mu", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginSplitView.cpp", + "Mu", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginStatusBar.cpp", + "Mu", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginToolBar.cpp", + "Mu", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ScopedFindReplacePanel.cpp", + "Mu", + null + ], + [ + "/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ThemeManager.cpp", + "Mu", + null + ] + ], + "USE_BETTER_GRAPH" : true, + "VERBOSITY" : 0 +} diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/AutogenUsed.txt b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/AutogenUsed.txt new file mode 100644 index 0000000..6c5bde0 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/AutogenUsed.txt @@ -0,0 +1 @@ +moc:e2893e7ce1469f1c30bedc9e18f843115ab6762679def3b31b532e2af4c4cd31 diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/DependInfo.cmake b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/DependInfo.cmake new file mode 100644 index 0000000..539d238 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "" "wayland_qt_base_autogen/timestamp" "custom" "wayland_qt_base_autogen/deps" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/ParseCache.txt b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/ParseCache.txt new file mode 100644 index 0000000..993614a --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/ParseCache.txt @@ -0,0 +1,4421 @@ +# Generated by CMake. Changes will be overwritten. +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginToolBar.cpp +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FindReplacePanel.cpp +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterableHeaderView.cpp +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ThemeManager.cpp +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EncodingUtils.cpp +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EditableGridWidget.cpp +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/CrashLogger.h +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FocusManager.cpp +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ScopedFindReplacePanel.h + mmc:Q_OBJECT + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FindReplacePanel.h + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ScopedFindReplacePanel.h + mdp:/usr/include/alloca.h + mdp:/usr/include/asm-generic/bitsperlong.h + mdp:/usr/include/asm-generic/errno-base.h + mdp:/usr/include/asm-generic/errno.h + mdp:/usr/include/asm-generic/int-ll64.h + mdp:/usr/include/asm-generic/posix_types.h + mdp:/usr/include/asm-generic/types.h + mdp:/usr/include/asm/bitsperlong.h + mdp:/usr/include/asm/errno.h + mdp:/usr/include/asm/posix_types.h + mdp:/usr/include/asm/posix_types_64.h + mdp:/usr/include/asm/types.h + mdp:/usr/include/assert.h + mdp:/usr/include/bits/atomic_wide_counter.h + mdp:/usr/include/bits/byteswap.h + mdp:/usr/include/bits/cpu-set.h + mdp:/usr/include/bits/endian.h + mdp:/usr/include/bits/endianness.h + mdp:/usr/include/bits/errno.h + mdp:/usr/include/bits/floatn-common.h + mdp:/usr/include/bits/floatn.h + mdp:/usr/include/bits/libc-header-start.h + mdp:/usr/include/bits/local_lim.h + mdp:/usr/include/bits/locale.h + mdp:/usr/include/bits/long-double.h + mdp:/usr/include/bits/posix1_lim.h + mdp:/usr/include/bits/posix2_lim.h + mdp:/usr/include/bits/pthread_stack_min-dynamic.h + mdp:/usr/include/bits/pthreadtypes-arch.h + mdp:/usr/include/bits/pthreadtypes.h + mdp:/usr/include/bits/sched.h + mdp:/usr/include/bits/select.h + mdp:/usr/include/bits/setjmp.h + mdp:/usr/include/bits/stdint-intn.h + mdp:/usr/include/bits/stdint-least.h + mdp:/usr/include/bits/stdint-uintn.h + mdp:/usr/include/bits/stdio_lim.h + mdp:/usr/include/bits/stdlib-float.h + mdp:/usr/include/bits/struct_mutex.h + mdp:/usr/include/bits/struct_rwlock.h + mdp:/usr/include/bits/thread-shared-types.h + mdp:/usr/include/bits/time.h + mdp:/usr/include/bits/time64.h + mdp:/usr/include/bits/timesize.h + mdp:/usr/include/bits/timex.h + mdp:/usr/include/bits/types.h + mdp:/usr/include/bits/types/FILE.h + mdp:/usr/include/bits/types/__FILE.h + mdp:/usr/include/bits/types/__fpos64_t.h + mdp:/usr/include/bits/types/__fpos_t.h + mdp:/usr/include/bits/types/__locale_t.h + mdp:/usr/include/bits/types/__mbstate_t.h + mdp:/usr/include/bits/types/__sigset_t.h + mdp:/usr/include/bits/types/clock_t.h + mdp:/usr/include/bits/types/clockid_t.h + mdp:/usr/include/bits/types/cookie_io_functions_t.h + mdp:/usr/include/bits/types/error_t.h + mdp:/usr/include/bits/types/locale_t.h + mdp:/usr/include/bits/types/mbstate_t.h + mdp:/usr/include/bits/types/sigset_t.h + mdp:/usr/include/bits/types/struct_FILE.h + mdp:/usr/include/bits/types/struct___jmp_buf_tag.h + mdp:/usr/include/bits/types/struct_itimerspec.h + mdp:/usr/include/bits/types/struct_sched_param.h + mdp:/usr/include/bits/types/struct_timespec.h + mdp:/usr/include/bits/types/struct_timeval.h + mdp:/usr/include/bits/types/struct_tm.h + mdp:/usr/include/bits/types/time_t.h + mdp:/usr/include/bits/types/timer_t.h + mdp:/usr/include/bits/types/wint_t.h + mdp:/usr/include/bits/typesizes.h + mdp:/usr/include/bits/uintn-identity.h + mdp:/usr/include/bits/uio_lim.h + mdp:/usr/include/bits/waitflags.h + mdp:/usr/include/bits/waitstatus.h + mdp:/usr/include/bits/wchar.h + mdp:/usr/include/bits/wctype-wchar.h + mdp:/usr/include/bits/wordsize.h + mdp:/usr/include/bits/xopen_lim.h + mdp:/usr/include/c++/16.1.1/algorithm + mdp:/usr/include/c++/16.1.1/array + mdp:/usr/include/c++/16.1.1/atomic + mdp:/usr/include/c++/16.1.1/backward/auto_ptr.h + mdp:/usr/include/c++/16.1.1/backward/binders.h + mdp:/usr/include/c++/16.1.1/bit + mdp:/usr/include/c++/16.1.1/bits/algorithmfwd.h + mdp:/usr/include/c++/16.1.1/bits/align.h + mdp:/usr/include/c++/16.1.1/bits/alloc_traits.h + mdp:/usr/include/c++/16.1.1/bits/allocated_ptr.h + mdp:/usr/include/c++/16.1.1/bits/allocator.h + mdp:/usr/include/c++/16.1.1/bits/atomic_base.h + mdp:/usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h + mdp:/usr/include/c++/16.1.1/bits/atomic_wait.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.tcc + mdp:/usr/include/c++/16.1.1/bits/basic_string.h + mdp:/usr/include/c++/16.1.1/bits/basic_string.tcc + mdp:/usr/include/c++/16.1.1/bits/binders.h + mdp:/usr/include/c++/16.1.1/bits/char_traits.h + mdp:/usr/include/c++/16.1.1/bits/charconv.h + mdp:/usr/include/c++/16.1.1/bits/chrono.h + mdp:/usr/include/c++/16.1.1/bits/chrono_io.h + mdp:/usr/include/c++/16.1.1/bits/concept_check.h + mdp:/usr/include/c++/16.1.1/bits/cpp_type_traits.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_forced.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_init_exception.h + mdp:/usr/include/c++/16.1.1/bits/enable_special_members.h + mdp:/usr/include/c++/16.1.1/bits/erase_if.h + mdp:/usr/include/c++/16.1.1/bits/exception.h + mdp:/usr/include/c++/16.1.1/bits/exception_defines.h + mdp:/usr/include/c++/16.1.1/bits/exception_ptr.h + mdp:/usr/include/c++/16.1.1/bits/functexcept.h + mdp:/usr/include/c++/16.1.1/bits/functional_hash.h + mdp:/usr/include/c++/16.1.1/bits/hash_bytes.h + mdp:/usr/include/c++/16.1.1/bits/hashtable.h + mdp:/usr/include/c++/16.1.1/bits/hashtable_policy.h + mdp:/usr/include/c++/16.1.1/bits/intcmp.h + mdp:/usr/include/c++/16.1.1/bits/invoke.h + mdp:/usr/include/c++/16.1.1/bits/ios_base.h + mdp:/usr/include/c++/16.1.1/bits/istream.tcc + mdp:/usr/include/c++/16.1.1/bits/iterator_concepts.h + mdp:/usr/include/c++/16.1.1/bits/list.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_classes.h + mdp:/usr/include/c++/16.1.1/bits/locale_classes.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_facets.h + mdp:/usr/include/c++/16.1.1/bits/locale_facets.tcc + mdp:/usr/include/c++/16.1.1/bits/localefwd.h + mdp:/usr/include/c++/16.1.1/bits/max_size_type.h + mdp:/usr/include/c++/16.1.1/bits/memory_resource.h + mdp:/usr/include/c++/16.1.1/bits/memoryfwd.h + mdp:/usr/include/c++/16.1.1/bits/move.h + mdp:/usr/include/c++/16.1.1/bits/nested_exception.h + mdp:/usr/include/c++/16.1.1/bits/new_allocator.h + mdp:/usr/include/c++/16.1.1/bits/new_except.h + mdp:/usr/include/c++/16.1.1/bits/new_throw.h + mdp:/usr/include/c++/16.1.1/bits/node_handle.h + mdp:/usr/include/c++/16.1.1/bits/ostream.h + mdp:/usr/include/c++/16.1.1/bits/ostream.tcc + mdp:/usr/include/c++/16.1.1/bits/ostream_insert.h + mdp:/usr/include/c++/16.1.1/bits/ostream_print.h + mdp:/usr/include/c++/16.1.1/bits/parse_numbers.h + mdp:/usr/include/c++/16.1.1/bits/postypes.h + mdp:/usr/include/c++/16.1.1/bits/predefined_ops.h + mdp:/usr/include/c++/16.1.1/bits/ptr_traits.h + mdp:/usr/include/c++/16.1.1/bits/range_access.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algo.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algobase.h + mdp:/usr/include/c++/16.1.1/bits/ranges_base.h + mdp:/usr/include/c++/16.1.1/bits/ranges_cmp.h + mdp:/usr/include/c++/16.1.1/bits/ranges_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/ranges_util.h + mdp:/usr/include/c++/16.1.1/bits/refwrap.h + mdp:/usr/include/c++/16.1.1/bits/requires_hosted.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_atomic.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_base.h + mdp:/usr/include/c++/16.1.1/bits/specfun.h + mdp:/usr/include/c++/16.1.1/bits/sstream.tcc + mdp:/usr/include/c++/16.1.1/bits/std_abs.h + mdp:/usr/include/c++/16.1.1/bits/std_function.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_except.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throw.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h + mdp:/usr/include/c++/16.1.1/bits/stl_algo.h + mdp:/usr/include/c++/16.1.1/bits/stl_algobase.h + mdp:/usr/include/c++/16.1.1/bits/stl_bvector.h + mdp:/usr/include/c++/16.1.1/bits/stl_construct.h + mdp:/usr/include/c++/16.1.1/bits/stl_function.h + mdp:/usr/include/c++/16.1.1/bits/stl_heap.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_types.h + mdp:/usr/include/c++/16.1.1/bits/stl_list.h + mdp:/usr/include/c++/16.1.1/bits/stl_map.h + mdp:/usr/include/c++/16.1.1/bits/stl_multimap.h + mdp:/usr/include/c++/16.1.1/bits/stl_multiset.h + mdp:/usr/include/c++/16.1.1/bits/stl_numeric.h + mdp:/usr/include/c++/16.1.1/bits/stl_pair.h + mdp:/usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h + mdp:/usr/include/c++/16.1.1/bits/stl_relops.h + mdp:/usr/include/c++/16.1.1/bits/stl_set.h + mdp:/usr/include/c++/16.1.1/bits/stl_tempbuf.h + mdp:/usr/include/c++/16.1.1/bits/stl_tree.h + mdp:/usr/include/c++/16.1.1/bits/stl_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/stl_vector.h + mdp:/usr/include/c++/16.1.1/bits/stream_iterator.h + mdp:/usr/include/c++/16.1.1/bits/streambuf.tcc + mdp:/usr/include/c++/16.1.1/bits/streambuf_iterator.h + mdp:/usr/include/c++/16.1.1/bits/string_view.tcc + mdp:/usr/include/c++/16.1.1/bits/stringfwd.h + mdp:/usr/include/c++/16.1.1/bits/uniform_int_dist.h + mdp:/usr/include/c++/16.1.1/bits/unique_ptr.h + mdp:/usr/include/c++/16.1.1/bits/unordered_map.h + mdp:/usr/include/c++/16.1.1/bits/unordered_set.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator_args.h + mdp:/usr/include/c++/16.1.1/bits/utility.h + mdp:/usr/include/c++/16.1.1/bits/vector.tcc + mdp:/usr/include/c++/16.1.1/bits/version.h + mdp:/usr/include/c++/16.1.1/cassert + mdp:/usr/include/c++/16.1.1/cctype + mdp:/usr/include/c++/16.1.1/cerrno + mdp:/usr/include/c++/16.1.1/charconv + mdp:/usr/include/c++/16.1.1/chrono + mdp:/usr/include/c++/16.1.1/climits + mdp:/usr/include/c++/16.1.1/clocale + mdp:/usr/include/c++/16.1.1/cmath + mdp:/usr/include/c++/16.1.1/compare + mdp:/usr/include/c++/16.1.1/concepts + mdp:/usr/include/c++/16.1.1/cstddef + mdp:/usr/include/c++/16.1.1/cstdint + mdp:/usr/include/c++/16.1.1/cstdio + mdp:/usr/include/c++/16.1.1/cstdlib + mdp:/usr/include/c++/16.1.1/cstring + mdp:/usr/include/c++/16.1.1/ctime + mdp:/usr/include/c++/16.1.1/cwchar + mdp:/usr/include/c++/16.1.1/cwctype + mdp:/usr/include/c++/16.1.1/debug/assertions.h + mdp:/usr/include/c++/16.1.1/debug/debug.h + mdp:/usr/include/c++/16.1.1/exception + mdp:/usr/include/c++/16.1.1/ext/aligned_buffer.h + mdp:/usr/include/c++/16.1.1/ext/alloc_traits.h + mdp:/usr/include/c++/16.1.1/ext/atomicity.h + mdp:/usr/include/c++/16.1.1/ext/concurrence.h + mdp:/usr/include/c++/16.1.1/ext/numeric_traits.h + mdp:/usr/include/c++/16.1.1/ext/string_conversions.h + mdp:/usr/include/c++/16.1.1/ext/type_traits.h + mdp:/usr/include/c++/16.1.1/format + mdp:/usr/include/c++/16.1.1/functional + mdp:/usr/include/c++/16.1.1/initializer_list + mdp:/usr/include/c++/16.1.1/ios + mdp:/usr/include/c++/16.1.1/iosfwd + mdp:/usr/include/c++/16.1.1/istream + mdp:/usr/include/c++/16.1.1/iterator + mdp:/usr/include/c++/16.1.1/limits + mdp:/usr/include/c++/16.1.1/list + mdp:/usr/include/c++/16.1.1/map + mdp:/usr/include/c++/16.1.1/memory + mdp:/usr/include/c++/16.1.1/new + mdp:/usr/include/c++/16.1.1/numeric + mdp:/usr/include/c++/16.1.1/optional + mdp:/usr/include/c++/16.1.1/ostream + mdp:/usr/include/c++/16.1.1/pstl/execution_defs.h + mdp:/usr/include/c++/16.1.1/pstl/glue_numeric_defs.h + mdp:/usr/include/c++/16.1.1/pstl/pstl_config.h + mdp:/usr/include/c++/16.1.1/ratio + mdp:/usr/include/c++/16.1.1/set + mdp:/usr/include/c++/16.1.1/sstream + mdp:/usr/include/c++/16.1.1/stdexcept + mdp:/usr/include/c++/16.1.1/streambuf + mdp:/usr/include/c++/16.1.1/string + mdp:/usr/include/c++/16.1.1/string_view + mdp:/usr/include/c++/16.1.1/system_error + mdp:/usr/include/c++/16.1.1/tr1/bessel_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/beta_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/ell_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/exp_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/gamma.tcc + mdp:/usr/include/c++/16.1.1/tr1/hypergeometric.tcc + mdp:/usr/include/c++/16.1.1/tr1/legendre_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_hermite.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_laguerre.tcc + mdp:/usr/include/c++/16.1.1/tr1/riemann_zeta.tcc + mdp:/usr/include/c++/16.1.1/tr1/special_function_util.h + mdp:/usr/include/c++/16.1.1/tuple + mdp:/usr/include/c++/16.1.1/type_traits + mdp:/usr/include/c++/16.1.1/typeinfo + mdp:/usr/include/c++/16.1.1/unordered_map + mdp:/usr/include/c++/16.1.1/unordered_set + mdp:/usr/include/c++/16.1.1/utility + mdp:/usr/include/c++/16.1.1/variant + mdp:/usr/include/c++/16.1.1/vector + mdp:/usr/include/c++/16.1.1/version + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h + mdp:/usr/include/ctype.h + mdp:/usr/include/endian.h + mdp:/usr/include/errno.h + mdp:/usr/include/features-time64.h + mdp:/usr/include/features.h + mdp:/usr/include/gnu/stubs-64.h + mdp:/usr/include/gnu/stubs.h + mdp:/usr/include/limits.h + mdp:/usr/include/linux/errno.h + mdp:/usr/include/linux/limits.h + mdp:/usr/include/linux/posix_types.h + mdp:/usr/include/linux/sched/types.h + mdp:/usr/include/linux/stddef.h + mdp:/usr/include/linux/types.h + mdp:/usr/include/locale.h + mdp:/usr/include/pthread.h + mdp:/usr/include/qt6/QtCore/q17memory.h + mdp:/usr/include/qt6/QtCore/q20bit.h + mdp:/usr/include/qt6/QtCore/q20functional.h + mdp:/usr/include/qt6/QtCore/q20iterator.h + mdp:/usr/include/qt6/QtCore/q20memory.h + mdp:/usr/include/qt6/QtCore/q20type_traits.h + mdp:/usr/include/qt6/QtCore/q20utility.h + mdp:/usr/include/qt6/QtCore/q23type_traits.h + mdp:/usr/include/qt6/QtCore/q23utility.h + mdp:/usr/include/qt6/QtCore/qalgorithms.h + mdp:/usr/include/qt6/QtCore/qalloc.h + mdp:/usr/include/qt6/QtCore/qanystringview.h + mdp:/usr/include/qt6/QtCore/qarraydata.h + mdp:/usr/include/qt6/QtCore/qarraydataops.h + mdp:/usr/include/qt6/QtCore/qarraydatapointer.h + mdp:/usr/include/qt6/QtCore/qassert.h + mdp:/usr/include/qt6/QtCore/qatomic.h + mdp:/usr/include/qt6/QtCore/qatomic_cxx11.h + mdp:/usr/include/qt6/QtCore/qbasicatomic.h + mdp:/usr/include/qt6/QtCore/qbindingstorage.h + mdp:/usr/include/qt6/QtCore/qbytearray.h + mdp:/usr/include/qt6/QtCore/qbytearrayalgorithms.h + mdp:/usr/include/qt6/QtCore/qbytearraylist.h + mdp:/usr/include/qt6/QtCore/qbytearrayview.h + mdp:/usr/include/qt6/QtCore/qchar.h + mdp:/usr/include/qt6/QtCore/qcheckedint_impl.h + mdp:/usr/include/qt6/QtCore/qcompare.h + mdp:/usr/include/qt6/QtCore/qcompare_impl.h + mdp:/usr/include/qt6/QtCore/qcomparehelpers.h + mdp:/usr/include/qt6/QtCore/qcompilerdetection.h + mdp:/usr/include/qt6/QtCore/qconfig.h + mdp:/usr/include/qt6/QtCore/qconstructormacros.h + mdp:/usr/include/qt6/QtCore/qcontainerfwd.h + mdp:/usr/include/qt6/QtCore/qcontainerinfo.h + mdp:/usr/include/qt6/QtCore/qcontainertools_impl.h + mdp:/usr/include/qt6/QtCore/qcontiguouscache.h + mdp:/usr/include/qt6/QtCore/qdarwinhelpers.h + mdp:/usr/include/qt6/QtCore/qdatastream.h + mdp:/usr/include/qt6/QtCore/qdebug.h + mdp:/usr/include/qt6/QtCore/qendian.h + mdp:/usr/include/qt6/QtCore/qexceptionhandling.h + mdp:/usr/include/qt6/QtCore/qflags.h + mdp:/usr/include/qt6/QtCore/qfloat16.h + mdp:/usr/include/qt6/QtCore/qforeach.h + mdp:/usr/include/qt6/QtCore/qfunctionaltools_impl.h + mdp:/usr/include/qt6/QtCore/qfunctionpointer.h + mdp:/usr/include/qt6/QtCore/qgenericatomic.h + mdp:/usr/include/qt6/QtCore/qglobal.h + mdp:/usr/include/qt6/QtCore/qglobalstatic.h + mdp:/usr/include/qt6/QtCore/qhash.h + mdp:/usr/include/qt6/QtCore/qhashfunctions.h + mdp:/usr/include/qt6/QtCore/qiodevicebase.h + mdp:/usr/include/qt6/QtCore/qiterable.h + mdp:/usr/include/qt6/QtCore/qiterator.h + mdp:/usr/include/qt6/QtCore/qlatin1stringview.h + mdp:/usr/include/qt6/QtCore/qline.h + mdp:/usr/include/qt6/QtCore/qlist.h + mdp:/usr/include/qt6/QtCore/qlogging.h + mdp:/usr/include/qt6/QtCore/qmalloc.h + mdp:/usr/include/qt6/QtCore/qmap.h + mdp:/usr/include/qt6/QtCore/qmargins.h + mdp:/usr/include/qt6/QtCore/qmath.h + mdp:/usr/include/qt6/QtCore/qmetacontainer.h + mdp:/usr/include/qt6/QtCore/qmetatype.h + mdp:/usr/include/qt6/QtCore/qminmax.h + mdp:/usr/include/qt6/QtCore/qnamespace.h + mdp:/usr/include/qt6/QtCore/qnumeric.h + mdp:/usr/include/qt6/QtCore/qobject.h + mdp:/usr/include/qt6/QtCore/qobject_impl.h + mdp:/usr/include/qt6/QtCore/qobjectdefs.h + mdp:/usr/include/qt6/QtCore/qobjectdefs_impl.h + mdp:/usr/include/qt6/QtCore/qoverload.h + mdp:/usr/include/qt6/QtCore/qpair.h + mdp:/usr/include/qt6/QtCore/qpoint.h + mdp:/usr/include/qt6/QtCore/qprocessordetection.h + mdp:/usr/include/qt6/QtCore/qrect.h + mdp:/usr/include/qt6/QtCore/qrefcount.h + mdp:/usr/include/qt6/QtCore/qscopedpointer.h + mdp:/usr/include/qt6/QtCore/qscopeguard.h + mdp:/usr/include/qt6/QtCore/qset.h + mdp:/usr/include/qt6/QtCore/qshareddata.h + mdp:/usr/include/qt6/QtCore/qshareddata_impl.h + mdp:/usr/include/qt6/QtCore/qsharedpointer.h + mdp:/usr/include/qt6/QtCore/qsharedpointer_impl.h + mdp:/usr/include/qt6/QtCore/qsize.h + mdp:/usr/include/qt6/QtCore/qspan.h + mdp:/usr/include/qt6/QtCore/qstdlibdetection.h + mdp:/usr/include/qt6/QtCore/qstring.h + mdp:/usr/include/qt6/QtCore/qstringalgorithms.h + mdp:/usr/include/qt6/QtCore/qstringbuilder.h + mdp:/usr/include/qt6/QtCore/qstringconverter.h + mdp:/usr/include/qt6/QtCore/qstringconverter_base.h + mdp:/usr/include/qt6/QtCore/qstringfwd.h + mdp:/usr/include/qt6/QtCore/qstringlist.h + mdp:/usr/include/qt6/QtCore/qstringmatcher.h + mdp:/usr/include/qt6/QtCore/qstringtokenizer.h + mdp:/usr/include/qt6/QtCore/qstringview.h + mdp:/usr/include/qt6/QtCore/qswap.h + mdp:/usr/include/qt6/QtCore/qsysinfo.h + mdp:/usr/include/qt6/QtCore/qsystemdetection.h + mdp:/usr/include/qt6/QtCore/qtaggedpointer.h + mdp:/usr/include/qt6/QtCore/qtclasshelpermacros.h + mdp:/usr/include/qt6/QtCore/qtconfiginclude.h + mdp:/usr/include/qt6/QtCore/qtconfigmacros.h + mdp:/usr/include/qt6/QtCore/qtcore-config.h + mdp:/usr/include/qt6/QtCore/qtcoreexports.h + mdp:/usr/include/qt6/QtCore/qtcoreglobal.h + mdp:/usr/include/qt6/QtCore/qtdeprecationdefinitions.h + mdp:/usr/include/qt6/QtCore/qtdeprecationmarkers.h + mdp:/usr/include/qt6/QtCore/qtenvironmentvariables.h + mdp:/usr/include/qt6/QtCore/qtextstream.h + mdp:/usr/include/qt6/QtCore/qtformat_impl.h + mdp:/usr/include/qt6/QtCore/qtmetamacros.h + mdp:/usr/include/qt6/QtCore/qtnoop.h + mdp:/usr/include/qt6/QtCore/qtpreprocessorsupport.h + mdp:/usr/include/qt6/QtCore/qtresource.h + mdp:/usr/include/qt6/QtCore/qttranslation.h + mdp:/usr/include/qt6/QtCore/qttypetraits.h + mdp:/usr/include/qt6/QtCore/qtversion.h + mdp:/usr/include/qt6/QtCore/qtversionchecks.h + mdp:/usr/include/qt6/QtCore/qtypeinfo.h + mdp:/usr/include/qt6/QtCore/qtypes.h + mdp:/usr/include/qt6/QtCore/qutf8stringview.h + mdp:/usr/include/qt6/QtCore/qvariant.h + mdp:/usr/include/qt6/QtCore/qvarlengtharray.h + mdp:/usr/include/qt6/QtCore/qversiontagging.h + mdp:/usr/include/qt6/QtCore/qxptype_traits.h + mdp:/usr/include/qt6/QtCore/qyieldcpu.h + mdp:/usr/include/qt6/QtGui/qaction.h + mdp:/usr/include/qt6/QtGui/qbitmap.h + mdp:/usr/include/qt6/QtGui/qbrush.h + mdp:/usr/include/qt6/QtGui/qcolor.h + mdp:/usr/include/qt6/QtGui/qcursor.h + mdp:/usr/include/qt6/QtGui/qfont.h + mdp:/usr/include/qt6/QtGui/qfontinfo.h + mdp:/usr/include/qt6/QtGui/qfontmetrics.h + mdp:/usr/include/qt6/QtGui/qfontvariableaxis.h + mdp:/usr/include/qt6/QtGui/qicon.h + mdp:/usr/include/qt6/QtGui/qimage.h + mdp:/usr/include/qt6/QtGui/qkeysequence.h + mdp:/usr/include/qt6/QtGui/qpaintdevice.h + mdp:/usr/include/qt6/QtGui/qpalette.h + mdp:/usr/include/qt6/QtGui/qpixelformat.h + mdp:/usr/include/qt6/QtGui/qpixmap.h + mdp:/usr/include/qt6/QtGui/qpolygon.h + mdp:/usr/include/qt6/QtGui/qregion.h + mdp:/usr/include/qt6/QtGui/qrgb.h + mdp:/usr/include/qt6/QtGui/qrgba64.h + mdp:/usr/include/qt6/QtGui/qtgui-config.h + mdp:/usr/include/qt6/QtGui/qtguiexports.h + mdp:/usr/include/qt6/QtGui/qtguiglobal.h + mdp:/usr/include/qt6/QtGui/qtransform.h + mdp:/usr/include/qt6/QtGui/qwindowdefs.h + mdp:/usr/include/qt6/QtWidgets/QWidget + mdp:/usr/include/qt6/QtWidgets/qsizepolicy.h + mdp:/usr/include/qt6/QtWidgets/qtwidgets-config.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsexports.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsglobal.h + mdp:/usr/include/qt6/QtWidgets/qwidget.h + mdp:/usr/include/sched.h + mdp:/usr/include/stdc-predef.h + mdp:/usr/include/stdint.h + mdp:/usr/include/stdio.h + mdp:/usr/include/stdlib.h + mdp:/usr/include/string.h + mdp:/usr/include/strings.h + mdp:/usr/include/sys/cdefs.h + mdp:/usr/include/sys/select.h + mdp:/usr/include/sys/single_threaded.h + mdp:/usr/include/sys/types.h + mdp:/usr/include/time.h + mdp:/usr/include/wchar.h + mdp:/usr/include/wctype.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterRowWidget.cpp +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EncodingUtils.h +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ScopedFindReplacePanel.cpp +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterRowWidget.h + mmc:Q_OBJECT + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterRowWidget.h + mdp:/usr/include/alloca.h + mdp:/usr/include/asm-generic/bitsperlong.h + mdp:/usr/include/asm-generic/errno-base.h + mdp:/usr/include/asm-generic/errno.h + mdp:/usr/include/asm-generic/int-ll64.h + mdp:/usr/include/asm-generic/posix_types.h + mdp:/usr/include/asm-generic/types.h + mdp:/usr/include/asm/bitsperlong.h + mdp:/usr/include/asm/errno.h + mdp:/usr/include/asm/posix_types.h + mdp:/usr/include/asm/posix_types_64.h + mdp:/usr/include/asm/types.h + mdp:/usr/include/assert.h + mdp:/usr/include/bits/atomic_wide_counter.h + mdp:/usr/include/bits/byteswap.h + mdp:/usr/include/bits/cpu-set.h + mdp:/usr/include/bits/endian.h + mdp:/usr/include/bits/endianness.h + mdp:/usr/include/bits/errno.h + mdp:/usr/include/bits/floatn-common.h + mdp:/usr/include/bits/floatn.h + mdp:/usr/include/bits/libc-header-start.h + mdp:/usr/include/bits/local_lim.h + mdp:/usr/include/bits/locale.h + mdp:/usr/include/bits/long-double.h + mdp:/usr/include/bits/posix1_lim.h + mdp:/usr/include/bits/posix2_lim.h + mdp:/usr/include/bits/pthread_stack_min-dynamic.h + mdp:/usr/include/bits/pthreadtypes-arch.h + mdp:/usr/include/bits/pthreadtypes.h + mdp:/usr/include/bits/sched.h + mdp:/usr/include/bits/select.h + mdp:/usr/include/bits/setjmp.h + mdp:/usr/include/bits/stdint-intn.h + mdp:/usr/include/bits/stdint-least.h + mdp:/usr/include/bits/stdint-uintn.h + mdp:/usr/include/bits/stdio_lim.h + mdp:/usr/include/bits/stdlib-float.h + mdp:/usr/include/bits/struct_mutex.h + mdp:/usr/include/bits/struct_rwlock.h + mdp:/usr/include/bits/thread-shared-types.h + mdp:/usr/include/bits/time.h + mdp:/usr/include/bits/time64.h + mdp:/usr/include/bits/timesize.h + mdp:/usr/include/bits/timex.h + mdp:/usr/include/bits/types.h + mdp:/usr/include/bits/types/FILE.h + mdp:/usr/include/bits/types/__FILE.h + mdp:/usr/include/bits/types/__fpos64_t.h + mdp:/usr/include/bits/types/__fpos_t.h + mdp:/usr/include/bits/types/__locale_t.h + mdp:/usr/include/bits/types/__mbstate_t.h + mdp:/usr/include/bits/types/__sigset_t.h + mdp:/usr/include/bits/types/clock_t.h + mdp:/usr/include/bits/types/clockid_t.h + mdp:/usr/include/bits/types/cookie_io_functions_t.h + mdp:/usr/include/bits/types/error_t.h + mdp:/usr/include/bits/types/locale_t.h + mdp:/usr/include/bits/types/mbstate_t.h + mdp:/usr/include/bits/types/sigset_t.h + mdp:/usr/include/bits/types/struct_FILE.h + mdp:/usr/include/bits/types/struct___jmp_buf_tag.h + mdp:/usr/include/bits/types/struct_itimerspec.h + mdp:/usr/include/bits/types/struct_sched_param.h + mdp:/usr/include/bits/types/struct_timespec.h + mdp:/usr/include/bits/types/struct_timeval.h + mdp:/usr/include/bits/types/struct_tm.h + mdp:/usr/include/bits/types/time_t.h + mdp:/usr/include/bits/types/timer_t.h + mdp:/usr/include/bits/types/wint_t.h + mdp:/usr/include/bits/typesizes.h + mdp:/usr/include/bits/uintn-identity.h + mdp:/usr/include/bits/uio_lim.h + mdp:/usr/include/bits/waitflags.h + mdp:/usr/include/bits/waitstatus.h + mdp:/usr/include/bits/wchar.h + mdp:/usr/include/bits/wctype-wchar.h + mdp:/usr/include/bits/wordsize.h + mdp:/usr/include/bits/xopen_lim.h + mdp:/usr/include/c++/16.1.1/algorithm + mdp:/usr/include/c++/16.1.1/array + mdp:/usr/include/c++/16.1.1/atomic + mdp:/usr/include/c++/16.1.1/backward/auto_ptr.h + mdp:/usr/include/c++/16.1.1/backward/binders.h + mdp:/usr/include/c++/16.1.1/bit + mdp:/usr/include/c++/16.1.1/bits/algorithmfwd.h + mdp:/usr/include/c++/16.1.1/bits/align.h + mdp:/usr/include/c++/16.1.1/bits/alloc_traits.h + mdp:/usr/include/c++/16.1.1/bits/allocated_ptr.h + mdp:/usr/include/c++/16.1.1/bits/allocator.h + mdp:/usr/include/c++/16.1.1/bits/atomic_base.h + mdp:/usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h + mdp:/usr/include/c++/16.1.1/bits/atomic_wait.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.tcc + mdp:/usr/include/c++/16.1.1/bits/basic_string.h + mdp:/usr/include/c++/16.1.1/bits/basic_string.tcc + mdp:/usr/include/c++/16.1.1/bits/binders.h + mdp:/usr/include/c++/16.1.1/bits/char_traits.h + mdp:/usr/include/c++/16.1.1/bits/charconv.h + mdp:/usr/include/c++/16.1.1/bits/chrono.h + mdp:/usr/include/c++/16.1.1/bits/chrono_io.h + mdp:/usr/include/c++/16.1.1/bits/concept_check.h + mdp:/usr/include/c++/16.1.1/bits/cpp_type_traits.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_forced.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_init_exception.h + mdp:/usr/include/c++/16.1.1/bits/enable_special_members.h + mdp:/usr/include/c++/16.1.1/bits/erase_if.h + mdp:/usr/include/c++/16.1.1/bits/exception.h + mdp:/usr/include/c++/16.1.1/bits/exception_defines.h + mdp:/usr/include/c++/16.1.1/bits/exception_ptr.h + mdp:/usr/include/c++/16.1.1/bits/functexcept.h + mdp:/usr/include/c++/16.1.1/bits/functional_hash.h + mdp:/usr/include/c++/16.1.1/bits/hash_bytes.h + mdp:/usr/include/c++/16.1.1/bits/hashtable.h + mdp:/usr/include/c++/16.1.1/bits/hashtable_policy.h + mdp:/usr/include/c++/16.1.1/bits/intcmp.h + mdp:/usr/include/c++/16.1.1/bits/invoke.h + mdp:/usr/include/c++/16.1.1/bits/ios_base.h + mdp:/usr/include/c++/16.1.1/bits/istream.tcc + mdp:/usr/include/c++/16.1.1/bits/iterator_concepts.h + mdp:/usr/include/c++/16.1.1/bits/list.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_classes.h + mdp:/usr/include/c++/16.1.1/bits/locale_classes.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_facets.h + mdp:/usr/include/c++/16.1.1/bits/locale_facets.tcc + mdp:/usr/include/c++/16.1.1/bits/localefwd.h + mdp:/usr/include/c++/16.1.1/bits/max_size_type.h + mdp:/usr/include/c++/16.1.1/bits/memory_resource.h + mdp:/usr/include/c++/16.1.1/bits/memoryfwd.h + mdp:/usr/include/c++/16.1.1/bits/move.h + mdp:/usr/include/c++/16.1.1/bits/nested_exception.h + mdp:/usr/include/c++/16.1.1/bits/new_allocator.h + mdp:/usr/include/c++/16.1.1/bits/new_except.h + mdp:/usr/include/c++/16.1.1/bits/new_throw.h + mdp:/usr/include/c++/16.1.1/bits/node_handle.h + mdp:/usr/include/c++/16.1.1/bits/ostream.h + mdp:/usr/include/c++/16.1.1/bits/ostream.tcc + mdp:/usr/include/c++/16.1.1/bits/ostream_insert.h + mdp:/usr/include/c++/16.1.1/bits/ostream_print.h + mdp:/usr/include/c++/16.1.1/bits/parse_numbers.h + mdp:/usr/include/c++/16.1.1/bits/postypes.h + mdp:/usr/include/c++/16.1.1/bits/predefined_ops.h + mdp:/usr/include/c++/16.1.1/bits/ptr_traits.h + mdp:/usr/include/c++/16.1.1/bits/range_access.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algo.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algobase.h + mdp:/usr/include/c++/16.1.1/bits/ranges_base.h + mdp:/usr/include/c++/16.1.1/bits/ranges_cmp.h + mdp:/usr/include/c++/16.1.1/bits/ranges_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/ranges_util.h + mdp:/usr/include/c++/16.1.1/bits/refwrap.h + mdp:/usr/include/c++/16.1.1/bits/requires_hosted.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_atomic.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_base.h + mdp:/usr/include/c++/16.1.1/bits/specfun.h + mdp:/usr/include/c++/16.1.1/bits/sstream.tcc + mdp:/usr/include/c++/16.1.1/bits/std_abs.h + mdp:/usr/include/c++/16.1.1/bits/std_function.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_except.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throw.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h + mdp:/usr/include/c++/16.1.1/bits/stl_algo.h + mdp:/usr/include/c++/16.1.1/bits/stl_algobase.h + mdp:/usr/include/c++/16.1.1/bits/stl_bvector.h + mdp:/usr/include/c++/16.1.1/bits/stl_construct.h + mdp:/usr/include/c++/16.1.1/bits/stl_function.h + mdp:/usr/include/c++/16.1.1/bits/stl_heap.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_types.h + mdp:/usr/include/c++/16.1.1/bits/stl_list.h + mdp:/usr/include/c++/16.1.1/bits/stl_map.h + mdp:/usr/include/c++/16.1.1/bits/stl_multimap.h + mdp:/usr/include/c++/16.1.1/bits/stl_multiset.h + mdp:/usr/include/c++/16.1.1/bits/stl_numeric.h + mdp:/usr/include/c++/16.1.1/bits/stl_pair.h + mdp:/usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h + mdp:/usr/include/c++/16.1.1/bits/stl_relops.h + mdp:/usr/include/c++/16.1.1/bits/stl_set.h + mdp:/usr/include/c++/16.1.1/bits/stl_tempbuf.h + mdp:/usr/include/c++/16.1.1/bits/stl_tree.h + mdp:/usr/include/c++/16.1.1/bits/stl_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/stl_vector.h + mdp:/usr/include/c++/16.1.1/bits/stream_iterator.h + mdp:/usr/include/c++/16.1.1/bits/streambuf.tcc + mdp:/usr/include/c++/16.1.1/bits/streambuf_iterator.h + mdp:/usr/include/c++/16.1.1/bits/string_view.tcc + mdp:/usr/include/c++/16.1.1/bits/stringfwd.h + mdp:/usr/include/c++/16.1.1/bits/uniform_int_dist.h + mdp:/usr/include/c++/16.1.1/bits/unique_ptr.h + mdp:/usr/include/c++/16.1.1/bits/unordered_map.h + mdp:/usr/include/c++/16.1.1/bits/unordered_set.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator_args.h + mdp:/usr/include/c++/16.1.1/bits/utility.h + mdp:/usr/include/c++/16.1.1/bits/vector.tcc + mdp:/usr/include/c++/16.1.1/bits/version.h + mdp:/usr/include/c++/16.1.1/cassert + mdp:/usr/include/c++/16.1.1/cctype + mdp:/usr/include/c++/16.1.1/cerrno + mdp:/usr/include/c++/16.1.1/charconv + mdp:/usr/include/c++/16.1.1/chrono + mdp:/usr/include/c++/16.1.1/climits + mdp:/usr/include/c++/16.1.1/clocale + mdp:/usr/include/c++/16.1.1/cmath + mdp:/usr/include/c++/16.1.1/compare + mdp:/usr/include/c++/16.1.1/concepts + mdp:/usr/include/c++/16.1.1/cstddef + mdp:/usr/include/c++/16.1.1/cstdint + mdp:/usr/include/c++/16.1.1/cstdio + mdp:/usr/include/c++/16.1.1/cstdlib + mdp:/usr/include/c++/16.1.1/cstring + mdp:/usr/include/c++/16.1.1/ctime + mdp:/usr/include/c++/16.1.1/cwchar + mdp:/usr/include/c++/16.1.1/cwctype + mdp:/usr/include/c++/16.1.1/debug/assertions.h + mdp:/usr/include/c++/16.1.1/debug/debug.h + mdp:/usr/include/c++/16.1.1/exception + mdp:/usr/include/c++/16.1.1/ext/aligned_buffer.h + mdp:/usr/include/c++/16.1.1/ext/alloc_traits.h + mdp:/usr/include/c++/16.1.1/ext/atomicity.h + mdp:/usr/include/c++/16.1.1/ext/concurrence.h + mdp:/usr/include/c++/16.1.1/ext/numeric_traits.h + mdp:/usr/include/c++/16.1.1/ext/string_conversions.h + mdp:/usr/include/c++/16.1.1/ext/type_traits.h + mdp:/usr/include/c++/16.1.1/format + mdp:/usr/include/c++/16.1.1/functional + mdp:/usr/include/c++/16.1.1/initializer_list + mdp:/usr/include/c++/16.1.1/ios + mdp:/usr/include/c++/16.1.1/iosfwd + mdp:/usr/include/c++/16.1.1/istream + mdp:/usr/include/c++/16.1.1/iterator + mdp:/usr/include/c++/16.1.1/limits + mdp:/usr/include/c++/16.1.1/list + mdp:/usr/include/c++/16.1.1/map + mdp:/usr/include/c++/16.1.1/memory + mdp:/usr/include/c++/16.1.1/new + mdp:/usr/include/c++/16.1.1/numeric + mdp:/usr/include/c++/16.1.1/optional + mdp:/usr/include/c++/16.1.1/ostream + mdp:/usr/include/c++/16.1.1/pstl/execution_defs.h + mdp:/usr/include/c++/16.1.1/pstl/glue_numeric_defs.h + mdp:/usr/include/c++/16.1.1/pstl/pstl_config.h + mdp:/usr/include/c++/16.1.1/ratio + mdp:/usr/include/c++/16.1.1/set + mdp:/usr/include/c++/16.1.1/sstream + mdp:/usr/include/c++/16.1.1/stdexcept + mdp:/usr/include/c++/16.1.1/streambuf + mdp:/usr/include/c++/16.1.1/string + mdp:/usr/include/c++/16.1.1/string_view + mdp:/usr/include/c++/16.1.1/system_error + mdp:/usr/include/c++/16.1.1/tr1/bessel_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/beta_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/ell_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/exp_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/gamma.tcc + mdp:/usr/include/c++/16.1.1/tr1/hypergeometric.tcc + mdp:/usr/include/c++/16.1.1/tr1/legendre_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_hermite.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_laguerre.tcc + mdp:/usr/include/c++/16.1.1/tr1/riemann_zeta.tcc + mdp:/usr/include/c++/16.1.1/tr1/special_function_util.h + mdp:/usr/include/c++/16.1.1/tuple + mdp:/usr/include/c++/16.1.1/type_traits + mdp:/usr/include/c++/16.1.1/typeinfo + mdp:/usr/include/c++/16.1.1/unordered_map + mdp:/usr/include/c++/16.1.1/unordered_set + mdp:/usr/include/c++/16.1.1/utility + mdp:/usr/include/c++/16.1.1/variant + mdp:/usr/include/c++/16.1.1/vector + mdp:/usr/include/c++/16.1.1/version + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h + mdp:/usr/include/ctype.h + mdp:/usr/include/endian.h + mdp:/usr/include/errno.h + mdp:/usr/include/features-time64.h + mdp:/usr/include/features.h + mdp:/usr/include/gnu/stubs-64.h + mdp:/usr/include/gnu/stubs.h + mdp:/usr/include/limits.h + mdp:/usr/include/linux/errno.h + mdp:/usr/include/linux/limits.h + mdp:/usr/include/linux/posix_types.h + mdp:/usr/include/linux/sched/types.h + mdp:/usr/include/linux/stddef.h + mdp:/usr/include/linux/types.h + mdp:/usr/include/locale.h + mdp:/usr/include/pthread.h + mdp:/usr/include/qt6/QtCore/QVector + mdp:/usr/include/qt6/QtCore/q17memory.h + mdp:/usr/include/qt6/QtCore/q20bit.h + mdp:/usr/include/qt6/QtCore/q20functional.h + mdp:/usr/include/qt6/QtCore/q20iterator.h + mdp:/usr/include/qt6/QtCore/q20memory.h + mdp:/usr/include/qt6/QtCore/q20type_traits.h + mdp:/usr/include/qt6/QtCore/q20utility.h + mdp:/usr/include/qt6/QtCore/q23type_traits.h + mdp:/usr/include/qt6/QtCore/q23utility.h + mdp:/usr/include/qt6/QtCore/qalgorithms.h + mdp:/usr/include/qt6/QtCore/qalloc.h + mdp:/usr/include/qt6/QtCore/qanystringview.h + mdp:/usr/include/qt6/QtCore/qarraydata.h + mdp:/usr/include/qt6/QtCore/qarraydataops.h + mdp:/usr/include/qt6/QtCore/qarraydatapointer.h + mdp:/usr/include/qt6/QtCore/qassert.h + mdp:/usr/include/qt6/QtCore/qatomic.h + mdp:/usr/include/qt6/QtCore/qatomic_cxx11.h + mdp:/usr/include/qt6/QtCore/qbasicatomic.h + mdp:/usr/include/qt6/QtCore/qbindingstorage.h + mdp:/usr/include/qt6/QtCore/qbytearray.h + mdp:/usr/include/qt6/QtCore/qbytearrayalgorithms.h + mdp:/usr/include/qt6/QtCore/qbytearraylist.h + mdp:/usr/include/qt6/QtCore/qbytearrayview.h + mdp:/usr/include/qt6/QtCore/qchar.h + mdp:/usr/include/qt6/QtCore/qcheckedint_impl.h + mdp:/usr/include/qt6/QtCore/qcompare.h + mdp:/usr/include/qt6/QtCore/qcompare_impl.h + mdp:/usr/include/qt6/QtCore/qcomparehelpers.h + mdp:/usr/include/qt6/QtCore/qcompilerdetection.h + mdp:/usr/include/qt6/QtCore/qconfig.h + mdp:/usr/include/qt6/QtCore/qconstructormacros.h + mdp:/usr/include/qt6/QtCore/qcontainerfwd.h + mdp:/usr/include/qt6/QtCore/qcontainerinfo.h + mdp:/usr/include/qt6/QtCore/qcontainertools_impl.h + mdp:/usr/include/qt6/QtCore/qcontiguouscache.h + mdp:/usr/include/qt6/QtCore/qdarwinhelpers.h + mdp:/usr/include/qt6/QtCore/qdatastream.h + mdp:/usr/include/qt6/QtCore/qdebug.h + mdp:/usr/include/qt6/QtCore/qendian.h + mdp:/usr/include/qt6/QtCore/qexceptionhandling.h + mdp:/usr/include/qt6/QtCore/qflags.h + mdp:/usr/include/qt6/QtCore/qfloat16.h + mdp:/usr/include/qt6/QtCore/qforeach.h + mdp:/usr/include/qt6/QtCore/qfunctionaltools_impl.h + mdp:/usr/include/qt6/QtCore/qfunctionpointer.h + mdp:/usr/include/qt6/QtCore/qgenericatomic.h + mdp:/usr/include/qt6/QtCore/qglobal.h + mdp:/usr/include/qt6/QtCore/qglobalstatic.h + mdp:/usr/include/qt6/QtCore/qhash.h + mdp:/usr/include/qt6/QtCore/qhashfunctions.h + mdp:/usr/include/qt6/QtCore/qiodevicebase.h + mdp:/usr/include/qt6/QtCore/qiterable.h + mdp:/usr/include/qt6/QtCore/qiterator.h + mdp:/usr/include/qt6/QtCore/qlatin1stringview.h + mdp:/usr/include/qt6/QtCore/qline.h + mdp:/usr/include/qt6/QtCore/qlist.h + mdp:/usr/include/qt6/QtCore/qlogging.h + mdp:/usr/include/qt6/QtCore/qmalloc.h + mdp:/usr/include/qt6/QtCore/qmap.h + mdp:/usr/include/qt6/QtCore/qmargins.h + mdp:/usr/include/qt6/QtCore/qmath.h + mdp:/usr/include/qt6/QtCore/qmetacontainer.h + mdp:/usr/include/qt6/QtCore/qmetatype.h + mdp:/usr/include/qt6/QtCore/qminmax.h + mdp:/usr/include/qt6/QtCore/qnamespace.h + mdp:/usr/include/qt6/QtCore/qnumeric.h + mdp:/usr/include/qt6/QtCore/qobject.h + mdp:/usr/include/qt6/QtCore/qobject_impl.h + mdp:/usr/include/qt6/QtCore/qobjectdefs.h + mdp:/usr/include/qt6/QtCore/qobjectdefs_impl.h + mdp:/usr/include/qt6/QtCore/qoverload.h + mdp:/usr/include/qt6/QtCore/qpair.h + mdp:/usr/include/qt6/QtCore/qpoint.h + mdp:/usr/include/qt6/QtCore/qprocessordetection.h + mdp:/usr/include/qt6/QtCore/qrect.h + mdp:/usr/include/qt6/QtCore/qrefcount.h + mdp:/usr/include/qt6/QtCore/qscopedpointer.h + mdp:/usr/include/qt6/QtCore/qscopeguard.h + mdp:/usr/include/qt6/QtCore/qset.h + mdp:/usr/include/qt6/QtCore/qshareddata.h + mdp:/usr/include/qt6/QtCore/qshareddata_impl.h + mdp:/usr/include/qt6/QtCore/qsharedpointer.h + mdp:/usr/include/qt6/QtCore/qsharedpointer_impl.h + mdp:/usr/include/qt6/QtCore/qsize.h + mdp:/usr/include/qt6/QtCore/qspan.h + mdp:/usr/include/qt6/QtCore/qstdlibdetection.h + mdp:/usr/include/qt6/QtCore/qstring.h + mdp:/usr/include/qt6/QtCore/qstringalgorithms.h + mdp:/usr/include/qt6/QtCore/qstringbuilder.h + mdp:/usr/include/qt6/QtCore/qstringconverter.h + mdp:/usr/include/qt6/QtCore/qstringconverter_base.h + mdp:/usr/include/qt6/QtCore/qstringfwd.h + mdp:/usr/include/qt6/QtCore/qstringlist.h + mdp:/usr/include/qt6/QtCore/qstringmatcher.h + mdp:/usr/include/qt6/QtCore/qstringtokenizer.h + mdp:/usr/include/qt6/QtCore/qstringview.h + mdp:/usr/include/qt6/QtCore/qswap.h + mdp:/usr/include/qt6/QtCore/qsysinfo.h + mdp:/usr/include/qt6/QtCore/qsystemdetection.h + mdp:/usr/include/qt6/QtCore/qtaggedpointer.h + mdp:/usr/include/qt6/QtCore/qtclasshelpermacros.h + mdp:/usr/include/qt6/QtCore/qtconfiginclude.h + mdp:/usr/include/qt6/QtCore/qtconfigmacros.h + mdp:/usr/include/qt6/QtCore/qtcore-config.h + mdp:/usr/include/qt6/QtCore/qtcoreexports.h + mdp:/usr/include/qt6/QtCore/qtcoreglobal.h + mdp:/usr/include/qt6/QtCore/qtdeprecationdefinitions.h + mdp:/usr/include/qt6/QtCore/qtdeprecationmarkers.h + mdp:/usr/include/qt6/QtCore/qtenvironmentvariables.h + mdp:/usr/include/qt6/QtCore/qtextstream.h + mdp:/usr/include/qt6/QtCore/qtformat_impl.h + mdp:/usr/include/qt6/QtCore/qtmetamacros.h + mdp:/usr/include/qt6/QtCore/qtnoop.h + mdp:/usr/include/qt6/QtCore/qtpreprocessorsupport.h + mdp:/usr/include/qt6/QtCore/qtresource.h + mdp:/usr/include/qt6/QtCore/qttranslation.h + mdp:/usr/include/qt6/QtCore/qttypetraits.h + mdp:/usr/include/qt6/QtCore/qtversion.h + mdp:/usr/include/qt6/QtCore/qtversionchecks.h + mdp:/usr/include/qt6/QtCore/qtypeinfo.h + mdp:/usr/include/qt6/QtCore/qtypes.h + mdp:/usr/include/qt6/QtCore/qutf8stringview.h + mdp:/usr/include/qt6/QtCore/qvariant.h + mdp:/usr/include/qt6/QtCore/qvarlengtharray.h + mdp:/usr/include/qt6/QtCore/qvector.h + mdp:/usr/include/qt6/QtCore/qversiontagging.h + mdp:/usr/include/qt6/QtCore/qxptype_traits.h + mdp:/usr/include/qt6/QtCore/qyieldcpu.h + mdp:/usr/include/qt6/QtGui/qaction.h + mdp:/usr/include/qt6/QtGui/qbitmap.h + mdp:/usr/include/qt6/QtGui/qbrush.h + mdp:/usr/include/qt6/QtGui/qcolor.h + mdp:/usr/include/qt6/QtGui/qcursor.h + mdp:/usr/include/qt6/QtGui/qfont.h + mdp:/usr/include/qt6/QtGui/qfontinfo.h + mdp:/usr/include/qt6/QtGui/qfontmetrics.h + mdp:/usr/include/qt6/QtGui/qfontvariableaxis.h + mdp:/usr/include/qt6/QtGui/qicon.h + mdp:/usr/include/qt6/QtGui/qimage.h + mdp:/usr/include/qt6/QtGui/qkeysequence.h + mdp:/usr/include/qt6/QtGui/qpaintdevice.h + mdp:/usr/include/qt6/QtGui/qpalette.h + mdp:/usr/include/qt6/QtGui/qpixelformat.h + mdp:/usr/include/qt6/QtGui/qpixmap.h + mdp:/usr/include/qt6/QtGui/qpolygon.h + mdp:/usr/include/qt6/QtGui/qregion.h + mdp:/usr/include/qt6/QtGui/qrgb.h + mdp:/usr/include/qt6/QtGui/qrgba64.h + mdp:/usr/include/qt6/QtGui/qtgui-config.h + mdp:/usr/include/qt6/QtGui/qtguiexports.h + mdp:/usr/include/qt6/QtGui/qtguiglobal.h + mdp:/usr/include/qt6/QtGui/qtransform.h + mdp:/usr/include/qt6/QtGui/qwindowdefs.h + mdp:/usr/include/qt6/QtWidgets/QWidget + mdp:/usr/include/qt6/QtWidgets/qsizepolicy.h + mdp:/usr/include/qt6/QtWidgets/qtwidgets-config.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsexports.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsglobal.h + mdp:/usr/include/qt6/QtWidgets/qwidget.h + mdp:/usr/include/sched.h + mdp:/usr/include/stdc-predef.h + mdp:/usr/include/stdint.h + mdp:/usr/include/stdio.h + mdp:/usr/include/stdlib.h + mdp:/usr/include/string.h + mdp:/usr/include/strings.h + mdp:/usr/include/sys/cdefs.h + mdp:/usr/include/sys/select.h + mdp:/usr/include/sys/single_threaded.h + mdp:/usr/include/sys/types.h + mdp:/usr/include/time.h + mdp:/usr/include/wchar.h + mdp:/usr/include/wctype.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginStatusBar.h + mmc:Q_OBJECT + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginStatusBar.h + mdp:/usr/include/alloca.h + mdp:/usr/include/asm-generic/bitsperlong.h + mdp:/usr/include/asm-generic/errno-base.h + mdp:/usr/include/asm-generic/errno.h + mdp:/usr/include/asm-generic/int-ll64.h + mdp:/usr/include/asm-generic/posix_types.h + mdp:/usr/include/asm-generic/types.h + mdp:/usr/include/asm/bitsperlong.h + mdp:/usr/include/asm/errno.h + mdp:/usr/include/asm/posix_types.h + mdp:/usr/include/asm/posix_types_64.h + mdp:/usr/include/asm/types.h + mdp:/usr/include/assert.h + mdp:/usr/include/bits/atomic_wide_counter.h + mdp:/usr/include/bits/byteswap.h + mdp:/usr/include/bits/cpu-set.h + mdp:/usr/include/bits/endian.h + mdp:/usr/include/bits/endianness.h + mdp:/usr/include/bits/errno.h + mdp:/usr/include/bits/floatn-common.h + mdp:/usr/include/bits/floatn.h + mdp:/usr/include/bits/libc-header-start.h + mdp:/usr/include/bits/local_lim.h + mdp:/usr/include/bits/locale.h + mdp:/usr/include/bits/long-double.h + mdp:/usr/include/bits/posix1_lim.h + mdp:/usr/include/bits/posix2_lim.h + mdp:/usr/include/bits/pthread_stack_min-dynamic.h + mdp:/usr/include/bits/pthreadtypes-arch.h + mdp:/usr/include/bits/pthreadtypes.h + mdp:/usr/include/bits/sched.h + mdp:/usr/include/bits/select.h + mdp:/usr/include/bits/setjmp.h + mdp:/usr/include/bits/stdint-intn.h + mdp:/usr/include/bits/stdint-least.h + mdp:/usr/include/bits/stdint-uintn.h + mdp:/usr/include/bits/stdio_lim.h + mdp:/usr/include/bits/stdlib-float.h + mdp:/usr/include/bits/struct_mutex.h + mdp:/usr/include/bits/struct_rwlock.h + mdp:/usr/include/bits/thread-shared-types.h + mdp:/usr/include/bits/time.h + mdp:/usr/include/bits/time64.h + mdp:/usr/include/bits/timesize.h + mdp:/usr/include/bits/timex.h + mdp:/usr/include/bits/types.h + mdp:/usr/include/bits/types/FILE.h + mdp:/usr/include/bits/types/__FILE.h + mdp:/usr/include/bits/types/__fpos64_t.h + mdp:/usr/include/bits/types/__fpos_t.h + mdp:/usr/include/bits/types/__locale_t.h + mdp:/usr/include/bits/types/__mbstate_t.h + mdp:/usr/include/bits/types/__sigset_t.h + mdp:/usr/include/bits/types/clock_t.h + mdp:/usr/include/bits/types/clockid_t.h + mdp:/usr/include/bits/types/cookie_io_functions_t.h + mdp:/usr/include/bits/types/error_t.h + mdp:/usr/include/bits/types/locale_t.h + mdp:/usr/include/bits/types/mbstate_t.h + mdp:/usr/include/bits/types/sigset_t.h + mdp:/usr/include/bits/types/struct_FILE.h + mdp:/usr/include/bits/types/struct___jmp_buf_tag.h + mdp:/usr/include/bits/types/struct_itimerspec.h + mdp:/usr/include/bits/types/struct_sched_param.h + mdp:/usr/include/bits/types/struct_timespec.h + mdp:/usr/include/bits/types/struct_timeval.h + mdp:/usr/include/bits/types/struct_tm.h + mdp:/usr/include/bits/types/time_t.h + mdp:/usr/include/bits/types/timer_t.h + mdp:/usr/include/bits/types/wint_t.h + mdp:/usr/include/bits/typesizes.h + mdp:/usr/include/bits/uintn-identity.h + mdp:/usr/include/bits/uio_lim.h + mdp:/usr/include/bits/waitflags.h + mdp:/usr/include/bits/waitstatus.h + mdp:/usr/include/bits/wchar.h + mdp:/usr/include/bits/wctype-wchar.h + mdp:/usr/include/bits/wordsize.h + mdp:/usr/include/bits/xopen_lim.h + mdp:/usr/include/c++/16.1.1/algorithm + mdp:/usr/include/c++/16.1.1/array + mdp:/usr/include/c++/16.1.1/atomic + mdp:/usr/include/c++/16.1.1/backward/auto_ptr.h + mdp:/usr/include/c++/16.1.1/backward/binders.h + mdp:/usr/include/c++/16.1.1/bit + mdp:/usr/include/c++/16.1.1/bits/algorithmfwd.h + mdp:/usr/include/c++/16.1.1/bits/align.h + mdp:/usr/include/c++/16.1.1/bits/alloc_traits.h + mdp:/usr/include/c++/16.1.1/bits/allocated_ptr.h + mdp:/usr/include/c++/16.1.1/bits/allocator.h + mdp:/usr/include/c++/16.1.1/bits/atomic_base.h + mdp:/usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h + mdp:/usr/include/c++/16.1.1/bits/atomic_wait.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.tcc + mdp:/usr/include/c++/16.1.1/bits/basic_string.h + mdp:/usr/include/c++/16.1.1/bits/basic_string.tcc + mdp:/usr/include/c++/16.1.1/bits/binders.h + mdp:/usr/include/c++/16.1.1/bits/char_traits.h + mdp:/usr/include/c++/16.1.1/bits/charconv.h + mdp:/usr/include/c++/16.1.1/bits/chrono.h + mdp:/usr/include/c++/16.1.1/bits/chrono_io.h + mdp:/usr/include/c++/16.1.1/bits/concept_check.h + mdp:/usr/include/c++/16.1.1/bits/cpp_type_traits.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_forced.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_init_exception.h + mdp:/usr/include/c++/16.1.1/bits/enable_special_members.h + mdp:/usr/include/c++/16.1.1/bits/erase_if.h + mdp:/usr/include/c++/16.1.1/bits/exception.h + mdp:/usr/include/c++/16.1.1/bits/exception_defines.h + mdp:/usr/include/c++/16.1.1/bits/exception_ptr.h + mdp:/usr/include/c++/16.1.1/bits/functexcept.h + mdp:/usr/include/c++/16.1.1/bits/functional_hash.h + mdp:/usr/include/c++/16.1.1/bits/hash_bytes.h + mdp:/usr/include/c++/16.1.1/bits/hashtable.h + mdp:/usr/include/c++/16.1.1/bits/hashtable_policy.h + mdp:/usr/include/c++/16.1.1/bits/intcmp.h + mdp:/usr/include/c++/16.1.1/bits/invoke.h + mdp:/usr/include/c++/16.1.1/bits/ios_base.h + mdp:/usr/include/c++/16.1.1/bits/istream.tcc + mdp:/usr/include/c++/16.1.1/bits/iterator_concepts.h + mdp:/usr/include/c++/16.1.1/bits/list.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_classes.h + mdp:/usr/include/c++/16.1.1/bits/locale_classes.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_facets.h + mdp:/usr/include/c++/16.1.1/bits/locale_facets.tcc + mdp:/usr/include/c++/16.1.1/bits/localefwd.h + mdp:/usr/include/c++/16.1.1/bits/max_size_type.h + mdp:/usr/include/c++/16.1.1/bits/memory_resource.h + mdp:/usr/include/c++/16.1.1/bits/memoryfwd.h + mdp:/usr/include/c++/16.1.1/bits/move.h + mdp:/usr/include/c++/16.1.1/bits/nested_exception.h + mdp:/usr/include/c++/16.1.1/bits/new_allocator.h + mdp:/usr/include/c++/16.1.1/bits/new_except.h + mdp:/usr/include/c++/16.1.1/bits/new_throw.h + mdp:/usr/include/c++/16.1.1/bits/node_handle.h + mdp:/usr/include/c++/16.1.1/bits/ostream.h + mdp:/usr/include/c++/16.1.1/bits/ostream.tcc + mdp:/usr/include/c++/16.1.1/bits/ostream_insert.h + mdp:/usr/include/c++/16.1.1/bits/ostream_print.h + mdp:/usr/include/c++/16.1.1/bits/parse_numbers.h + mdp:/usr/include/c++/16.1.1/bits/postypes.h + mdp:/usr/include/c++/16.1.1/bits/predefined_ops.h + mdp:/usr/include/c++/16.1.1/bits/ptr_traits.h + mdp:/usr/include/c++/16.1.1/bits/range_access.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algo.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algobase.h + mdp:/usr/include/c++/16.1.1/bits/ranges_base.h + mdp:/usr/include/c++/16.1.1/bits/ranges_cmp.h + mdp:/usr/include/c++/16.1.1/bits/ranges_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/ranges_util.h + mdp:/usr/include/c++/16.1.1/bits/refwrap.h + mdp:/usr/include/c++/16.1.1/bits/requires_hosted.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_atomic.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_base.h + mdp:/usr/include/c++/16.1.1/bits/specfun.h + mdp:/usr/include/c++/16.1.1/bits/sstream.tcc + mdp:/usr/include/c++/16.1.1/bits/std_abs.h + mdp:/usr/include/c++/16.1.1/bits/std_function.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_except.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throw.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h + mdp:/usr/include/c++/16.1.1/bits/stl_algo.h + mdp:/usr/include/c++/16.1.1/bits/stl_algobase.h + mdp:/usr/include/c++/16.1.1/bits/stl_bvector.h + mdp:/usr/include/c++/16.1.1/bits/stl_construct.h + mdp:/usr/include/c++/16.1.1/bits/stl_function.h + mdp:/usr/include/c++/16.1.1/bits/stl_heap.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_types.h + mdp:/usr/include/c++/16.1.1/bits/stl_list.h + mdp:/usr/include/c++/16.1.1/bits/stl_map.h + mdp:/usr/include/c++/16.1.1/bits/stl_multimap.h + mdp:/usr/include/c++/16.1.1/bits/stl_multiset.h + mdp:/usr/include/c++/16.1.1/bits/stl_numeric.h + mdp:/usr/include/c++/16.1.1/bits/stl_pair.h + mdp:/usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h + mdp:/usr/include/c++/16.1.1/bits/stl_relops.h + mdp:/usr/include/c++/16.1.1/bits/stl_set.h + mdp:/usr/include/c++/16.1.1/bits/stl_tempbuf.h + mdp:/usr/include/c++/16.1.1/bits/stl_tree.h + mdp:/usr/include/c++/16.1.1/bits/stl_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/stl_vector.h + mdp:/usr/include/c++/16.1.1/bits/stream_iterator.h + mdp:/usr/include/c++/16.1.1/bits/streambuf.tcc + mdp:/usr/include/c++/16.1.1/bits/streambuf_iterator.h + mdp:/usr/include/c++/16.1.1/bits/string_view.tcc + mdp:/usr/include/c++/16.1.1/bits/stringfwd.h + mdp:/usr/include/c++/16.1.1/bits/uniform_int_dist.h + mdp:/usr/include/c++/16.1.1/bits/unique_ptr.h + mdp:/usr/include/c++/16.1.1/bits/unordered_map.h + mdp:/usr/include/c++/16.1.1/bits/unordered_set.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator_args.h + mdp:/usr/include/c++/16.1.1/bits/utility.h + mdp:/usr/include/c++/16.1.1/bits/vector.tcc + mdp:/usr/include/c++/16.1.1/bits/version.h + mdp:/usr/include/c++/16.1.1/cassert + mdp:/usr/include/c++/16.1.1/cctype + mdp:/usr/include/c++/16.1.1/cerrno + mdp:/usr/include/c++/16.1.1/charconv + mdp:/usr/include/c++/16.1.1/chrono + mdp:/usr/include/c++/16.1.1/climits + mdp:/usr/include/c++/16.1.1/clocale + mdp:/usr/include/c++/16.1.1/cmath + mdp:/usr/include/c++/16.1.1/compare + mdp:/usr/include/c++/16.1.1/concepts + mdp:/usr/include/c++/16.1.1/cstddef + mdp:/usr/include/c++/16.1.1/cstdint + mdp:/usr/include/c++/16.1.1/cstdio + mdp:/usr/include/c++/16.1.1/cstdlib + mdp:/usr/include/c++/16.1.1/cstring + mdp:/usr/include/c++/16.1.1/ctime + mdp:/usr/include/c++/16.1.1/cwchar + mdp:/usr/include/c++/16.1.1/cwctype + mdp:/usr/include/c++/16.1.1/debug/assertions.h + mdp:/usr/include/c++/16.1.1/debug/debug.h + mdp:/usr/include/c++/16.1.1/exception + mdp:/usr/include/c++/16.1.1/ext/aligned_buffer.h + mdp:/usr/include/c++/16.1.1/ext/alloc_traits.h + mdp:/usr/include/c++/16.1.1/ext/atomicity.h + mdp:/usr/include/c++/16.1.1/ext/concurrence.h + mdp:/usr/include/c++/16.1.1/ext/numeric_traits.h + mdp:/usr/include/c++/16.1.1/ext/string_conversions.h + mdp:/usr/include/c++/16.1.1/ext/type_traits.h + mdp:/usr/include/c++/16.1.1/format + mdp:/usr/include/c++/16.1.1/functional + mdp:/usr/include/c++/16.1.1/initializer_list + mdp:/usr/include/c++/16.1.1/ios + mdp:/usr/include/c++/16.1.1/iosfwd + mdp:/usr/include/c++/16.1.1/istream + mdp:/usr/include/c++/16.1.1/iterator + mdp:/usr/include/c++/16.1.1/limits + mdp:/usr/include/c++/16.1.1/list + mdp:/usr/include/c++/16.1.1/map + mdp:/usr/include/c++/16.1.1/memory + mdp:/usr/include/c++/16.1.1/new + mdp:/usr/include/c++/16.1.1/numeric + mdp:/usr/include/c++/16.1.1/optional + mdp:/usr/include/c++/16.1.1/ostream + mdp:/usr/include/c++/16.1.1/pstl/execution_defs.h + mdp:/usr/include/c++/16.1.1/pstl/glue_numeric_defs.h + mdp:/usr/include/c++/16.1.1/pstl/pstl_config.h + mdp:/usr/include/c++/16.1.1/ratio + mdp:/usr/include/c++/16.1.1/set + mdp:/usr/include/c++/16.1.1/sstream + mdp:/usr/include/c++/16.1.1/stdexcept + mdp:/usr/include/c++/16.1.1/streambuf + mdp:/usr/include/c++/16.1.1/string + mdp:/usr/include/c++/16.1.1/string_view + mdp:/usr/include/c++/16.1.1/system_error + mdp:/usr/include/c++/16.1.1/tr1/bessel_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/beta_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/ell_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/exp_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/gamma.tcc + mdp:/usr/include/c++/16.1.1/tr1/hypergeometric.tcc + mdp:/usr/include/c++/16.1.1/tr1/legendre_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_hermite.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_laguerre.tcc + mdp:/usr/include/c++/16.1.1/tr1/riemann_zeta.tcc + mdp:/usr/include/c++/16.1.1/tr1/special_function_util.h + mdp:/usr/include/c++/16.1.1/tuple + mdp:/usr/include/c++/16.1.1/type_traits + mdp:/usr/include/c++/16.1.1/typeinfo + mdp:/usr/include/c++/16.1.1/unordered_map + mdp:/usr/include/c++/16.1.1/unordered_set + mdp:/usr/include/c++/16.1.1/utility + mdp:/usr/include/c++/16.1.1/variant + mdp:/usr/include/c++/16.1.1/vector + mdp:/usr/include/c++/16.1.1/version + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h + mdp:/usr/include/ctype.h + mdp:/usr/include/endian.h + mdp:/usr/include/errno.h + mdp:/usr/include/features-time64.h + mdp:/usr/include/features.h + mdp:/usr/include/gnu/stubs-64.h + mdp:/usr/include/gnu/stubs.h + mdp:/usr/include/limits.h + mdp:/usr/include/linux/errno.h + mdp:/usr/include/linux/limits.h + mdp:/usr/include/linux/posix_types.h + mdp:/usr/include/linux/sched/types.h + mdp:/usr/include/linux/stddef.h + mdp:/usr/include/linux/types.h + mdp:/usr/include/locale.h + mdp:/usr/include/pthread.h + mdp:/usr/include/qt6/QtCore/QMap + mdp:/usr/include/qt6/QtCore/q17memory.h + mdp:/usr/include/qt6/QtCore/q20bit.h + mdp:/usr/include/qt6/QtCore/q20functional.h + mdp:/usr/include/qt6/QtCore/q20iterator.h + mdp:/usr/include/qt6/QtCore/q20memory.h + mdp:/usr/include/qt6/QtCore/q20type_traits.h + mdp:/usr/include/qt6/QtCore/q20utility.h + mdp:/usr/include/qt6/QtCore/q23type_traits.h + mdp:/usr/include/qt6/QtCore/q23utility.h + mdp:/usr/include/qt6/QtCore/qalgorithms.h + mdp:/usr/include/qt6/QtCore/qalloc.h + mdp:/usr/include/qt6/QtCore/qanystringview.h + mdp:/usr/include/qt6/QtCore/qarraydata.h + mdp:/usr/include/qt6/QtCore/qarraydataops.h + mdp:/usr/include/qt6/QtCore/qarraydatapointer.h + mdp:/usr/include/qt6/QtCore/qassert.h + mdp:/usr/include/qt6/QtCore/qatomic.h + mdp:/usr/include/qt6/QtCore/qatomic_cxx11.h + mdp:/usr/include/qt6/QtCore/qbasicatomic.h + mdp:/usr/include/qt6/QtCore/qbindingstorage.h + mdp:/usr/include/qt6/QtCore/qbytearray.h + mdp:/usr/include/qt6/QtCore/qbytearrayalgorithms.h + mdp:/usr/include/qt6/QtCore/qbytearraylist.h + mdp:/usr/include/qt6/QtCore/qbytearrayview.h + mdp:/usr/include/qt6/QtCore/qchar.h + mdp:/usr/include/qt6/QtCore/qcheckedint_impl.h + mdp:/usr/include/qt6/QtCore/qcompare.h + mdp:/usr/include/qt6/QtCore/qcompare_impl.h + mdp:/usr/include/qt6/QtCore/qcomparehelpers.h + mdp:/usr/include/qt6/QtCore/qcompilerdetection.h + mdp:/usr/include/qt6/QtCore/qconfig.h + mdp:/usr/include/qt6/QtCore/qconstructormacros.h + mdp:/usr/include/qt6/QtCore/qcontainerfwd.h + mdp:/usr/include/qt6/QtCore/qcontainerinfo.h + mdp:/usr/include/qt6/QtCore/qcontainertools_impl.h + mdp:/usr/include/qt6/QtCore/qcontiguouscache.h + mdp:/usr/include/qt6/QtCore/qdarwinhelpers.h + mdp:/usr/include/qt6/QtCore/qdatastream.h + mdp:/usr/include/qt6/QtCore/qdebug.h + mdp:/usr/include/qt6/QtCore/qendian.h + mdp:/usr/include/qt6/QtCore/qexceptionhandling.h + mdp:/usr/include/qt6/QtCore/qflags.h + mdp:/usr/include/qt6/QtCore/qfloat16.h + mdp:/usr/include/qt6/QtCore/qforeach.h + mdp:/usr/include/qt6/QtCore/qfunctionaltools_impl.h + mdp:/usr/include/qt6/QtCore/qfunctionpointer.h + mdp:/usr/include/qt6/QtCore/qgenericatomic.h + mdp:/usr/include/qt6/QtCore/qglobal.h + mdp:/usr/include/qt6/QtCore/qglobalstatic.h + mdp:/usr/include/qt6/QtCore/qhash.h + mdp:/usr/include/qt6/QtCore/qhashfunctions.h + mdp:/usr/include/qt6/QtCore/qiodevice.h + mdp:/usr/include/qt6/QtCore/qiodevicebase.h + mdp:/usr/include/qt6/QtCore/qiterable.h + mdp:/usr/include/qt6/QtCore/qiterator.h + mdp:/usr/include/qt6/QtCore/qlatin1stringview.h + mdp:/usr/include/qt6/QtCore/qline.h + mdp:/usr/include/qt6/QtCore/qlist.h + mdp:/usr/include/qt6/QtCore/qlogging.h + mdp:/usr/include/qt6/QtCore/qmalloc.h + mdp:/usr/include/qt6/QtCore/qmap.h + mdp:/usr/include/qt6/QtCore/qmargins.h + mdp:/usr/include/qt6/QtCore/qmath.h + mdp:/usr/include/qt6/QtCore/qmetacontainer.h + mdp:/usr/include/qt6/QtCore/qmetatype.h + mdp:/usr/include/qt6/QtCore/qminmax.h + mdp:/usr/include/qt6/QtCore/qnamespace.h + mdp:/usr/include/qt6/QtCore/qnumeric.h + mdp:/usr/include/qt6/QtCore/qobject.h + mdp:/usr/include/qt6/QtCore/qobject_impl.h + mdp:/usr/include/qt6/QtCore/qobjectdefs.h + mdp:/usr/include/qt6/QtCore/qobjectdefs_impl.h + mdp:/usr/include/qt6/QtCore/qoverload.h + mdp:/usr/include/qt6/QtCore/qpair.h + mdp:/usr/include/qt6/QtCore/qpoint.h + mdp:/usr/include/qt6/QtCore/qprocessordetection.h + mdp:/usr/include/qt6/QtCore/qrect.h + mdp:/usr/include/qt6/QtCore/qrefcount.h + mdp:/usr/include/qt6/QtCore/qscopedpointer.h + mdp:/usr/include/qt6/QtCore/qscopeguard.h + mdp:/usr/include/qt6/QtCore/qset.h + mdp:/usr/include/qt6/QtCore/qshareddata.h + mdp:/usr/include/qt6/QtCore/qshareddata_impl.h + mdp:/usr/include/qt6/QtCore/qsharedpointer.h + mdp:/usr/include/qt6/QtCore/qsharedpointer_impl.h + mdp:/usr/include/qt6/QtCore/qsize.h + mdp:/usr/include/qt6/QtCore/qspan.h + mdp:/usr/include/qt6/QtCore/qstdlibdetection.h + mdp:/usr/include/qt6/QtCore/qstring.h + mdp:/usr/include/qt6/QtCore/qstringalgorithms.h + mdp:/usr/include/qt6/QtCore/qstringbuilder.h + mdp:/usr/include/qt6/QtCore/qstringconverter.h + mdp:/usr/include/qt6/QtCore/qstringconverter_base.h + mdp:/usr/include/qt6/QtCore/qstringfwd.h + mdp:/usr/include/qt6/QtCore/qstringlist.h + mdp:/usr/include/qt6/QtCore/qstringmatcher.h + mdp:/usr/include/qt6/QtCore/qstringtokenizer.h + mdp:/usr/include/qt6/QtCore/qstringview.h + mdp:/usr/include/qt6/QtCore/qswap.h + mdp:/usr/include/qt6/QtCore/qsysinfo.h + mdp:/usr/include/qt6/QtCore/qsystemdetection.h + mdp:/usr/include/qt6/QtCore/qtaggedpointer.h + mdp:/usr/include/qt6/QtCore/qtclasshelpermacros.h + mdp:/usr/include/qt6/QtCore/qtconfiginclude.h + mdp:/usr/include/qt6/QtCore/qtconfigmacros.h + mdp:/usr/include/qt6/QtCore/qtcore-config.h + mdp:/usr/include/qt6/QtCore/qtcoreexports.h + mdp:/usr/include/qt6/QtCore/qtcoreglobal.h + mdp:/usr/include/qt6/QtCore/qtdeprecationdefinitions.h + mdp:/usr/include/qt6/QtCore/qtdeprecationmarkers.h + mdp:/usr/include/qt6/QtCore/qtenvironmentvariables.h + mdp:/usr/include/qt6/QtCore/qtextstream.h + mdp:/usr/include/qt6/QtCore/qtformat_impl.h + mdp:/usr/include/qt6/QtCore/qtmetamacros.h + mdp:/usr/include/qt6/QtCore/qtnoop.h + mdp:/usr/include/qt6/QtCore/qtpreprocessorsupport.h + mdp:/usr/include/qt6/QtCore/qtresource.h + mdp:/usr/include/qt6/QtCore/qttranslation.h + mdp:/usr/include/qt6/QtCore/qttypetraits.h + mdp:/usr/include/qt6/QtCore/qtversion.h + mdp:/usr/include/qt6/QtCore/qtversionchecks.h + mdp:/usr/include/qt6/QtCore/qtypeinfo.h + mdp:/usr/include/qt6/QtCore/qtypes.h + mdp:/usr/include/qt6/QtCore/qurl.h + mdp:/usr/include/qt6/QtCore/qutf8stringview.h + mdp:/usr/include/qt6/QtCore/qvariant.h + mdp:/usr/include/qt6/QtCore/qvarlengtharray.h + mdp:/usr/include/qt6/QtCore/qversiontagging.h + mdp:/usr/include/qt6/QtCore/qxptype_traits.h + mdp:/usr/include/qt6/QtCore/qyieldcpu.h + mdp:/usr/include/qt6/QtGui/qaction.h + mdp:/usr/include/qt6/QtGui/qbitmap.h + mdp:/usr/include/qt6/QtGui/qbrush.h + mdp:/usr/include/qt6/QtGui/qcolor.h + mdp:/usr/include/qt6/QtGui/qcursor.h + mdp:/usr/include/qt6/QtGui/qfont.h + mdp:/usr/include/qt6/QtGui/qfontinfo.h + mdp:/usr/include/qt6/QtGui/qfontmetrics.h + mdp:/usr/include/qt6/QtGui/qfontvariableaxis.h + mdp:/usr/include/qt6/QtGui/qicon.h + mdp:/usr/include/qt6/QtGui/qimage.h + mdp:/usr/include/qt6/QtGui/qkeysequence.h + mdp:/usr/include/qt6/QtGui/qpaintdevice.h + mdp:/usr/include/qt6/QtGui/qpalette.h + mdp:/usr/include/qt6/QtGui/qpicture.h + mdp:/usr/include/qt6/QtGui/qpixelformat.h + mdp:/usr/include/qt6/QtGui/qpixmap.h + mdp:/usr/include/qt6/QtGui/qpolygon.h + mdp:/usr/include/qt6/QtGui/qregion.h + mdp:/usr/include/qt6/QtGui/qrgb.h + mdp:/usr/include/qt6/QtGui/qrgba64.h + mdp:/usr/include/qt6/QtGui/qtextdocument.h + mdp:/usr/include/qt6/QtGui/qtgui-config.h + mdp:/usr/include/qt6/QtGui/qtguiexports.h + mdp:/usr/include/qt6/QtGui/qtguiglobal.h + mdp:/usr/include/qt6/QtGui/qtransform.h + mdp:/usr/include/qt6/QtGui/qwindowdefs.h + mdp:/usr/include/qt6/QtWidgets/QLabel + mdp:/usr/include/qt6/QtWidgets/QWidget + mdp:/usr/include/qt6/QtWidgets/qframe.h + mdp:/usr/include/qt6/QtWidgets/qlabel.h + mdp:/usr/include/qt6/QtWidgets/qsizepolicy.h + mdp:/usr/include/qt6/QtWidgets/qtwidgets-config.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsexports.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsglobal.h + mdp:/usr/include/qt6/QtWidgets/qwidget.h + mdp:/usr/include/sched.h + mdp:/usr/include/stdc-predef.h + mdp:/usr/include/stdint.h + mdp:/usr/include/stdio.h + mdp:/usr/include/stdlib.h + mdp:/usr/include/string.h + mdp:/usr/include/strings.h + mdp:/usr/include/sys/cdefs.h + mdp:/usr/include/sys/select.h + mdp:/usr/include/sys/single_threaded.h + mdp:/usr/include/sys/types.h + mdp:/usr/include/time.h + mdp:/usr/include/wchar.h + mdp:/usr/include/wctype.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginStatusBar.cpp +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FindReplacePanel.h + mmc:Q_OBJECT + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FindReplacePanel.h + mdp:/usr/include/alloca.h + mdp:/usr/include/asm-generic/bitsperlong.h + mdp:/usr/include/asm-generic/errno-base.h + mdp:/usr/include/asm-generic/errno.h + mdp:/usr/include/asm-generic/int-ll64.h + mdp:/usr/include/asm-generic/posix_types.h + mdp:/usr/include/asm-generic/types.h + mdp:/usr/include/asm/bitsperlong.h + mdp:/usr/include/asm/errno.h + mdp:/usr/include/asm/posix_types.h + mdp:/usr/include/asm/posix_types_64.h + mdp:/usr/include/asm/types.h + mdp:/usr/include/assert.h + mdp:/usr/include/bits/atomic_wide_counter.h + mdp:/usr/include/bits/byteswap.h + mdp:/usr/include/bits/cpu-set.h + mdp:/usr/include/bits/endian.h + mdp:/usr/include/bits/endianness.h + mdp:/usr/include/bits/errno.h + mdp:/usr/include/bits/floatn-common.h + mdp:/usr/include/bits/floatn.h + mdp:/usr/include/bits/libc-header-start.h + mdp:/usr/include/bits/local_lim.h + mdp:/usr/include/bits/locale.h + mdp:/usr/include/bits/long-double.h + mdp:/usr/include/bits/posix1_lim.h + mdp:/usr/include/bits/posix2_lim.h + mdp:/usr/include/bits/pthread_stack_min-dynamic.h + mdp:/usr/include/bits/pthreadtypes-arch.h + mdp:/usr/include/bits/pthreadtypes.h + mdp:/usr/include/bits/sched.h + mdp:/usr/include/bits/select.h + mdp:/usr/include/bits/setjmp.h + mdp:/usr/include/bits/stdint-intn.h + mdp:/usr/include/bits/stdint-least.h + mdp:/usr/include/bits/stdint-uintn.h + mdp:/usr/include/bits/stdio_lim.h + mdp:/usr/include/bits/stdlib-float.h + mdp:/usr/include/bits/struct_mutex.h + mdp:/usr/include/bits/struct_rwlock.h + mdp:/usr/include/bits/thread-shared-types.h + mdp:/usr/include/bits/time.h + mdp:/usr/include/bits/time64.h + mdp:/usr/include/bits/timesize.h + mdp:/usr/include/bits/timex.h + mdp:/usr/include/bits/types.h + mdp:/usr/include/bits/types/FILE.h + mdp:/usr/include/bits/types/__FILE.h + mdp:/usr/include/bits/types/__fpos64_t.h + mdp:/usr/include/bits/types/__fpos_t.h + mdp:/usr/include/bits/types/__locale_t.h + mdp:/usr/include/bits/types/__mbstate_t.h + mdp:/usr/include/bits/types/__sigset_t.h + mdp:/usr/include/bits/types/clock_t.h + mdp:/usr/include/bits/types/clockid_t.h + mdp:/usr/include/bits/types/cookie_io_functions_t.h + mdp:/usr/include/bits/types/error_t.h + mdp:/usr/include/bits/types/locale_t.h + mdp:/usr/include/bits/types/mbstate_t.h + mdp:/usr/include/bits/types/sigset_t.h + mdp:/usr/include/bits/types/struct_FILE.h + mdp:/usr/include/bits/types/struct___jmp_buf_tag.h + mdp:/usr/include/bits/types/struct_itimerspec.h + mdp:/usr/include/bits/types/struct_sched_param.h + mdp:/usr/include/bits/types/struct_timespec.h + mdp:/usr/include/bits/types/struct_timeval.h + mdp:/usr/include/bits/types/struct_tm.h + mdp:/usr/include/bits/types/time_t.h + mdp:/usr/include/bits/types/timer_t.h + mdp:/usr/include/bits/types/wint_t.h + mdp:/usr/include/bits/typesizes.h + mdp:/usr/include/bits/uintn-identity.h + mdp:/usr/include/bits/uio_lim.h + mdp:/usr/include/bits/waitflags.h + mdp:/usr/include/bits/waitstatus.h + mdp:/usr/include/bits/wchar.h + mdp:/usr/include/bits/wctype-wchar.h + mdp:/usr/include/bits/wordsize.h + mdp:/usr/include/bits/xopen_lim.h + mdp:/usr/include/c++/16.1.1/algorithm + mdp:/usr/include/c++/16.1.1/array + mdp:/usr/include/c++/16.1.1/atomic + mdp:/usr/include/c++/16.1.1/backward/auto_ptr.h + mdp:/usr/include/c++/16.1.1/backward/binders.h + mdp:/usr/include/c++/16.1.1/bit + mdp:/usr/include/c++/16.1.1/bits/algorithmfwd.h + mdp:/usr/include/c++/16.1.1/bits/align.h + mdp:/usr/include/c++/16.1.1/bits/alloc_traits.h + mdp:/usr/include/c++/16.1.1/bits/allocated_ptr.h + mdp:/usr/include/c++/16.1.1/bits/allocator.h + mdp:/usr/include/c++/16.1.1/bits/atomic_base.h + mdp:/usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h + mdp:/usr/include/c++/16.1.1/bits/atomic_wait.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.tcc + mdp:/usr/include/c++/16.1.1/bits/basic_string.h + mdp:/usr/include/c++/16.1.1/bits/basic_string.tcc + mdp:/usr/include/c++/16.1.1/bits/binders.h + mdp:/usr/include/c++/16.1.1/bits/char_traits.h + mdp:/usr/include/c++/16.1.1/bits/charconv.h + mdp:/usr/include/c++/16.1.1/bits/chrono.h + mdp:/usr/include/c++/16.1.1/bits/chrono_io.h + mdp:/usr/include/c++/16.1.1/bits/concept_check.h + mdp:/usr/include/c++/16.1.1/bits/cpp_type_traits.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_forced.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_init_exception.h + mdp:/usr/include/c++/16.1.1/bits/enable_special_members.h + mdp:/usr/include/c++/16.1.1/bits/erase_if.h + mdp:/usr/include/c++/16.1.1/bits/exception.h + mdp:/usr/include/c++/16.1.1/bits/exception_defines.h + mdp:/usr/include/c++/16.1.1/bits/exception_ptr.h + mdp:/usr/include/c++/16.1.1/bits/functexcept.h + mdp:/usr/include/c++/16.1.1/bits/functional_hash.h + mdp:/usr/include/c++/16.1.1/bits/hash_bytes.h + mdp:/usr/include/c++/16.1.1/bits/hashtable.h + mdp:/usr/include/c++/16.1.1/bits/hashtable_policy.h + mdp:/usr/include/c++/16.1.1/bits/intcmp.h + mdp:/usr/include/c++/16.1.1/bits/invoke.h + mdp:/usr/include/c++/16.1.1/bits/ios_base.h + mdp:/usr/include/c++/16.1.1/bits/istream.tcc + mdp:/usr/include/c++/16.1.1/bits/iterator_concepts.h + mdp:/usr/include/c++/16.1.1/bits/list.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_classes.h + mdp:/usr/include/c++/16.1.1/bits/locale_classes.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_facets.h + mdp:/usr/include/c++/16.1.1/bits/locale_facets.tcc + mdp:/usr/include/c++/16.1.1/bits/localefwd.h + mdp:/usr/include/c++/16.1.1/bits/max_size_type.h + mdp:/usr/include/c++/16.1.1/bits/memory_resource.h + mdp:/usr/include/c++/16.1.1/bits/memoryfwd.h + mdp:/usr/include/c++/16.1.1/bits/move.h + mdp:/usr/include/c++/16.1.1/bits/nested_exception.h + mdp:/usr/include/c++/16.1.1/bits/new_allocator.h + mdp:/usr/include/c++/16.1.1/bits/new_except.h + mdp:/usr/include/c++/16.1.1/bits/new_throw.h + mdp:/usr/include/c++/16.1.1/bits/node_handle.h + mdp:/usr/include/c++/16.1.1/bits/ostream.h + mdp:/usr/include/c++/16.1.1/bits/ostream.tcc + mdp:/usr/include/c++/16.1.1/bits/ostream_insert.h + mdp:/usr/include/c++/16.1.1/bits/ostream_print.h + mdp:/usr/include/c++/16.1.1/bits/parse_numbers.h + mdp:/usr/include/c++/16.1.1/bits/postypes.h + mdp:/usr/include/c++/16.1.1/bits/predefined_ops.h + mdp:/usr/include/c++/16.1.1/bits/ptr_traits.h + mdp:/usr/include/c++/16.1.1/bits/range_access.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algo.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algobase.h + mdp:/usr/include/c++/16.1.1/bits/ranges_base.h + mdp:/usr/include/c++/16.1.1/bits/ranges_cmp.h + mdp:/usr/include/c++/16.1.1/bits/ranges_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/ranges_util.h + mdp:/usr/include/c++/16.1.1/bits/refwrap.h + mdp:/usr/include/c++/16.1.1/bits/requires_hosted.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_atomic.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_base.h + mdp:/usr/include/c++/16.1.1/bits/specfun.h + mdp:/usr/include/c++/16.1.1/bits/sstream.tcc + mdp:/usr/include/c++/16.1.1/bits/std_abs.h + mdp:/usr/include/c++/16.1.1/bits/std_function.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_except.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throw.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h + mdp:/usr/include/c++/16.1.1/bits/stl_algo.h + mdp:/usr/include/c++/16.1.1/bits/stl_algobase.h + mdp:/usr/include/c++/16.1.1/bits/stl_bvector.h + mdp:/usr/include/c++/16.1.1/bits/stl_construct.h + mdp:/usr/include/c++/16.1.1/bits/stl_function.h + mdp:/usr/include/c++/16.1.1/bits/stl_heap.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_types.h + mdp:/usr/include/c++/16.1.1/bits/stl_list.h + mdp:/usr/include/c++/16.1.1/bits/stl_map.h + mdp:/usr/include/c++/16.1.1/bits/stl_multimap.h + mdp:/usr/include/c++/16.1.1/bits/stl_multiset.h + mdp:/usr/include/c++/16.1.1/bits/stl_numeric.h + mdp:/usr/include/c++/16.1.1/bits/stl_pair.h + mdp:/usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h + mdp:/usr/include/c++/16.1.1/bits/stl_relops.h + mdp:/usr/include/c++/16.1.1/bits/stl_set.h + mdp:/usr/include/c++/16.1.1/bits/stl_tempbuf.h + mdp:/usr/include/c++/16.1.1/bits/stl_tree.h + mdp:/usr/include/c++/16.1.1/bits/stl_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/stl_vector.h + mdp:/usr/include/c++/16.1.1/bits/stream_iterator.h + mdp:/usr/include/c++/16.1.1/bits/streambuf.tcc + mdp:/usr/include/c++/16.1.1/bits/streambuf_iterator.h + mdp:/usr/include/c++/16.1.1/bits/string_view.tcc + mdp:/usr/include/c++/16.1.1/bits/stringfwd.h + mdp:/usr/include/c++/16.1.1/bits/uniform_int_dist.h + mdp:/usr/include/c++/16.1.1/bits/unique_ptr.h + mdp:/usr/include/c++/16.1.1/bits/unordered_map.h + mdp:/usr/include/c++/16.1.1/bits/unordered_set.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator_args.h + mdp:/usr/include/c++/16.1.1/bits/utility.h + mdp:/usr/include/c++/16.1.1/bits/vector.tcc + mdp:/usr/include/c++/16.1.1/bits/version.h + mdp:/usr/include/c++/16.1.1/cassert + mdp:/usr/include/c++/16.1.1/cctype + mdp:/usr/include/c++/16.1.1/cerrno + mdp:/usr/include/c++/16.1.1/charconv + mdp:/usr/include/c++/16.1.1/chrono + mdp:/usr/include/c++/16.1.1/climits + mdp:/usr/include/c++/16.1.1/clocale + mdp:/usr/include/c++/16.1.1/cmath + mdp:/usr/include/c++/16.1.1/compare + mdp:/usr/include/c++/16.1.1/concepts + mdp:/usr/include/c++/16.1.1/cstddef + mdp:/usr/include/c++/16.1.1/cstdint + mdp:/usr/include/c++/16.1.1/cstdio + mdp:/usr/include/c++/16.1.1/cstdlib + mdp:/usr/include/c++/16.1.1/cstring + mdp:/usr/include/c++/16.1.1/ctime + mdp:/usr/include/c++/16.1.1/cwchar + mdp:/usr/include/c++/16.1.1/cwctype + mdp:/usr/include/c++/16.1.1/debug/assertions.h + mdp:/usr/include/c++/16.1.1/debug/debug.h + mdp:/usr/include/c++/16.1.1/exception + mdp:/usr/include/c++/16.1.1/ext/aligned_buffer.h + mdp:/usr/include/c++/16.1.1/ext/alloc_traits.h + mdp:/usr/include/c++/16.1.1/ext/atomicity.h + mdp:/usr/include/c++/16.1.1/ext/concurrence.h + mdp:/usr/include/c++/16.1.1/ext/numeric_traits.h + mdp:/usr/include/c++/16.1.1/ext/string_conversions.h + mdp:/usr/include/c++/16.1.1/ext/type_traits.h + mdp:/usr/include/c++/16.1.1/format + mdp:/usr/include/c++/16.1.1/functional + mdp:/usr/include/c++/16.1.1/initializer_list + mdp:/usr/include/c++/16.1.1/ios + mdp:/usr/include/c++/16.1.1/iosfwd + mdp:/usr/include/c++/16.1.1/istream + mdp:/usr/include/c++/16.1.1/iterator + mdp:/usr/include/c++/16.1.1/limits + mdp:/usr/include/c++/16.1.1/list + mdp:/usr/include/c++/16.1.1/map + mdp:/usr/include/c++/16.1.1/memory + mdp:/usr/include/c++/16.1.1/new + mdp:/usr/include/c++/16.1.1/numeric + mdp:/usr/include/c++/16.1.1/optional + mdp:/usr/include/c++/16.1.1/ostream + mdp:/usr/include/c++/16.1.1/pstl/execution_defs.h + mdp:/usr/include/c++/16.1.1/pstl/glue_numeric_defs.h + mdp:/usr/include/c++/16.1.1/pstl/pstl_config.h + mdp:/usr/include/c++/16.1.1/ratio + mdp:/usr/include/c++/16.1.1/set + mdp:/usr/include/c++/16.1.1/sstream + mdp:/usr/include/c++/16.1.1/stdexcept + mdp:/usr/include/c++/16.1.1/streambuf + mdp:/usr/include/c++/16.1.1/string + mdp:/usr/include/c++/16.1.1/string_view + mdp:/usr/include/c++/16.1.1/system_error + mdp:/usr/include/c++/16.1.1/tr1/bessel_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/beta_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/ell_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/exp_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/gamma.tcc + mdp:/usr/include/c++/16.1.1/tr1/hypergeometric.tcc + mdp:/usr/include/c++/16.1.1/tr1/legendre_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_hermite.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_laguerre.tcc + mdp:/usr/include/c++/16.1.1/tr1/riemann_zeta.tcc + mdp:/usr/include/c++/16.1.1/tr1/special_function_util.h + mdp:/usr/include/c++/16.1.1/tuple + mdp:/usr/include/c++/16.1.1/type_traits + mdp:/usr/include/c++/16.1.1/typeinfo + mdp:/usr/include/c++/16.1.1/unordered_map + mdp:/usr/include/c++/16.1.1/unordered_set + mdp:/usr/include/c++/16.1.1/utility + mdp:/usr/include/c++/16.1.1/variant + mdp:/usr/include/c++/16.1.1/vector + mdp:/usr/include/c++/16.1.1/version + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h + mdp:/usr/include/ctype.h + mdp:/usr/include/endian.h + mdp:/usr/include/errno.h + mdp:/usr/include/features-time64.h + mdp:/usr/include/features.h + mdp:/usr/include/gnu/stubs-64.h + mdp:/usr/include/gnu/stubs.h + mdp:/usr/include/limits.h + mdp:/usr/include/linux/errno.h + mdp:/usr/include/linux/limits.h + mdp:/usr/include/linux/posix_types.h + mdp:/usr/include/linux/sched/types.h + mdp:/usr/include/linux/stddef.h + mdp:/usr/include/linux/types.h + mdp:/usr/include/locale.h + mdp:/usr/include/pthread.h + mdp:/usr/include/qt6/QtCore/q17memory.h + mdp:/usr/include/qt6/QtCore/q20bit.h + mdp:/usr/include/qt6/QtCore/q20functional.h + mdp:/usr/include/qt6/QtCore/q20iterator.h + mdp:/usr/include/qt6/QtCore/q20memory.h + mdp:/usr/include/qt6/QtCore/q20type_traits.h + mdp:/usr/include/qt6/QtCore/q20utility.h + mdp:/usr/include/qt6/QtCore/q23type_traits.h + mdp:/usr/include/qt6/QtCore/q23utility.h + mdp:/usr/include/qt6/QtCore/qalgorithms.h + mdp:/usr/include/qt6/QtCore/qalloc.h + mdp:/usr/include/qt6/QtCore/qanystringview.h + mdp:/usr/include/qt6/QtCore/qarraydata.h + mdp:/usr/include/qt6/QtCore/qarraydataops.h + mdp:/usr/include/qt6/QtCore/qarraydatapointer.h + mdp:/usr/include/qt6/QtCore/qassert.h + mdp:/usr/include/qt6/QtCore/qatomic.h + mdp:/usr/include/qt6/QtCore/qatomic_cxx11.h + mdp:/usr/include/qt6/QtCore/qbasicatomic.h + mdp:/usr/include/qt6/QtCore/qbindingstorage.h + mdp:/usr/include/qt6/QtCore/qbytearray.h + mdp:/usr/include/qt6/QtCore/qbytearrayalgorithms.h + mdp:/usr/include/qt6/QtCore/qbytearraylist.h + mdp:/usr/include/qt6/QtCore/qbytearrayview.h + mdp:/usr/include/qt6/QtCore/qchar.h + mdp:/usr/include/qt6/QtCore/qcheckedint_impl.h + mdp:/usr/include/qt6/QtCore/qcompare.h + mdp:/usr/include/qt6/QtCore/qcompare_impl.h + mdp:/usr/include/qt6/QtCore/qcomparehelpers.h + mdp:/usr/include/qt6/QtCore/qcompilerdetection.h + mdp:/usr/include/qt6/QtCore/qconfig.h + mdp:/usr/include/qt6/QtCore/qconstructormacros.h + mdp:/usr/include/qt6/QtCore/qcontainerfwd.h + mdp:/usr/include/qt6/QtCore/qcontainerinfo.h + mdp:/usr/include/qt6/QtCore/qcontainertools_impl.h + mdp:/usr/include/qt6/QtCore/qcontiguouscache.h + mdp:/usr/include/qt6/QtCore/qdarwinhelpers.h + mdp:/usr/include/qt6/QtCore/qdatastream.h + mdp:/usr/include/qt6/QtCore/qdebug.h + mdp:/usr/include/qt6/QtCore/qendian.h + mdp:/usr/include/qt6/QtCore/qexceptionhandling.h + mdp:/usr/include/qt6/QtCore/qflags.h + mdp:/usr/include/qt6/QtCore/qfloat16.h + mdp:/usr/include/qt6/QtCore/qforeach.h + mdp:/usr/include/qt6/QtCore/qfunctionaltools_impl.h + mdp:/usr/include/qt6/QtCore/qfunctionpointer.h + mdp:/usr/include/qt6/QtCore/qgenericatomic.h + mdp:/usr/include/qt6/QtCore/qglobal.h + mdp:/usr/include/qt6/QtCore/qglobalstatic.h + mdp:/usr/include/qt6/QtCore/qhash.h + mdp:/usr/include/qt6/QtCore/qhashfunctions.h + mdp:/usr/include/qt6/QtCore/qiodevicebase.h + mdp:/usr/include/qt6/QtCore/qiterable.h + mdp:/usr/include/qt6/QtCore/qiterator.h + mdp:/usr/include/qt6/QtCore/qlatin1stringview.h + mdp:/usr/include/qt6/QtCore/qline.h + mdp:/usr/include/qt6/QtCore/qlist.h + mdp:/usr/include/qt6/QtCore/qlogging.h + mdp:/usr/include/qt6/QtCore/qmalloc.h + mdp:/usr/include/qt6/QtCore/qmap.h + mdp:/usr/include/qt6/QtCore/qmargins.h + mdp:/usr/include/qt6/QtCore/qmath.h + mdp:/usr/include/qt6/QtCore/qmetacontainer.h + mdp:/usr/include/qt6/QtCore/qmetatype.h + mdp:/usr/include/qt6/QtCore/qminmax.h + mdp:/usr/include/qt6/QtCore/qnamespace.h + mdp:/usr/include/qt6/QtCore/qnumeric.h + mdp:/usr/include/qt6/QtCore/qobject.h + mdp:/usr/include/qt6/QtCore/qobject_impl.h + mdp:/usr/include/qt6/QtCore/qobjectdefs.h + mdp:/usr/include/qt6/QtCore/qobjectdefs_impl.h + mdp:/usr/include/qt6/QtCore/qoverload.h + mdp:/usr/include/qt6/QtCore/qpair.h + mdp:/usr/include/qt6/QtCore/qpoint.h + mdp:/usr/include/qt6/QtCore/qprocessordetection.h + mdp:/usr/include/qt6/QtCore/qrect.h + mdp:/usr/include/qt6/QtCore/qrefcount.h + mdp:/usr/include/qt6/QtCore/qscopedpointer.h + mdp:/usr/include/qt6/QtCore/qscopeguard.h + mdp:/usr/include/qt6/QtCore/qset.h + mdp:/usr/include/qt6/QtCore/qshareddata.h + mdp:/usr/include/qt6/QtCore/qshareddata_impl.h + mdp:/usr/include/qt6/QtCore/qsharedpointer.h + mdp:/usr/include/qt6/QtCore/qsharedpointer_impl.h + mdp:/usr/include/qt6/QtCore/qsize.h + mdp:/usr/include/qt6/QtCore/qspan.h + mdp:/usr/include/qt6/QtCore/qstdlibdetection.h + mdp:/usr/include/qt6/QtCore/qstring.h + mdp:/usr/include/qt6/QtCore/qstringalgorithms.h + mdp:/usr/include/qt6/QtCore/qstringbuilder.h + mdp:/usr/include/qt6/QtCore/qstringconverter.h + mdp:/usr/include/qt6/QtCore/qstringconverter_base.h + mdp:/usr/include/qt6/QtCore/qstringfwd.h + mdp:/usr/include/qt6/QtCore/qstringlist.h + mdp:/usr/include/qt6/QtCore/qstringmatcher.h + mdp:/usr/include/qt6/QtCore/qstringtokenizer.h + mdp:/usr/include/qt6/QtCore/qstringview.h + mdp:/usr/include/qt6/QtCore/qswap.h + mdp:/usr/include/qt6/QtCore/qsysinfo.h + mdp:/usr/include/qt6/QtCore/qsystemdetection.h + mdp:/usr/include/qt6/QtCore/qtaggedpointer.h + mdp:/usr/include/qt6/QtCore/qtclasshelpermacros.h + mdp:/usr/include/qt6/QtCore/qtconfiginclude.h + mdp:/usr/include/qt6/QtCore/qtconfigmacros.h + mdp:/usr/include/qt6/QtCore/qtcore-config.h + mdp:/usr/include/qt6/QtCore/qtcoreexports.h + mdp:/usr/include/qt6/QtCore/qtcoreglobal.h + mdp:/usr/include/qt6/QtCore/qtdeprecationdefinitions.h + mdp:/usr/include/qt6/QtCore/qtdeprecationmarkers.h + mdp:/usr/include/qt6/QtCore/qtenvironmentvariables.h + mdp:/usr/include/qt6/QtCore/qtextstream.h + mdp:/usr/include/qt6/QtCore/qtformat_impl.h + mdp:/usr/include/qt6/QtCore/qtmetamacros.h + mdp:/usr/include/qt6/QtCore/qtnoop.h + mdp:/usr/include/qt6/QtCore/qtpreprocessorsupport.h + mdp:/usr/include/qt6/QtCore/qtresource.h + mdp:/usr/include/qt6/QtCore/qttranslation.h + mdp:/usr/include/qt6/QtCore/qttypetraits.h + mdp:/usr/include/qt6/QtCore/qtversion.h + mdp:/usr/include/qt6/QtCore/qtversionchecks.h + mdp:/usr/include/qt6/QtCore/qtypeinfo.h + mdp:/usr/include/qt6/QtCore/qtypes.h + mdp:/usr/include/qt6/QtCore/qutf8stringview.h + mdp:/usr/include/qt6/QtCore/qvariant.h + mdp:/usr/include/qt6/QtCore/qvarlengtharray.h + mdp:/usr/include/qt6/QtCore/qversiontagging.h + mdp:/usr/include/qt6/QtCore/qxptype_traits.h + mdp:/usr/include/qt6/QtCore/qyieldcpu.h + mdp:/usr/include/qt6/QtGui/qaction.h + mdp:/usr/include/qt6/QtGui/qbitmap.h + mdp:/usr/include/qt6/QtGui/qbrush.h + mdp:/usr/include/qt6/QtGui/qcolor.h + mdp:/usr/include/qt6/QtGui/qcursor.h + mdp:/usr/include/qt6/QtGui/qfont.h + mdp:/usr/include/qt6/QtGui/qfontinfo.h + mdp:/usr/include/qt6/QtGui/qfontmetrics.h + mdp:/usr/include/qt6/QtGui/qfontvariableaxis.h + mdp:/usr/include/qt6/QtGui/qicon.h + mdp:/usr/include/qt6/QtGui/qimage.h + mdp:/usr/include/qt6/QtGui/qkeysequence.h + mdp:/usr/include/qt6/QtGui/qpaintdevice.h + mdp:/usr/include/qt6/QtGui/qpalette.h + mdp:/usr/include/qt6/QtGui/qpixelformat.h + mdp:/usr/include/qt6/QtGui/qpixmap.h + mdp:/usr/include/qt6/QtGui/qpolygon.h + mdp:/usr/include/qt6/QtGui/qregion.h + mdp:/usr/include/qt6/QtGui/qrgb.h + mdp:/usr/include/qt6/QtGui/qrgba64.h + mdp:/usr/include/qt6/QtGui/qtgui-config.h + mdp:/usr/include/qt6/QtGui/qtguiexports.h + mdp:/usr/include/qt6/QtGui/qtguiglobal.h + mdp:/usr/include/qt6/QtGui/qtransform.h + mdp:/usr/include/qt6/QtGui/qwindowdefs.h + mdp:/usr/include/qt6/QtWidgets/QWidget + mdp:/usr/include/qt6/QtWidgets/qsizepolicy.h + mdp:/usr/include/qt6/QtWidgets/qtwidgets-config.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsexports.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsglobal.h + mdp:/usr/include/qt6/QtWidgets/qwidget.h + mdp:/usr/include/sched.h + mdp:/usr/include/stdc-predef.h + mdp:/usr/include/stdint.h + mdp:/usr/include/stdio.h + mdp:/usr/include/stdlib.h + mdp:/usr/include/string.h + mdp:/usr/include/strings.h + mdp:/usr/include/sys/cdefs.h + mdp:/usr/include/sys/select.h + mdp:/usr/include/sys/single_threaded.h + mdp:/usr/include/sys/types.h + mdp:/usr/include/time.h + mdp:/usr/include/wchar.h + mdp:/usr/include/wctype.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginSplitView.cpp +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ThemeManager.h +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FocusManager.h + mmc:Q_OBJECT + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FocusManager.h + mdp:/usr/include/alloca.h + mdp:/usr/include/asm-generic/bitsperlong.h + mdp:/usr/include/asm-generic/errno-base.h + mdp:/usr/include/asm-generic/errno.h + mdp:/usr/include/asm-generic/int-ll64.h + mdp:/usr/include/asm-generic/posix_types.h + mdp:/usr/include/asm-generic/types.h + mdp:/usr/include/asm/bitsperlong.h + mdp:/usr/include/asm/errno.h + mdp:/usr/include/asm/posix_types.h + mdp:/usr/include/asm/posix_types_64.h + mdp:/usr/include/asm/types.h + mdp:/usr/include/assert.h + mdp:/usr/include/bits/atomic_wide_counter.h + mdp:/usr/include/bits/byteswap.h + mdp:/usr/include/bits/cpu-set.h + mdp:/usr/include/bits/endian.h + mdp:/usr/include/bits/endianness.h + mdp:/usr/include/bits/errno.h + mdp:/usr/include/bits/floatn-common.h + mdp:/usr/include/bits/floatn.h + mdp:/usr/include/bits/libc-header-start.h + mdp:/usr/include/bits/local_lim.h + mdp:/usr/include/bits/locale.h + mdp:/usr/include/bits/long-double.h + mdp:/usr/include/bits/posix1_lim.h + mdp:/usr/include/bits/posix2_lim.h + mdp:/usr/include/bits/pthread_stack_min-dynamic.h + mdp:/usr/include/bits/pthreadtypes-arch.h + mdp:/usr/include/bits/pthreadtypes.h + mdp:/usr/include/bits/sched.h + mdp:/usr/include/bits/select.h + mdp:/usr/include/bits/setjmp.h + mdp:/usr/include/bits/stdint-intn.h + mdp:/usr/include/bits/stdint-least.h + mdp:/usr/include/bits/stdint-uintn.h + mdp:/usr/include/bits/stdio_lim.h + mdp:/usr/include/bits/stdlib-float.h + mdp:/usr/include/bits/struct_mutex.h + mdp:/usr/include/bits/struct_rwlock.h + mdp:/usr/include/bits/thread-shared-types.h + mdp:/usr/include/bits/time.h + mdp:/usr/include/bits/time64.h + mdp:/usr/include/bits/timesize.h + mdp:/usr/include/bits/timex.h + mdp:/usr/include/bits/types.h + mdp:/usr/include/bits/types/FILE.h + mdp:/usr/include/bits/types/__FILE.h + mdp:/usr/include/bits/types/__fpos64_t.h + mdp:/usr/include/bits/types/__fpos_t.h + mdp:/usr/include/bits/types/__locale_t.h + mdp:/usr/include/bits/types/__mbstate_t.h + mdp:/usr/include/bits/types/__sigset_t.h + mdp:/usr/include/bits/types/clock_t.h + mdp:/usr/include/bits/types/clockid_t.h + mdp:/usr/include/bits/types/cookie_io_functions_t.h + mdp:/usr/include/bits/types/error_t.h + mdp:/usr/include/bits/types/locale_t.h + mdp:/usr/include/bits/types/mbstate_t.h + mdp:/usr/include/bits/types/sigset_t.h + mdp:/usr/include/bits/types/struct_FILE.h + mdp:/usr/include/bits/types/struct___jmp_buf_tag.h + mdp:/usr/include/bits/types/struct_itimerspec.h + mdp:/usr/include/bits/types/struct_sched_param.h + mdp:/usr/include/bits/types/struct_timespec.h + mdp:/usr/include/bits/types/struct_timeval.h + mdp:/usr/include/bits/types/struct_tm.h + mdp:/usr/include/bits/types/time_t.h + mdp:/usr/include/bits/types/timer_t.h + mdp:/usr/include/bits/types/wint_t.h + mdp:/usr/include/bits/typesizes.h + mdp:/usr/include/bits/uintn-identity.h + mdp:/usr/include/bits/uio_lim.h + mdp:/usr/include/bits/waitflags.h + mdp:/usr/include/bits/waitstatus.h + mdp:/usr/include/bits/wchar.h + mdp:/usr/include/bits/wctype-wchar.h + mdp:/usr/include/bits/wordsize.h + mdp:/usr/include/bits/xopen_lim.h + mdp:/usr/include/c++/16.1.1/algorithm + mdp:/usr/include/c++/16.1.1/array + mdp:/usr/include/c++/16.1.1/atomic + mdp:/usr/include/c++/16.1.1/backward/auto_ptr.h + mdp:/usr/include/c++/16.1.1/backward/binders.h + mdp:/usr/include/c++/16.1.1/bit + mdp:/usr/include/c++/16.1.1/bits/algorithmfwd.h + mdp:/usr/include/c++/16.1.1/bits/align.h + mdp:/usr/include/c++/16.1.1/bits/alloc_traits.h + mdp:/usr/include/c++/16.1.1/bits/allocated_ptr.h + mdp:/usr/include/c++/16.1.1/bits/allocator.h + mdp:/usr/include/c++/16.1.1/bits/atomic_base.h + mdp:/usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h + mdp:/usr/include/c++/16.1.1/bits/atomic_wait.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.tcc + mdp:/usr/include/c++/16.1.1/bits/basic_string.h + mdp:/usr/include/c++/16.1.1/bits/basic_string.tcc + mdp:/usr/include/c++/16.1.1/bits/binders.h + mdp:/usr/include/c++/16.1.1/bits/char_traits.h + mdp:/usr/include/c++/16.1.1/bits/charconv.h + mdp:/usr/include/c++/16.1.1/bits/chrono.h + mdp:/usr/include/c++/16.1.1/bits/chrono_io.h + mdp:/usr/include/c++/16.1.1/bits/concept_check.h + mdp:/usr/include/c++/16.1.1/bits/cpp_type_traits.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_forced.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_init_exception.h + mdp:/usr/include/c++/16.1.1/bits/enable_special_members.h + mdp:/usr/include/c++/16.1.1/bits/erase_if.h + mdp:/usr/include/c++/16.1.1/bits/exception.h + mdp:/usr/include/c++/16.1.1/bits/exception_defines.h + mdp:/usr/include/c++/16.1.1/bits/exception_ptr.h + mdp:/usr/include/c++/16.1.1/bits/functexcept.h + mdp:/usr/include/c++/16.1.1/bits/functional_hash.h + mdp:/usr/include/c++/16.1.1/bits/hash_bytes.h + mdp:/usr/include/c++/16.1.1/bits/hashtable.h + mdp:/usr/include/c++/16.1.1/bits/hashtable_policy.h + mdp:/usr/include/c++/16.1.1/bits/intcmp.h + mdp:/usr/include/c++/16.1.1/bits/invoke.h + mdp:/usr/include/c++/16.1.1/bits/ios_base.h + mdp:/usr/include/c++/16.1.1/bits/istream.tcc + mdp:/usr/include/c++/16.1.1/bits/iterator_concepts.h + mdp:/usr/include/c++/16.1.1/bits/list.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_classes.h + mdp:/usr/include/c++/16.1.1/bits/locale_classes.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_facets.h + mdp:/usr/include/c++/16.1.1/bits/locale_facets.tcc + mdp:/usr/include/c++/16.1.1/bits/localefwd.h + mdp:/usr/include/c++/16.1.1/bits/max_size_type.h + mdp:/usr/include/c++/16.1.1/bits/memory_resource.h + mdp:/usr/include/c++/16.1.1/bits/memoryfwd.h + mdp:/usr/include/c++/16.1.1/bits/move.h + mdp:/usr/include/c++/16.1.1/bits/nested_exception.h + mdp:/usr/include/c++/16.1.1/bits/new_allocator.h + mdp:/usr/include/c++/16.1.1/bits/new_except.h + mdp:/usr/include/c++/16.1.1/bits/new_throw.h + mdp:/usr/include/c++/16.1.1/bits/node_handle.h + mdp:/usr/include/c++/16.1.1/bits/ostream.h + mdp:/usr/include/c++/16.1.1/bits/ostream.tcc + mdp:/usr/include/c++/16.1.1/bits/ostream_insert.h + mdp:/usr/include/c++/16.1.1/bits/ostream_print.h + mdp:/usr/include/c++/16.1.1/bits/parse_numbers.h + mdp:/usr/include/c++/16.1.1/bits/postypes.h + mdp:/usr/include/c++/16.1.1/bits/predefined_ops.h + mdp:/usr/include/c++/16.1.1/bits/ptr_traits.h + mdp:/usr/include/c++/16.1.1/bits/range_access.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algo.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algobase.h + mdp:/usr/include/c++/16.1.1/bits/ranges_base.h + mdp:/usr/include/c++/16.1.1/bits/ranges_cmp.h + mdp:/usr/include/c++/16.1.1/bits/ranges_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/ranges_util.h + mdp:/usr/include/c++/16.1.1/bits/refwrap.h + mdp:/usr/include/c++/16.1.1/bits/requires_hosted.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_atomic.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_base.h + mdp:/usr/include/c++/16.1.1/bits/specfun.h + mdp:/usr/include/c++/16.1.1/bits/sstream.tcc + mdp:/usr/include/c++/16.1.1/bits/std_abs.h + mdp:/usr/include/c++/16.1.1/bits/std_function.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_except.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throw.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h + mdp:/usr/include/c++/16.1.1/bits/stl_algo.h + mdp:/usr/include/c++/16.1.1/bits/stl_algobase.h + mdp:/usr/include/c++/16.1.1/bits/stl_bvector.h + mdp:/usr/include/c++/16.1.1/bits/stl_construct.h + mdp:/usr/include/c++/16.1.1/bits/stl_function.h + mdp:/usr/include/c++/16.1.1/bits/stl_heap.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_types.h + mdp:/usr/include/c++/16.1.1/bits/stl_list.h + mdp:/usr/include/c++/16.1.1/bits/stl_map.h + mdp:/usr/include/c++/16.1.1/bits/stl_multimap.h + mdp:/usr/include/c++/16.1.1/bits/stl_multiset.h + mdp:/usr/include/c++/16.1.1/bits/stl_numeric.h + mdp:/usr/include/c++/16.1.1/bits/stl_pair.h + mdp:/usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h + mdp:/usr/include/c++/16.1.1/bits/stl_relops.h + mdp:/usr/include/c++/16.1.1/bits/stl_set.h + mdp:/usr/include/c++/16.1.1/bits/stl_tempbuf.h + mdp:/usr/include/c++/16.1.1/bits/stl_tree.h + mdp:/usr/include/c++/16.1.1/bits/stl_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/stl_vector.h + mdp:/usr/include/c++/16.1.1/bits/stream_iterator.h + mdp:/usr/include/c++/16.1.1/bits/streambuf.tcc + mdp:/usr/include/c++/16.1.1/bits/streambuf_iterator.h + mdp:/usr/include/c++/16.1.1/bits/string_view.tcc + mdp:/usr/include/c++/16.1.1/bits/stringfwd.h + mdp:/usr/include/c++/16.1.1/bits/uniform_int_dist.h + mdp:/usr/include/c++/16.1.1/bits/unique_ptr.h + mdp:/usr/include/c++/16.1.1/bits/unordered_map.h + mdp:/usr/include/c++/16.1.1/bits/unordered_set.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator_args.h + mdp:/usr/include/c++/16.1.1/bits/utility.h + mdp:/usr/include/c++/16.1.1/bits/vector.tcc + mdp:/usr/include/c++/16.1.1/bits/version.h + mdp:/usr/include/c++/16.1.1/cassert + mdp:/usr/include/c++/16.1.1/cctype + mdp:/usr/include/c++/16.1.1/cerrno + mdp:/usr/include/c++/16.1.1/charconv + mdp:/usr/include/c++/16.1.1/chrono + mdp:/usr/include/c++/16.1.1/climits + mdp:/usr/include/c++/16.1.1/clocale + mdp:/usr/include/c++/16.1.1/cmath + mdp:/usr/include/c++/16.1.1/compare + mdp:/usr/include/c++/16.1.1/concepts + mdp:/usr/include/c++/16.1.1/cstddef + mdp:/usr/include/c++/16.1.1/cstdint + mdp:/usr/include/c++/16.1.1/cstdio + mdp:/usr/include/c++/16.1.1/cstdlib + mdp:/usr/include/c++/16.1.1/cstring + mdp:/usr/include/c++/16.1.1/ctime + mdp:/usr/include/c++/16.1.1/cwchar + mdp:/usr/include/c++/16.1.1/cwctype + mdp:/usr/include/c++/16.1.1/debug/assertions.h + mdp:/usr/include/c++/16.1.1/debug/debug.h + mdp:/usr/include/c++/16.1.1/exception + mdp:/usr/include/c++/16.1.1/ext/aligned_buffer.h + mdp:/usr/include/c++/16.1.1/ext/alloc_traits.h + mdp:/usr/include/c++/16.1.1/ext/atomicity.h + mdp:/usr/include/c++/16.1.1/ext/concurrence.h + mdp:/usr/include/c++/16.1.1/ext/numeric_traits.h + mdp:/usr/include/c++/16.1.1/ext/string_conversions.h + mdp:/usr/include/c++/16.1.1/ext/type_traits.h + mdp:/usr/include/c++/16.1.1/format + mdp:/usr/include/c++/16.1.1/functional + mdp:/usr/include/c++/16.1.1/initializer_list + mdp:/usr/include/c++/16.1.1/ios + mdp:/usr/include/c++/16.1.1/iosfwd + mdp:/usr/include/c++/16.1.1/istream + mdp:/usr/include/c++/16.1.1/iterator + mdp:/usr/include/c++/16.1.1/limits + mdp:/usr/include/c++/16.1.1/list + mdp:/usr/include/c++/16.1.1/map + mdp:/usr/include/c++/16.1.1/memory + mdp:/usr/include/c++/16.1.1/new + mdp:/usr/include/c++/16.1.1/numeric + mdp:/usr/include/c++/16.1.1/optional + mdp:/usr/include/c++/16.1.1/ostream + mdp:/usr/include/c++/16.1.1/pstl/execution_defs.h + mdp:/usr/include/c++/16.1.1/pstl/glue_numeric_defs.h + mdp:/usr/include/c++/16.1.1/pstl/pstl_config.h + mdp:/usr/include/c++/16.1.1/ratio + mdp:/usr/include/c++/16.1.1/set + mdp:/usr/include/c++/16.1.1/sstream + mdp:/usr/include/c++/16.1.1/stdexcept + mdp:/usr/include/c++/16.1.1/streambuf + mdp:/usr/include/c++/16.1.1/string + mdp:/usr/include/c++/16.1.1/string_view + mdp:/usr/include/c++/16.1.1/system_error + mdp:/usr/include/c++/16.1.1/tr1/bessel_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/beta_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/ell_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/exp_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/gamma.tcc + mdp:/usr/include/c++/16.1.1/tr1/hypergeometric.tcc + mdp:/usr/include/c++/16.1.1/tr1/legendre_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_hermite.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_laguerre.tcc + mdp:/usr/include/c++/16.1.1/tr1/riemann_zeta.tcc + mdp:/usr/include/c++/16.1.1/tr1/special_function_util.h + mdp:/usr/include/c++/16.1.1/tuple + mdp:/usr/include/c++/16.1.1/type_traits + mdp:/usr/include/c++/16.1.1/typeinfo + mdp:/usr/include/c++/16.1.1/unordered_map + mdp:/usr/include/c++/16.1.1/unordered_set + mdp:/usr/include/c++/16.1.1/utility + mdp:/usr/include/c++/16.1.1/variant + mdp:/usr/include/c++/16.1.1/vector + mdp:/usr/include/c++/16.1.1/version + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h + mdp:/usr/include/ctype.h + mdp:/usr/include/endian.h + mdp:/usr/include/errno.h + mdp:/usr/include/features-time64.h + mdp:/usr/include/features.h + mdp:/usr/include/gnu/stubs-64.h + mdp:/usr/include/gnu/stubs.h + mdp:/usr/include/limits.h + mdp:/usr/include/linux/errno.h + mdp:/usr/include/linux/limits.h + mdp:/usr/include/linux/posix_types.h + mdp:/usr/include/linux/sched/types.h + mdp:/usr/include/linux/stddef.h + mdp:/usr/include/linux/types.h + mdp:/usr/include/locale.h + mdp:/usr/include/pthread.h + mdp:/usr/include/qt6/QtCore/QObject + mdp:/usr/include/qt6/QtCore/QPointer + mdp:/usr/include/qt6/QtCore/QSet + mdp:/usr/include/qt6/QtCore/QVector + mdp:/usr/include/qt6/QtCore/q17memory.h + mdp:/usr/include/qt6/QtCore/q20bit.h + mdp:/usr/include/qt6/QtCore/q20functional.h + mdp:/usr/include/qt6/QtCore/q20iterator.h + mdp:/usr/include/qt6/QtCore/q20memory.h + mdp:/usr/include/qt6/QtCore/q20type_traits.h + mdp:/usr/include/qt6/QtCore/q20utility.h + mdp:/usr/include/qt6/QtCore/q23type_traits.h + mdp:/usr/include/qt6/QtCore/q23utility.h + mdp:/usr/include/qt6/QtCore/qalgorithms.h + mdp:/usr/include/qt6/QtCore/qalloc.h + mdp:/usr/include/qt6/QtCore/qanystringview.h + mdp:/usr/include/qt6/QtCore/qarraydata.h + mdp:/usr/include/qt6/QtCore/qarraydataops.h + mdp:/usr/include/qt6/QtCore/qarraydatapointer.h + mdp:/usr/include/qt6/QtCore/qassert.h + mdp:/usr/include/qt6/QtCore/qatomic.h + mdp:/usr/include/qt6/QtCore/qatomic_cxx11.h + mdp:/usr/include/qt6/QtCore/qbasicatomic.h + mdp:/usr/include/qt6/QtCore/qbindingstorage.h + mdp:/usr/include/qt6/QtCore/qbytearray.h + mdp:/usr/include/qt6/QtCore/qbytearrayalgorithms.h + mdp:/usr/include/qt6/QtCore/qbytearraylist.h + mdp:/usr/include/qt6/QtCore/qbytearrayview.h + mdp:/usr/include/qt6/QtCore/qchar.h + mdp:/usr/include/qt6/QtCore/qcheckedint_impl.h + mdp:/usr/include/qt6/QtCore/qcompare.h + mdp:/usr/include/qt6/QtCore/qcompare_impl.h + mdp:/usr/include/qt6/QtCore/qcomparehelpers.h + mdp:/usr/include/qt6/QtCore/qcompilerdetection.h + mdp:/usr/include/qt6/QtCore/qconfig.h + mdp:/usr/include/qt6/QtCore/qconstructormacros.h + mdp:/usr/include/qt6/QtCore/qcontainerfwd.h + mdp:/usr/include/qt6/QtCore/qcontainerinfo.h + mdp:/usr/include/qt6/QtCore/qcontainertools_impl.h + mdp:/usr/include/qt6/QtCore/qcontiguouscache.h + mdp:/usr/include/qt6/QtCore/qdarwinhelpers.h + mdp:/usr/include/qt6/QtCore/qdatastream.h + mdp:/usr/include/qt6/QtCore/qdebug.h + mdp:/usr/include/qt6/QtCore/qendian.h + mdp:/usr/include/qt6/QtCore/qexceptionhandling.h + mdp:/usr/include/qt6/QtCore/qflags.h + mdp:/usr/include/qt6/QtCore/qfloat16.h + mdp:/usr/include/qt6/QtCore/qforeach.h + mdp:/usr/include/qt6/QtCore/qfunctionaltools_impl.h + mdp:/usr/include/qt6/QtCore/qfunctionpointer.h + mdp:/usr/include/qt6/QtCore/qgenericatomic.h + mdp:/usr/include/qt6/QtCore/qglobal.h + mdp:/usr/include/qt6/QtCore/qglobalstatic.h + mdp:/usr/include/qt6/QtCore/qhash.h + mdp:/usr/include/qt6/QtCore/qhashfunctions.h + mdp:/usr/include/qt6/QtCore/qiodevicebase.h + mdp:/usr/include/qt6/QtCore/qiterable.h + mdp:/usr/include/qt6/QtCore/qiterator.h + mdp:/usr/include/qt6/QtCore/qlatin1stringview.h + mdp:/usr/include/qt6/QtCore/qline.h + mdp:/usr/include/qt6/QtCore/qlist.h + mdp:/usr/include/qt6/QtCore/qlogging.h + mdp:/usr/include/qt6/QtCore/qmalloc.h + mdp:/usr/include/qt6/QtCore/qmap.h + mdp:/usr/include/qt6/QtCore/qmargins.h + mdp:/usr/include/qt6/QtCore/qmath.h + mdp:/usr/include/qt6/QtCore/qmetacontainer.h + mdp:/usr/include/qt6/QtCore/qmetatype.h + mdp:/usr/include/qt6/QtCore/qminmax.h + mdp:/usr/include/qt6/QtCore/qnamespace.h + mdp:/usr/include/qt6/QtCore/qnumeric.h + mdp:/usr/include/qt6/QtCore/qobject.h + mdp:/usr/include/qt6/QtCore/qobject_impl.h + mdp:/usr/include/qt6/QtCore/qobjectdefs.h + mdp:/usr/include/qt6/QtCore/qobjectdefs_impl.h + mdp:/usr/include/qt6/QtCore/qoverload.h + mdp:/usr/include/qt6/QtCore/qpair.h + mdp:/usr/include/qt6/QtCore/qpoint.h + mdp:/usr/include/qt6/QtCore/qpointer.h + mdp:/usr/include/qt6/QtCore/qprocessordetection.h + mdp:/usr/include/qt6/QtCore/qrect.h + mdp:/usr/include/qt6/QtCore/qrefcount.h + mdp:/usr/include/qt6/QtCore/qscopedpointer.h + mdp:/usr/include/qt6/QtCore/qscopeguard.h + mdp:/usr/include/qt6/QtCore/qset.h + mdp:/usr/include/qt6/QtCore/qshareddata.h + mdp:/usr/include/qt6/QtCore/qshareddata_impl.h + mdp:/usr/include/qt6/QtCore/qsharedpointer.h + mdp:/usr/include/qt6/QtCore/qsharedpointer_impl.h + mdp:/usr/include/qt6/QtCore/qsize.h + mdp:/usr/include/qt6/QtCore/qspan.h + mdp:/usr/include/qt6/QtCore/qstdlibdetection.h + mdp:/usr/include/qt6/QtCore/qstring.h + mdp:/usr/include/qt6/QtCore/qstringalgorithms.h + mdp:/usr/include/qt6/QtCore/qstringbuilder.h + mdp:/usr/include/qt6/QtCore/qstringconverter.h + mdp:/usr/include/qt6/QtCore/qstringconverter_base.h + mdp:/usr/include/qt6/QtCore/qstringfwd.h + mdp:/usr/include/qt6/QtCore/qstringlist.h + mdp:/usr/include/qt6/QtCore/qstringmatcher.h + mdp:/usr/include/qt6/QtCore/qstringtokenizer.h + mdp:/usr/include/qt6/QtCore/qstringview.h + mdp:/usr/include/qt6/QtCore/qswap.h + mdp:/usr/include/qt6/QtCore/qsysinfo.h + mdp:/usr/include/qt6/QtCore/qsystemdetection.h + mdp:/usr/include/qt6/QtCore/qtaggedpointer.h + mdp:/usr/include/qt6/QtCore/qtclasshelpermacros.h + mdp:/usr/include/qt6/QtCore/qtconfiginclude.h + mdp:/usr/include/qt6/QtCore/qtconfigmacros.h + mdp:/usr/include/qt6/QtCore/qtcore-config.h + mdp:/usr/include/qt6/QtCore/qtcoreexports.h + mdp:/usr/include/qt6/QtCore/qtcoreglobal.h + mdp:/usr/include/qt6/QtCore/qtdeprecationdefinitions.h + mdp:/usr/include/qt6/QtCore/qtdeprecationmarkers.h + mdp:/usr/include/qt6/QtCore/qtenvironmentvariables.h + mdp:/usr/include/qt6/QtCore/qtextstream.h + mdp:/usr/include/qt6/QtCore/qtformat_impl.h + mdp:/usr/include/qt6/QtCore/qtmetamacros.h + mdp:/usr/include/qt6/QtCore/qtnoop.h + mdp:/usr/include/qt6/QtCore/qtpreprocessorsupport.h + mdp:/usr/include/qt6/QtCore/qtresource.h + mdp:/usr/include/qt6/QtCore/qttranslation.h + mdp:/usr/include/qt6/QtCore/qttypetraits.h + mdp:/usr/include/qt6/QtCore/qtversion.h + mdp:/usr/include/qt6/QtCore/qtversionchecks.h + mdp:/usr/include/qt6/QtCore/qtypeinfo.h + mdp:/usr/include/qt6/QtCore/qtypes.h + mdp:/usr/include/qt6/QtCore/qutf8stringview.h + mdp:/usr/include/qt6/QtCore/qvariant.h + mdp:/usr/include/qt6/QtCore/qvarlengtharray.h + mdp:/usr/include/qt6/QtCore/qvector.h + mdp:/usr/include/qt6/QtCore/qversiontagging.h + mdp:/usr/include/qt6/QtCore/qxptype_traits.h + mdp:/usr/include/qt6/QtCore/qyieldcpu.h + mdp:/usr/include/qt6/QtGui/QKeySequence + mdp:/usr/include/qt6/QtGui/qaction.h + mdp:/usr/include/qt6/QtGui/qbitmap.h + mdp:/usr/include/qt6/QtGui/qbrush.h + mdp:/usr/include/qt6/QtGui/qcolor.h + mdp:/usr/include/qt6/QtGui/qcursor.h + mdp:/usr/include/qt6/QtGui/qfont.h + mdp:/usr/include/qt6/QtGui/qfontinfo.h + mdp:/usr/include/qt6/QtGui/qfontmetrics.h + mdp:/usr/include/qt6/QtGui/qfontvariableaxis.h + mdp:/usr/include/qt6/QtGui/qicon.h + mdp:/usr/include/qt6/QtGui/qimage.h + mdp:/usr/include/qt6/QtGui/qkeysequence.h + mdp:/usr/include/qt6/QtGui/qpaintdevice.h + mdp:/usr/include/qt6/QtGui/qpalette.h + mdp:/usr/include/qt6/QtGui/qpixelformat.h + mdp:/usr/include/qt6/QtGui/qpixmap.h + mdp:/usr/include/qt6/QtGui/qpolygon.h + mdp:/usr/include/qt6/QtGui/qregion.h + mdp:/usr/include/qt6/QtGui/qrgb.h + mdp:/usr/include/qt6/QtGui/qrgba64.h + mdp:/usr/include/qt6/QtGui/qtgui-config.h + mdp:/usr/include/qt6/QtGui/qtguiexports.h + mdp:/usr/include/qt6/QtGui/qtguiglobal.h + mdp:/usr/include/qt6/QtGui/qtransform.h + mdp:/usr/include/qt6/QtGui/qwindowdefs.h + mdp:/usr/include/qt6/QtWidgets/QWidget + mdp:/usr/include/qt6/QtWidgets/qsizepolicy.h + mdp:/usr/include/qt6/QtWidgets/qtwidgets-config.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsexports.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsglobal.h + mdp:/usr/include/qt6/QtWidgets/qwidget.h + mdp:/usr/include/sched.h + mdp:/usr/include/stdc-predef.h + mdp:/usr/include/stdint.h + mdp:/usr/include/stdio.h + mdp:/usr/include/stdlib.h + mdp:/usr/include/string.h + mdp:/usr/include/strings.h + mdp:/usr/include/sys/cdefs.h + mdp:/usr/include/sys/select.h + mdp:/usr/include/sys/single_threaded.h + mdp:/usr/include/sys/types.h + mdp:/usr/include/time.h + mdp:/usr/include/wchar.h + mdp:/usr/include/wctype.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterableHeaderView.h + mmc:Q_OBJECT + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterableHeaderView.h + mdp:/usr/include/alloca.h + mdp:/usr/include/asm-generic/bitsperlong.h + mdp:/usr/include/asm-generic/errno-base.h + mdp:/usr/include/asm-generic/errno.h + mdp:/usr/include/asm-generic/int-ll64.h + mdp:/usr/include/asm-generic/posix_types.h + mdp:/usr/include/asm-generic/types.h + mdp:/usr/include/asm/bitsperlong.h + mdp:/usr/include/asm/errno.h + mdp:/usr/include/asm/posix_types.h + mdp:/usr/include/asm/posix_types_64.h + mdp:/usr/include/asm/types.h + mdp:/usr/include/assert.h + mdp:/usr/include/bits/atomic_wide_counter.h + mdp:/usr/include/bits/byteswap.h + mdp:/usr/include/bits/cpu-set.h + mdp:/usr/include/bits/endian.h + mdp:/usr/include/bits/endianness.h + mdp:/usr/include/bits/errno.h + mdp:/usr/include/bits/floatn-common.h + mdp:/usr/include/bits/floatn.h + mdp:/usr/include/bits/libc-header-start.h + mdp:/usr/include/bits/local_lim.h + mdp:/usr/include/bits/locale.h + mdp:/usr/include/bits/long-double.h + mdp:/usr/include/bits/posix1_lim.h + mdp:/usr/include/bits/posix2_lim.h + mdp:/usr/include/bits/pthread_stack_min-dynamic.h + mdp:/usr/include/bits/pthreadtypes-arch.h + mdp:/usr/include/bits/pthreadtypes.h + mdp:/usr/include/bits/sched.h + mdp:/usr/include/bits/select.h + mdp:/usr/include/bits/setjmp.h + mdp:/usr/include/bits/stdint-intn.h + mdp:/usr/include/bits/stdint-least.h + mdp:/usr/include/bits/stdint-uintn.h + mdp:/usr/include/bits/stdio_lim.h + mdp:/usr/include/bits/stdlib-float.h + mdp:/usr/include/bits/struct_mutex.h + mdp:/usr/include/bits/struct_rwlock.h + mdp:/usr/include/bits/thread-shared-types.h + mdp:/usr/include/bits/time.h + mdp:/usr/include/bits/time64.h + mdp:/usr/include/bits/timesize.h + mdp:/usr/include/bits/timex.h + mdp:/usr/include/bits/types.h + mdp:/usr/include/bits/types/FILE.h + mdp:/usr/include/bits/types/__FILE.h + mdp:/usr/include/bits/types/__fpos64_t.h + mdp:/usr/include/bits/types/__fpos_t.h + mdp:/usr/include/bits/types/__locale_t.h + mdp:/usr/include/bits/types/__mbstate_t.h + mdp:/usr/include/bits/types/__sigset_t.h + mdp:/usr/include/bits/types/clock_t.h + mdp:/usr/include/bits/types/clockid_t.h + mdp:/usr/include/bits/types/cookie_io_functions_t.h + mdp:/usr/include/bits/types/error_t.h + mdp:/usr/include/bits/types/locale_t.h + mdp:/usr/include/bits/types/mbstate_t.h + mdp:/usr/include/bits/types/sigset_t.h + mdp:/usr/include/bits/types/struct_FILE.h + mdp:/usr/include/bits/types/struct___jmp_buf_tag.h + mdp:/usr/include/bits/types/struct_itimerspec.h + mdp:/usr/include/bits/types/struct_sched_param.h + mdp:/usr/include/bits/types/struct_timespec.h + mdp:/usr/include/bits/types/struct_timeval.h + mdp:/usr/include/bits/types/struct_tm.h + mdp:/usr/include/bits/types/time_t.h + mdp:/usr/include/bits/types/timer_t.h + mdp:/usr/include/bits/types/wint_t.h + mdp:/usr/include/bits/typesizes.h + mdp:/usr/include/bits/uintn-identity.h + mdp:/usr/include/bits/uio_lim.h + mdp:/usr/include/bits/waitflags.h + mdp:/usr/include/bits/waitstatus.h + mdp:/usr/include/bits/wchar.h + mdp:/usr/include/bits/wctype-wchar.h + mdp:/usr/include/bits/wordsize.h + mdp:/usr/include/bits/xopen_lim.h + mdp:/usr/include/c++/16.1.1/algorithm + mdp:/usr/include/c++/16.1.1/array + mdp:/usr/include/c++/16.1.1/atomic + mdp:/usr/include/c++/16.1.1/backward/auto_ptr.h + mdp:/usr/include/c++/16.1.1/backward/binders.h + mdp:/usr/include/c++/16.1.1/bit + mdp:/usr/include/c++/16.1.1/bits/algorithmfwd.h + mdp:/usr/include/c++/16.1.1/bits/align.h + mdp:/usr/include/c++/16.1.1/bits/alloc_traits.h + mdp:/usr/include/c++/16.1.1/bits/allocated_ptr.h + mdp:/usr/include/c++/16.1.1/bits/allocator.h + mdp:/usr/include/c++/16.1.1/bits/atomic_base.h + mdp:/usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h + mdp:/usr/include/c++/16.1.1/bits/atomic_wait.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.tcc + mdp:/usr/include/c++/16.1.1/bits/basic_string.h + mdp:/usr/include/c++/16.1.1/bits/basic_string.tcc + mdp:/usr/include/c++/16.1.1/bits/binders.h + mdp:/usr/include/c++/16.1.1/bits/char_traits.h + mdp:/usr/include/c++/16.1.1/bits/charconv.h + mdp:/usr/include/c++/16.1.1/bits/chrono.h + mdp:/usr/include/c++/16.1.1/bits/chrono_io.h + mdp:/usr/include/c++/16.1.1/bits/concept_check.h + mdp:/usr/include/c++/16.1.1/bits/cpp_type_traits.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_forced.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_init_exception.h + mdp:/usr/include/c++/16.1.1/bits/enable_special_members.h + mdp:/usr/include/c++/16.1.1/bits/erase_if.h + mdp:/usr/include/c++/16.1.1/bits/exception.h + mdp:/usr/include/c++/16.1.1/bits/exception_defines.h + mdp:/usr/include/c++/16.1.1/bits/exception_ptr.h + mdp:/usr/include/c++/16.1.1/bits/functexcept.h + mdp:/usr/include/c++/16.1.1/bits/functional_hash.h + mdp:/usr/include/c++/16.1.1/bits/hash_bytes.h + mdp:/usr/include/c++/16.1.1/bits/hashtable.h + mdp:/usr/include/c++/16.1.1/bits/hashtable_policy.h + mdp:/usr/include/c++/16.1.1/bits/intcmp.h + mdp:/usr/include/c++/16.1.1/bits/invoke.h + mdp:/usr/include/c++/16.1.1/bits/ios_base.h + mdp:/usr/include/c++/16.1.1/bits/istream.tcc + mdp:/usr/include/c++/16.1.1/bits/iterator_concepts.h + mdp:/usr/include/c++/16.1.1/bits/list.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_classes.h + mdp:/usr/include/c++/16.1.1/bits/locale_classes.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_facets.h + mdp:/usr/include/c++/16.1.1/bits/locale_facets.tcc + mdp:/usr/include/c++/16.1.1/bits/localefwd.h + mdp:/usr/include/c++/16.1.1/bits/max_size_type.h + mdp:/usr/include/c++/16.1.1/bits/memory_resource.h + mdp:/usr/include/c++/16.1.1/bits/memoryfwd.h + mdp:/usr/include/c++/16.1.1/bits/move.h + mdp:/usr/include/c++/16.1.1/bits/nested_exception.h + mdp:/usr/include/c++/16.1.1/bits/new_allocator.h + mdp:/usr/include/c++/16.1.1/bits/new_except.h + mdp:/usr/include/c++/16.1.1/bits/new_throw.h + mdp:/usr/include/c++/16.1.1/bits/node_handle.h + mdp:/usr/include/c++/16.1.1/bits/ostream.h + mdp:/usr/include/c++/16.1.1/bits/ostream.tcc + mdp:/usr/include/c++/16.1.1/bits/ostream_insert.h + mdp:/usr/include/c++/16.1.1/bits/ostream_print.h + mdp:/usr/include/c++/16.1.1/bits/parse_numbers.h + mdp:/usr/include/c++/16.1.1/bits/postypes.h + mdp:/usr/include/c++/16.1.1/bits/predefined_ops.h + mdp:/usr/include/c++/16.1.1/bits/ptr_traits.h + mdp:/usr/include/c++/16.1.1/bits/range_access.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algo.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algobase.h + mdp:/usr/include/c++/16.1.1/bits/ranges_base.h + mdp:/usr/include/c++/16.1.1/bits/ranges_cmp.h + mdp:/usr/include/c++/16.1.1/bits/ranges_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/ranges_util.h + mdp:/usr/include/c++/16.1.1/bits/refwrap.h + mdp:/usr/include/c++/16.1.1/bits/requires_hosted.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_atomic.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_base.h + mdp:/usr/include/c++/16.1.1/bits/specfun.h + mdp:/usr/include/c++/16.1.1/bits/sstream.tcc + mdp:/usr/include/c++/16.1.1/bits/std_abs.h + mdp:/usr/include/c++/16.1.1/bits/std_function.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_except.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throw.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h + mdp:/usr/include/c++/16.1.1/bits/stl_algo.h + mdp:/usr/include/c++/16.1.1/bits/stl_algobase.h + mdp:/usr/include/c++/16.1.1/bits/stl_bvector.h + mdp:/usr/include/c++/16.1.1/bits/stl_construct.h + mdp:/usr/include/c++/16.1.1/bits/stl_function.h + mdp:/usr/include/c++/16.1.1/bits/stl_heap.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_types.h + mdp:/usr/include/c++/16.1.1/bits/stl_list.h + mdp:/usr/include/c++/16.1.1/bits/stl_map.h + mdp:/usr/include/c++/16.1.1/bits/stl_multimap.h + mdp:/usr/include/c++/16.1.1/bits/stl_multiset.h + mdp:/usr/include/c++/16.1.1/bits/stl_numeric.h + mdp:/usr/include/c++/16.1.1/bits/stl_pair.h + mdp:/usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h + mdp:/usr/include/c++/16.1.1/bits/stl_relops.h + mdp:/usr/include/c++/16.1.1/bits/stl_set.h + mdp:/usr/include/c++/16.1.1/bits/stl_tempbuf.h + mdp:/usr/include/c++/16.1.1/bits/stl_tree.h + mdp:/usr/include/c++/16.1.1/bits/stl_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/stl_vector.h + mdp:/usr/include/c++/16.1.1/bits/stream_iterator.h + mdp:/usr/include/c++/16.1.1/bits/streambuf.tcc + mdp:/usr/include/c++/16.1.1/bits/streambuf_iterator.h + mdp:/usr/include/c++/16.1.1/bits/string_view.tcc + mdp:/usr/include/c++/16.1.1/bits/stringfwd.h + mdp:/usr/include/c++/16.1.1/bits/uniform_int_dist.h + mdp:/usr/include/c++/16.1.1/bits/unique_ptr.h + mdp:/usr/include/c++/16.1.1/bits/unordered_map.h + mdp:/usr/include/c++/16.1.1/bits/unordered_set.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator_args.h + mdp:/usr/include/c++/16.1.1/bits/utility.h + mdp:/usr/include/c++/16.1.1/bits/vector.tcc + mdp:/usr/include/c++/16.1.1/bits/version.h + mdp:/usr/include/c++/16.1.1/cassert + mdp:/usr/include/c++/16.1.1/cctype + mdp:/usr/include/c++/16.1.1/cerrno + mdp:/usr/include/c++/16.1.1/charconv + mdp:/usr/include/c++/16.1.1/chrono + mdp:/usr/include/c++/16.1.1/climits + mdp:/usr/include/c++/16.1.1/clocale + mdp:/usr/include/c++/16.1.1/cmath + mdp:/usr/include/c++/16.1.1/compare + mdp:/usr/include/c++/16.1.1/concepts + mdp:/usr/include/c++/16.1.1/cstddef + mdp:/usr/include/c++/16.1.1/cstdint + mdp:/usr/include/c++/16.1.1/cstdio + mdp:/usr/include/c++/16.1.1/cstdlib + mdp:/usr/include/c++/16.1.1/cstring + mdp:/usr/include/c++/16.1.1/ctime + mdp:/usr/include/c++/16.1.1/cwchar + mdp:/usr/include/c++/16.1.1/cwctype + mdp:/usr/include/c++/16.1.1/debug/assertions.h + mdp:/usr/include/c++/16.1.1/debug/debug.h + mdp:/usr/include/c++/16.1.1/exception + mdp:/usr/include/c++/16.1.1/ext/aligned_buffer.h + mdp:/usr/include/c++/16.1.1/ext/alloc_traits.h + mdp:/usr/include/c++/16.1.1/ext/atomicity.h + mdp:/usr/include/c++/16.1.1/ext/concurrence.h + mdp:/usr/include/c++/16.1.1/ext/numeric_traits.h + mdp:/usr/include/c++/16.1.1/ext/string_conversions.h + mdp:/usr/include/c++/16.1.1/ext/type_traits.h + mdp:/usr/include/c++/16.1.1/format + mdp:/usr/include/c++/16.1.1/functional + mdp:/usr/include/c++/16.1.1/initializer_list + mdp:/usr/include/c++/16.1.1/ios + mdp:/usr/include/c++/16.1.1/iosfwd + mdp:/usr/include/c++/16.1.1/istream + mdp:/usr/include/c++/16.1.1/iterator + mdp:/usr/include/c++/16.1.1/limits + mdp:/usr/include/c++/16.1.1/list + mdp:/usr/include/c++/16.1.1/map + mdp:/usr/include/c++/16.1.1/memory + mdp:/usr/include/c++/16.1.1/new + mdp:/usr/include/c++/16.1.1/numeric + mdp:/usr/include/c++/16.1.1/optional + mdp:/usr/include/c++/16.1.1/ostream + mdp:/usr/include/c++/16.1.1/pstl/execution_defs.h + mdp:/usr/include/c++/16.1.1/pstl/glue_numeric_defs.h + mdp:/usr/include/c++/16.1.1/pstl/pstl_config.h + mdp:/usr/include/c++/16.1.1/ratio + mdp:/usr/include/c++/16.1.1/set + mdp:/usr/include/c++/16.1.1/sstream + mdp:/usr/include/c++/16.1.1/stdexcept + mdp:/usr/include/c++/16.1.1/streambuf + mdp:/usr/include/c++/16.1.1/string + mdp:/usr/include/c++/16.1.1/string_view + mdp:/usr/include/c++/16.1.1/system_error + mdp:/usr/include/c++/16.1.1/tr1/bessel_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/beta_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/ell_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/exp_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/gamma.tcc + mdp:/usr/include/c++/16.1.1/tr1/hypergeometric.tcc + mdp:/usr/include/c++/16.1.1/tr1/legendre_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_hermite.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_laguerre.tcc + mdp:/usr/include/c++/16.1.1/tr1/riemann_zeta.tcc + mdp:/usr/include/c++/16.1.1/tr1/special_function_util.h + mdp:/usr/include/c++/16.1.1/tuple + mdp:/usr/include/c++/16.1.1/type_traits + mdp:/usr/include/c++/16.1.1/typeinfo + mdp:/usr/include/c++/16.1.1/unordered_map + mdp:/usr/include/c++/16.1.1/unordered_set + mdp:/usr/include/c++/16.1.1/utility + mdp:/usr/include/c++/16.1.1/variant + mdp:/usr/include/c++/16.1.1/vector + mdp:/usr/include/c++/16.1.1/version + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h + mdp:/usr/include/ctype.h + mdp:/usr/include/endian.h + mdp:/usr/include/errno.h + mdp:/usr/include/features-time64.h + mdp:/usr/include/features.h + mdp:/usr/include/gnu/stubs-64.h + mdp:/usr/include/gnu/stubs.h + mdp:/usr/include/limits.h + mdp:/usr/include/linux/errno.h + mdp:/usr/include/linux/limits.h + mdp:/usr/include/linux/posix_types.h + mdp:/usr/include/linux/sched/types.h + mdp:/usr/include/linux/stddef.h + mdp:/usr/include/linux/types.h + mdp:/usr/include/locale.h + mdp:/usr/include/pthread.h + mdp:/usr/include/qt6/QtCore/QVector + mdp:/usr/include/qt6/QtCore/q17memory.h + mdp:/usr/include/qt6/QtCore/q20bit.h + mdp:/usr/include/qt6/QtCore/q20functional.h + mdp:/usr/include/qt6/QtCore/q20iterator.h + mdp:/usr/include/qt6/QtCore/q20memory.h + mdp:/usr/include/qt6/QtCore/q20type_traits.h + mdp:/usr/include/qt6/QtCore/q20utility.h + mdp:/usr/include/qt6/QtCore/q23type_traits.h + mdp:/usr/include/qt6/QtCore/q23utility.h + mdp:/usr/include/qt6/QtCore/qabstractitemmodel.h + mdp:/usr/include/qt6/QtCore/qalgorithms.h + mdp:/usr/include/qt6/QtCore/qalloc.h + mdp:/usr/include/qt6/QtCore/qanystringview.h + mdp:/usr/include/qt6/QtCore/qarraydata.h + mdp:/usr/include/qt6/QtCore/qarraydataops.h + mdp:/usr/include/qt6/QtCore/qarraydatapointer.h + mdp:/usr/include/qt6/QtCore/qassert.h + mdp:/usr/include/qt6/QtCore/qatomic.h + mdp:/usr/include/qt6/QtCore/qatomic_cxx11.h + mdp:/usr/include/qt6/QtCore/qbasicatomic.h + mdp:/usr/include/qt6/QtCore/qbindingstorage.h + mdp:/usr/include/qt6/QtCore/qbytearray.h + mdp:/usr/include/qt6/QtCore/qbytearrayalgorithms.h + mdp:/usr/include/qt6/QtCore/qbytearraylist.h + mdp:/usr/include/qt6/QtCore/qbytearrayview.h + mdp:/usr/include/qt6/QtCore/qchar.h + mdp:/usr/include/qt6/QtCore/qcheckedint_impl.h + mdp:/usr/include/qt6/QtCore/qcompare.h + mdp:/usr/include/qt6/QtCore/qcompare_impl.h + mdp:/usr/include/qt6/QtCore/qcomparehelpers.h + mdp:/usr/include/qt6/QtCore/qcompilerdetection.h + mdp:/usr/include/qt6/QtCore/qconfig.h + mdp:/usr/include/qt6/QtCore/qconstructormacros.h + mdp:/usr/include/qt6/QtCore/qcontainerfwd.h + mdp:/usr/include/qt6/QtCore/qcontainerinfo.h + mdp:/usr/include/qt6/QtCore/qcontainertools_impl.h + mdp:/usr/include/qt6/QtCore/qcontiguouscache.h + mdp:/usr/include/qt6/QtCore/qdarwinhelpers.h + mdp:/usr/include/qt6/QtCore/qdatastream.h + mdp:/usr/include/qt6/QtCore/qdebug.h + mdp:/usr/include/qt6/QtCore/qendian.h + mdp:/usr/include/qt6/QtCore/qexceptionhandling.h + mdp:/usr/include/qt6/QtCore/qflags.h + mdp:/usr/include/qt6/QtCore/qfloat16.h + mdp:/usr/include/qt6/QtCore/qforeach.h + mdp:/usr/include/qt6/QtCore/qfunctionaltools_impl.h + mdp:/usr/include/qt6/QtCore/qfunctionpointer.h + mdp:/usr/include/qt6/QtCore/qgenericatomic.h + mdp:/usr/include/qt6/QtCore/qglobal.h + mdp:/usr/include/qt6/QtCore/qglobalstatic.h + mdp:/usr/include/qt6/QtCore/qhash.h + mdp:/usr/include/qt6/QtCore/qhashfunctions.h + mdp:/usr/include/qt6/QtCore/qiodevicebase.h + mdp:/usr/include/qt6/QtCore/qitemselectionmodel.h + mdp:/usr/include/qt6/QtCore/qiterable.h + mdp:/usr/include/qt6/QtCore/qiterator.h + mdp:/usr/include/qt6/QtCore/qlatin1stringview.h + mdp:/usr/include/qt6/QtCore/qline.h + mdp:/usr/include/qt6/QtCore/qlist.h + mdp:/usr/include/qt6/QtCore/qlocale.h + mdp:/usr/include/qt6/QtCore/qlogging.h + mdp:/usr/include/qt6/QtCore/qmalloc.h + mdp:/usr/include/qt6/QtCore/qmap.h + mdp:/usr/include/qt6/QtCore/qmargins.h + mdp:/usr/include/qt6/QtCore/qmath.h + mdp:/usr/include/qt6/QtCore/qmetacontainer.h + mdp:/usr/include/qt6/QtCore/qmetatype.h + mdp:/usr/include/qt6/QtCore/qminmax.h + mdp:/usr/include/qt6/QtCore/qnamespace.h + mdp:/usr/include/qt6/QtCore/qnumeric.h + mdp:/usr/include/qt6/QtCore/qobject.h + mdp:/usr/include/qt6/QtCore/qobject_impl.h + mdp:/usr/include/qt6/QtCore/qobjectdefs.h + mdp:/usr/include/qt6/QtCore/qobjectdefs_impl.h + mdp:/usr/include/qt6/QtCore/qoverload.h + mdp:/usr/include/qt6/QtCore/qpair.h + mdp:/usr/include/qt6/QtCore/qpoint.h + mdp:/usr/include/qt6/QtCore/qprocessordetection.h + mdp:/usr/include/qt6/QtCore/qrect.h + mdp:/usr/include/qt6/QtCore/qrefcount.h + mdp:/usr/include/qt6/QtCore/qregularexpression.h + mdp:/usr/include/qt6/QtCore/qscopedpointer.h + mdp:/usr/include/qt6/QtCore/qscopeguard.h + mdp:/usr/include/qt6/QtCore/qset.h + mdp:/usr/include/qt6/QtCore/qshareddata.h + mdp:/usr/include/qt6/QtCore/qshareddata_impl.h + mdp:/usr/include/qt6/QtCore/qsharedpointer.h + mdp:/usr/include/qt6/QtCore/qsharedpointer_impl.h + mdp:/usr/include/qt6/QtCore/qsize.h + mdp:/usr/include/qt6/QtCore/qspan.h + mdp:/usr/include/qt6/QtCore/qstdlibdetection.h + mdp:/usr/include/qt6/QtCore/qstring.h + mdp:/usr/include/qt6/QtCore/qstringalgorithms.h + mdp:/usr/include/qt6/QtCore/qstringbuilder.h + mdp:/usr/include/qt6/QtCore/qstringconverter.h + mdp:/usr/include/qt6/QtCore/qstringconverter_base.h + mdp:/usr/include/qt6/QtCore/qstringfwd.h + mdp:/usr/include/qt6/QtCore/qstringlist.h + mdp:/usr/include/qt6/QtCore/qstringmatcher.h + mdp:/usr/include/qt6/QtCore/qstringtokenizer.h + mdp:/usr/include/qt6/QtCore/qstringview.h + mdp:/usr/include/qt6/QtCore/qswap.h + mdp:/usr/include/qt6/QtCore/qsysinfo.h + mdp:/usr/include/qt6/QtCore/qsystemdetection.h + mdp:/usr/include/qt6/QtCore/qtaggedpointer.h + mdp:/usr/include/qt6/QtCore/qtclasshelpermacros.h + mdp:/usr/include/qt6/QtCore/qtconfiginclude.h + mdp:/usr/include/qt6/QtCore/qtconfigmacros.h + mdp:/usr/include/qt6/QtCore/qtcore-config.h + mdp:/usr/include/qt6/QtCore/qtcoreexports.h + mdp:/usr/include/qt6/QtCore/qtcoreglobal.h + mdp:/usr/include/qt6/QtCore/qtdeprecationdefinitions.h + mdp:/usr/include/qt6/QtCore/qtdeprecationmarkers.h + mdp:/usr/include/qt6/QtCore/qtenvironmentvariables.h + mdp:/usr/include/qt6/QtCore/qtextstream.h + mdp:/usr/include/qt6/QtCore/qtformat_impl.h + mdp:/usr/include/qt6/QtCore/qtmetamacros.h + mdp:/usr/include/qt6/QtCore/qtnoop.h + mdp:/usr/include/qt6/QtCore/qtpreprocessorsupport.h + mdp:/usr/include/qt6/QtCore/qtresource.h + mdp:/usr/include/qt6/QtCore/qttranslation.h + mdp:/usr/include/qt6/QtCore/qttypetraits.h + mdp:/usr/include/qt6/QtCore/qtversion.h + mdp:/usr/include/qt6/QtCore/qtversionchecks.h + mdp:/usr/include/qt6/QtCore/qtypeinfo.h + mdp:/usr/include/qt6/QtCore/qtypes.h + mdp:/usr/include/qt6/QtCore/qutf8stringview.h + mdp:/usr/include/qt6/QtCore/qvariant.h + mdp:/usr/include/qt6/QtCore/qvarlengtharray.h + mdp:/usr/include/qt6/QtCore/qvector.h + mdp:/usr/include/qt6/QtCore/qversiontagging.h + mdp:/usr/include/qt6/QtCore/qxptype_traits.h + mdp:/usr/include/qt6/QtCore/qyieldcpu.h + mdp:/usr/include/qt6/QtGui/qaction.h + mdp:/usr/include/qt6/QtGui/qbitmap.h + mdp:/usr/include/qt6/QtGui/qbrush.h + mdp:/usr/include/qt6/QtGui/qcolor.h + mdp:/usr/include/qt6/QtGui/qcursor.h + mdp:/usr/include/qt6/QtGui/qfont.h + mdp:/usr/include/qt6/QtGui/qfontinfo.h + mdp:/usr/include/qt6/QtGui/qfontmetrics.h + mdp:/usr/include/qt6/QtGui/qfontvariableaxis.h + mdp:/usr/include/qt6/QtGui/qicon.h + mdp:/usr/include/qt6/QtGui/qimage.h + mdp:/usr/include/qt6/QtGui/qkeysequence.h + mdp:/usr/include/qt6/QtGui/qpaintdevice.h + mdp:/usr/include/qt6/QtGui/qpalette.h + mdp:/usr/include/qt6/QtGui/qpixelformat.h + mdp:/usr/include/qt6/QtGui/qpixmap.h + mdp:/usr/include/qt6/QtGui/qpolygon.h + mdp:/usr/include/qt6/QtGui/qregion.h + mdp:/usr/include/qt6/QtGui/qrgb.h + mdp:/usr/include/qt6/QtGui/qrgba64.h + mdp:/usr/include/qt6/QtGui/qtgui-config.h + mdp:/usr/include/qt6/QtGui/qtguiexports.h + mdp:/usr/include/qt6/QtGui/qtguiglobal.h + mdp:/usr/include/qt6/QtGui/qtransform.h + mdp:/usr/include/qt6/QtGui/qvalidator.h + mdp:/usr/include/qt6/QtGui/qwindowdefs.h + mdp:/usr/include/qt6/QtWidgets/QHeaderView + mdp:/usr/include/qt6/QtWidgets/qabstractitemdelegate.h + mdp:/usr/include/qt6/QtWidgets/qabstractitemview.h + mdp:/usr/include/qt6/QtWidgets/qabstractscrollarea.h + mdp:/usr/include/qt6/QtWidgets/qabstractslider.h + mdp:/usr/include/qt6/QtWidgets/qabstractspinbox.h + mdp:/usr/include/qt6/QtWidgets/qframe.h + mdp:/usr/include/qt6/QtWidgets/qheaderview.h + mdp:/usr/include/qt6/QtWidgets/qrubberband.h + mdp:/usr/include/qt6/QtWidgets/qsizepolicy.h + mdp:/usr/include/qt6/QtWidgets/qslider.h + mdp:/usr/include/qt6/QtWidgets/qstyle.h + mdp:/usr/include/qt6/QtWidgets/qstyleoption.h + mdp:/usr/include/qt6/QtWidgets/qtabbar.h + mdp:/usr/include/qt6/QtWidgets/qtabwidget.h + mdp:/usr/include/qt6/QtWidgets/qtwidgets-config.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsexports.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsglobal.h + mdp:/usr/include/qt6/QtWidgets/qwidget.h + mdp:/usr/include/sched.h + mdp:/usr/include/stdc-predef.h + mdp:/usr/include/stdint.h + mdp:/usr/include/stdio.h + mdp:/usr/include/stdlib.h + mdp:/usr/include/string.h + mdp:/usr/include/strings.h + mdp:/usr/include/sys/cdefs.h + mdp:/usr/include/sys/select.h + mdp:/usr/include/sys/single_threaded.h + mdp:/usr/include/sys/types.h + mdp:/usr/include/time.h + mdp:/usr/include/wchar.h + mdp:/usr/include/wctype.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginToolBar.h + mmc:Q_OBJECT + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginToolBar.h + mdp:/usr/include/alloca.h + mdp:/usr/include/asm-generic/bitsperlong.h + mdp:/usr/include/asm-generic/errno-base.h + mdp:/usr/include/asm-generic/errno.h + mdp:/usr/include/asm-generic/int-ll64.h + mdp:/usr/include/asm-generic/posix_types.h + mdp:/usr/include/asm-generic/types.h + mdp:/usr/include/asm/bitsperlong.h + mdp:/usr/include/asm/errno.h + mdp:/usr/include/asm/posix_types.h + mdp:/usr/include/asm/posix_types_64.h + mdp:/usr/include/asm/types.h + mdp:/usr/include/assert.h + mdp:/usr/include/bits/atomic_wide_counter.h + mdp:/usr/include/bits/byteswap.h + mdp:/usr/include/bits/cpu-set.h + mdp:/usr/include/bits/endian.h + mdp:/usr/include/bits/endianness.h + mdp:/usr/include/bits/errno.h + mdp:/usr/include/bits/floatn-common.h + mdp:/usr/include/bits/floatn.h + mdp:/usr/include/bits/libc-header-start.h + mdp:/usr/include/bits/local_lim.h + mdp:/usr/include/bits/locale.h + mdp:/usr/include/bits/long-double.h + mdp:/usr/include/bits/posix1_lim.h + mdp:/usr/include/bits/posix2_lim.h + mdp:/usr/include/bits/pthread_stack_min-dynamic.h + mdp:/usr/include/bits/pthreadtypes-arch.h + mdp:/usr/include/bits/pthreadtypes.h + mdp:/usr/include/bits/sched.h + mdp:/usr/include/bits/select.h + mdp:/usr/include/bits/setjmp.h + mdp:/usr/include/bits/stdint-intn.h + mdp:/usr/include/bits/stdint-least.h + mdp:/usr/include/bits/stdint-uintn.h + mdp:/usr/include/bits/stdio_lim.h + mdp:/usr/include/bits/stdlib-float.h + mdp:/usr/include/bits/struct_mutex.h + mdp:/usr/include/bits/struct_rwlock.h + mdp:/usr/include/bits/thread-shared-types.h + mdp:/usr/include/bits/time.h + mdp:/usr/include/bits/time64.h + mdp:/usr/include/bits/timesize.h + mdp:/usr/include/bits/timex.h + mdp:/usr/include/bits/types.h + mdp:/usr/include/bits/types/FILE.h + mdp:/usr/include/bits/types/__FILE.h + mdp:/usr/include/bits/types/__fpos64_t.h + mdp:/usr/include/bits/types/__fpos_t.h + mdp:/usr/include/bits/types/__locale_t.h + mdp:/usr/include/bits/types/__mbstate_t.h + mdp:/usr/include/bits/types/__sigset_t.h + mdp:/usr/include/bits/types/clock_t.h + mdp:/usr/include/bits/types/clockid_t.h + mdp:/usr/include/bits/types/cookie_io_functions_t.h + mdp:/usr/include/bits/types/error_t.h + mdp:/usr/include/bits/types/locale_t.h + mdp:/usr/include/bits/types/mbstate_t.h + mdp:/usr/include/bits/types/sigset_t.h + mdp:/usr/include/bits/types/struct_FILE.h + mdp:/usr/include/bits/types/struct___jmp_buf_tag.h + mdp:/usr/include/bits/types/struct_itimerspec.h + mdp:/usr/include/bits/types/struct_sched_param.h + mdp:/usr/include/bits/types/struct_timespec.h + mdp:/usr/include/bits/types/struct_timeval.h + mdp:/usr/include/bits/types/struct_tm.h + mdp:/usr/include/bits/types/time_t.h + mdp:/usr/include/bits/types/timer_t.h + mdp:/usr/include/bits/types/wint_t.h + mdp:/usr/include/bits/typesizes.h + mdp:/usr/include/bits/uintn-identity.h + mdp:/usr/include/bits/uio_lim.h + mdp:/usr/include/bits/waitflags.h + mdp:/usr/include/bits/waitstatus.h + mdp:/usr/include/bits/wchar.h + mdp:/usr/include/bits/wctype-wchar.h + mdp:/usr/include/bits/wordsize.h + mdp:/usr/include/bits/xopen_lim.h + mdp:/usr/include/c++/16.1.1/algorithm + mdp:/usr/include/c++/16.1.1/array + mdp:/usr/include/c++/16.1.1/atomic + mdp:/usr/include/c++/16.1.1/backward/auto_ptr.h + mdp:/usr/include/c++/16.1.1/backward/binders.h + mdp:/usr/include/c++/16.1.1/bit + mdp:/usr/include/c++/16.1.1/bits/algorithmfwd.h + mdp:/usr/include/c++/16.1.1/bits/align.h + mdp:/usr/include/c++/16.1.1/bits/alloc_traits.h + mdp:/usr/include/c++/16.1.1/bits/allocated_ptr.h + mdp:/usr/include/c++/16.1.1/bits/allocator.h + mdp:/usr/include/c++/16.1.1/bits/atomic_base.h + mdp:/usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h + mdp:/usr/include/c++/16.1.1/bits/atomic_wait.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.tcc + mdp:/usr/include/c++/16.1.1/bits/basic_string.h + mdp:/usr/include/c++/16.1.1/bits/basic_string.tcc + mdp:/usr/include/c++/16.1.1/bits/binders.h + mdp:/usr/include/c++/16.1.1/bits/char_traits.h + mdp:/usr/include/c++/16.1.1/bits/charconv.h + mdp:/usr/include/c++/16.1.1/bits/chrono.h + mdp:/usr/include/c++/16.1.1/bits/chrono_io.h + mdp:/usr/include/c++/16.1.1/bits/concept_check.h + mdp:/usr/include/c++/16.1.1/bits/cpp_type_traits.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_forced.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_init_exception.h + mdp:/usr/include/c++/16.1.1/bits/enable_special_members.h + mdp:/usr/include/c++/16.1.1/bits/erase_if.h + mdp:/usr/include/c++/16.1.1/bits/exception.h + mdp:/usr/include/c++/16.1.1/bits/exception_defines.h + mdp:/usr/include/c++/16.1.1/bits/exception_ptr.h + mdp:/usr/include/c++/16.1.1/bits/functexcept.h + mdp:/usr/include/c++/16.1.1/bits/functional_hash.h + mdp:/usr/include/c++/16.1.1/bits/hash_bytes.h + mdp:/usr/include/c++/16.1.1/bits/hashtable.h + mdp:/usr/include/c++/16.1.1/bits/hashtable_policy.h + mdp:/usr/include/c++/16.1.1/bits/intcmp.h + mdp:/usr/include/c++/16.1.1/bits/invoke.h + mdp:/usr/include/c++/16.1.1/bits/ios_base.h + mdp:/usr/include/c++/16.1.1/bits/istream.tcc + mdp:/usr/include/c++/16.1.1/bits/iterator_concepts.h + mdp:/usr/include/c++/16.1.1/bits/list.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_classes.h + mdp:/usr/include/c++/16.1.1/bits/locale_classes.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_facets.h + mdp:/usr/include/c++/16.1.1/bits/locale_facets.tcc + mdp:/usr/include/c++/16.1.1/bits/localefwd.h + mdp:/usr/include/c++/16.1.1/bits/max_size_type.h + mdp:/usr/include/c++/16.1.1/bits/memory_resource.h + mdp:/usr/include/c++/16.1.1/bits/memoryfwd.h + mdp:/usr/include/c++/16.1.1/bits/move.h + mdp:/usr/include/c++/16.1.1/bits/nested_exception.h + mdp:/usr/include/c++/16.1.1/bits/new_allocator.h + mdp:/usr/include/c++/16.1.1/bits/new_except.h + mdp:/usr/include/c++/16.1.1/bits/new_throw.h + mdp:/usr/include/c++/16.1.1/bits/node_handle.h + mdp:/usr/include/c++/16.1.1/bits/ostream.h + mdp:/usr/include/c++/16.1.1/bits/ostream.tcc + mdp:/usr/include/c++/16.1.1/bits/ostream_insert.h + mdp:/usr/include/c++/16.1.1/bits/ostream_print.h + mdp:/usr/include/c++/16.1.1/bits/parse_numbers.h + mdp:/usr/include/c++/16.1.1/bits/postypes.h + mdp:/usr/include/c++/16.1.1/bits/predefined_ops.h + mdp:/usr/include/c++/16.1.1/bits/ptr_traits.h + mdp:/usr/include/c++/16.1.1/bits/range_access.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algo.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algobase.h + mdp:/usr/include/c++/16.1.1/bits/ranges_base.h + mdp:/usr/include/c++/16.1.1/bits/ranges_cmp.h + mdp:/usr/include/c++/16.1.1/bits/ranges_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/ranges_util.h + mdp:/usr/include/c++/16.1.1/bits/refwrap.h + mdp:/usr/include/c++/16.1.1/bits/requires_hosted.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_atomic.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_base.h + mdp:/usr/include/c++/16.1.1/bits/specfun.h + mdp:/usr/include/c++/16.1.1/bits/sstream.tcc + mdp:/usr/include/c++/16.1.1/bits/std_abs.h + mdp:/usr/include/c++/16.1.1/bits/std_function.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_except.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throw.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h + mdp:/usr/include/c++/16.1.1/bits/stl_algo.h + mdp:/usr/include/c++/16.1.1/bits/stl_algobase.h + mdp:/usr/include/c++/16.1.1/bits/stl_bvector.h + mdp:/usr/include/c++/16.1.1/bits/stl_construct.h + mdp:/usr/include/c++/16.1.1/bits/stl_function.h + mdp:/usr/include/c++/16.1.1/bits/stl_heap.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_types.h + mdp:/usr/include/c++/16.1.1/bits/stl_list.h + mdp:/usr/include/c++/16.1.1/bits/stl_map.h + mdp:/usr/include/c++/16.1.1/bits/stl_multimap.h + mdp:/usr/include/c++/16.1.1/bits/stl_multiset.h + mdp:/usr/include/c++/16.1.1/bits/stl_numeric.h + mdp:/usr/include/c++/16.1.1/bits/stl_pair.h + mdp:/usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h + mdp:/usr/include/c++/16.1.1/bits/stl_relops.h + mdp:/usr/include/c++/16.1.1/bits/stl_set.h + mdp:/usr/include/c++/16.1.1/bits/stl_tempbuf.h + mdp:/usr/include/c++/16.1.1/bits/stl_tree.h + mdp:/usr/include/c++/16.1.1/bits/stl_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/stl_vector.h + mdp:/usr/include/c++/16.1.1/bits/stream_iterator.h + mdp:/usr/include/c++/16.1.1/bits/streambuf.tcc + mdp:/usr/include/c++/16.1.1/bits/streambuf_iterator.h + mdp:/usr/include/c++/16.1.1/bits/string_view.tcc + mdp:/usr/include/c++/16.1.1/bits/stringfwd.h + mdp:/usr/include/c++/16.1.1/bits/uniform_int_dist.h + mdp:/usr/include/c++/16.1.1/bits/unique_ptr.h + mdp:/usr/include/c++/16.1.1/bits/unordered_map.h + mdp:/usr/include/c++/16.1.1/bits/unordered_set.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator_args.h + mdp:/usr/include/c++/16.1.1/bits/utility.h + mdp:/usr/include/c++/16.1.1/bits/vector.tcc + mdp:/usr/include/c++/16.1.1/bits/version.h + mdp:/usr/include/c++/16.1.1/cassert + mdp:/usr/include/c++/16.1.1/cctype + mdp:/usr/include/c++/16.1.1/cerrno + mdp:/usr/include/c++/16.1.1/charconv + mdp:/usr/include/c++/16.1.1/chrono + mdp:/usr/include/c++/16.1.1/climits + mdp:/usr/include/c++/16.1.1/clocale + mdp:/usr/include/c++/16.1.1/cmath + mdp:/usr/include/c++/16.1.1/compare + mdp:/usr/include/c++/16.1.1/concepts + mdp:/usr/include/c++/16.1.1/cstddef + mdp:/usr/include/c++/16.1.1/cstdint + mdp:/usr/include/c++/16.1.1/cstdio + mdp:/usr/include/c++/16.1.1/cstdlib + mdp:/usr/include/c++/16.1.1/cstring + mdp:/usr/include/c++/16.1.1/ctime + mdp:/usr/include/c++/16.1.1/cwchar + mdp:/usr/include/c++/16.1.1/cwctype + mdp:/usr/include/c++/16.1.1/debug/assertions.h + mdp:/usr/include/c++/16.1.1/debug/debug.h + mdp:/usr/include/c++/16.1.1/exception + mdp:/usr/include/c++/16.1.1/ext/aligned_buffer.h + mdp:/usr/include/c++/16.1.1/ext/alloc_traits.h + mdp:/usr/include/c++/16.1.1/ext/atomicity.h + mdp:/usr/include/c++/16.1.1/ext/concurrence.h + mdp:/usr/include/c++/16.1.1/ext/numeric_traits.h + mdp:/usr/include/c++/16.1.1/ext/string_conversions.h + mdp:/usr/include/c++/16.1.1/ext/type_traits.h + mdp:/usr/include/c++/16.1.1/format + mdp:/usr/include/c++/16.1.1/functional + mdp:/usr/include/c++/16.1.1/initializer_list + mdp:/usr/include/c++/16.1.1/ios + mdp:/usr/include/c++/16.1.1/iosfwd + mdp:/usr/include/c++/16.1.1/istream + mdp:/usr/include/c++/16.1.1/iterator + mdp:/usr/include/c++/16.1.1/limits + mdp:/usr/include/c++/16.1.1/list + mdp:/usr/include/c++/16.1.1/map + mdp:/usr/include/c++/16.1.1/memory + mdp:/usr/include/c++/16.1.1/new + mdp:/usr/include/c++/16.1.1/numeric + mdp:/usr/include/c++/16.1.1/optional + mdp:/usr/include/c++/16.1.1/ostream + mdp:/usr/include/c++/16.1.1/pstl/execution_defs.h + mdp:/usr/include/c++/16.1.1/pstl/glue_numeric_defs.h + mdp:/usr/include/c++/16.1.1/pstl/pstl_config.h + mdp:/usr/include/c++/16.1.1/ratio + mdp:/usr/include/c++/16.1.1/set + mdp:/usr/include/c++/16.1.1/sstream + mdp:/usr/include/c++/16.1.1/stdexcept + mdp:/usr/include/c++/16.1.1/streambuf + mdp:/usr/include/c++/16.1.1/string + mdp:/usr/include/c++/16.1.1/string_view + mdp:/usr/include/c++/16.1.1/system_error + mdp:/usr/include/c++/16.1.1/tr1/bessel_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/beta_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/ell_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/exp_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/gamma.tcc + mdp:/usr/include/c++/16.1.1/tr1/hypergeometric.tcc + mdp:/usr/include/c++/16.1.1/tr1/legendre_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_hermite.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_laguerre.tcc + mdp:/usr/include/c++/16.1.1/tr1/riemann_zeta.tcc + mdp:/usr/include/c++/16.1.1/tr1/special_function_util.h + mdp:/usr/include/c++/16.1.1/tuple + mdp:/usr/include/c++/16.1.1/type_traits + mdp:/usr/include/c++/16.1.1/typeinfo + mdp:/usr/include/c++/16.1.1/unordered_map + mdp:/usr/include/c++/16.1.1/unordered_set + mdp:/usr/include/c++/16.1.1/utility + mdp:/usr/include/c++/16.1.1/variant + mdp:/usr/include/c++/16.1.1/vector + mdp:/usr/include/c++/16.1.1/version + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h + mdp:/usr/include/ctype.h + mdp:/usr/include/endian.h + mdp:/usr/include/errno.h + mdp:/usr/include/features-time64.h + mdp:/usr/include/features.h + mdp:/usr/include/gnu/stubs-64.h + mdp:/usr/include/gnu/stubs.h + mdp:/usr/include/limits.h + mdp:/usr/include/linux/errno.h + mdp:/usr/include/linux/limits.h + mdp:/usr/include/linux/posix_types.h + mdp:/usr/include/linux/sched/types.h + mdp:/usr/include/linux/stddef.h + mdp:/usr/include/linux/types.h + mdp:/usr/include/locale.h + mdp:/usr/include/pthread.h + mdp:/usr/include/qt6/QtCore/q17memory.h + mdp:/usr/include/qt6/QtCore/q20bit.h + mdp:/usr/include/qt6/QtCore/q20functional.h + mdp:/usr/include/qt6/QtCore/q20iterator.h + mdp:/usr/include/qt6/QtCore/q20memory.h + mdp:/usr/include/qt6/QtCore/q20type_traits.h + mdp:/usr/include/qt6/QtCore/q20utility.h + mdp:/usr/include/qt6/QtCore/q23type_traits.h + mdp:/usr/include/qt6/QtCore/q23utility.h + mdp:/usr/include/qt6/QtCore/qalgorithms.h + mdp:/usr/include/qt6/QtCore/qalloc.h + mdp:/usr/include/qt6/QtCore/qanystringview.h + mdp:/usr/include/qt6/QtCore/qarraydata.h + mdp:/usr/include/qt6/QtCore/qarraydataops.h + mdp:/usr/include/qt6/QtCore/qarraydatapointer.h + mdp:/usr/include/qt6/QtCore/qassert.h + mdp:/usr/include/qt6/QtCore/qatomic.h + mdp:/usr/include/qt6/QtCore/qatomic_cxx11.h + mdp:/usr/include/qt6/QtCore/qbasicatomic.h + mdp:/usr/include/qt6/QtCore/qbindingstorage.h + mdp:/usr/include/qt6/QtCore/qbytearray.h + mdp:/usr/include/qt6/QtCore/qbytearrayalgorithms.h + mdp:/usr/include/qt6/QtCore/qbytearraylist.h + mdp:/usr/include/qt6/QtCore/qbytearrayview.h + mdp:/usr/include/qt6/QtCore/qchar.h + mdp:/usr/include/qt6/QtCore/qcheckedint_impl.h + mdp:/usr/include/qt6/QtCore/qcompare.h + mdp:/usr/include/qt6/QtCore/qcompare_impl.h + mdp:/usr/include/qt6/QtCore/qcomparehelpers.h + mdp:/usr/include/qt6/QtCore/qcompilerdetection.h + mdp:/usr/include/qt6/QtCore/qconfig.h + mdp:/usr/include/qt6/QtCore/qconstructormacros.h + mdp:/usr/include/qt6/QtCore/qcontainerfwd.h + mdp:/usr/include/qt6/QtCore/qcontainerinfo.h + mdp:/usr/include/qt6/QtCore/qcontainertools_impl.h + mdp:/usr/include/qt6/QtCore/qcontiguouscache.h + mdp:/usr/include/qt6/QtCore/qdarwinhelpers.h + mdp:/usr/include/qt6/QtCore/qdatastream.h + mdp:/usr/include/qt6/QtCore/qdebug.h + mdp:/usr/include/qt6/QtCore/qendian.h + mdp:/usr/include/qt6/QtCore/qexceptionhandling.h + mdp:/usr/include/qt6/QtCore/qflags.h + mdp:/usr/include/qt6/QtCore/qfloat16.h + mdp:/usr/include/qt6/QtCore/qforeach.h + mdp:/usr/include/qt6/QtCore/qfunctionaltools_impl.h + mdp:/usr/include/qt6/QtCore/qfunctionpointer.h + mdp:/usr/include/qt6/QtCore/qgenericatomic.h + mdp:/usr/include/qt6/QtCore/qglobal.h + mdp:/usr/include/qt6/QtCore/qglobalstatic.h + mdp:/usr/include/qt6/QtCore/qhash.h + mdp:/usr/include/qt6/QtCore/qhashfunctions.h + mdp:/usr/include/qt6/QtCore/qiodevicebase.h + mdp:/usr/include/qt6/QtCore/qiterable.h + mdp:/usr/include/qt6/QtCore/qiterator.h + mdp:/usr/include/qt6/QtCore/qlatin1stringview.h + mdp:/usr/include/qt6/QtCore/qline.h + mdp:/usr/include/qt6/QtCore/qlist.h + mdp:/usr/include/qt6/QtCore/qlogging.h + mdp:/usr/include/qt6/QtCore/qmalloc.h + mdp:/usr/include/qt6/QtCore/qmap.h + mdp:/usr/include/qt6/QtCore/qmargins.h + mdp:/usr/include/qt6/QtCore/qmath.h + mdp:/usr/include/qt6/QtCore/qmetacontainer.h + mdp:/usr/include/qt6/QtCore/qmetatype.h + mdp:/usr/include/qt6/QtCore/qminmax.h + mdp:/usr/include/qt6/QtCore/qnamespace.h + mdp:/usr/include/qt6/QtCore/qnumeric.h + mdp:/usr/include/qt6/QtCore/qobject.h + mdp:/usr/include/qt6/QtCore/qobject_impl.h + mdp:/usr/include/qt6/QtCore/qobjectdefs.h + mdp:/usr/include/qt6/QtCore/qobjectdefs_impl.h + mdp:/usr/include/qt6/QtCore/qoverload.h + mdp:/usr/include/qt6/QtCore/qpair.h + mdp:/usr/include/qt6/QtCore/qpoint.h + mdp:/usr/include/qt6/QtCore/qprocessordetection.h + mdp:/usr/include/qt6/QtCore/qrect.h + mdp:/usr/include/qt6/QtCore/qrefcount.h + mdp:/usr/include/qt6/QtCore/qscopedpointer.h + mdp:/usr/include/qt6/QtCore/qscopeguard.h + mdp:/usr/include/qt6/QtCore/qset.h + mdp:/usr/include/qt6/QtCore/qshareddata.h + mdp:/usr/include/qt6/QtCore/qshareddata_impl.h + mdp:/usr/include/qt6/QtCore/qsharedpointer.h + mdp:/usr/include/qt6/QtCore/qsharedpointer_impl.h + mdp:/usr/include/qt6/QtCore/qsize.h + mdp:/usr/include/qt6/QtCore/qspan.h + mdp:/usr/include/qt6/QtCore/qstdlibdetection.h + mdp:/usr/include/qt6/QtCore/qstring.h + mdp:/usr/include/qt6/QtCore/qstringalgorithms.h + mdp:/usr/include/qt6/QtCore/qstringbuilder.h + mdp:/usr/include/qt6/QtCore/qstringconverter.h + mdp:/usr/include/qt6/QtCore/qstringconverter_base.h + mdp:/usr/include/qt6/QtCore/qstringfwd.h + mdp:/usr/include/qt6/QtCore/qstringlist.h + mdp:/usr/include/qt6/QtCore/qstringmatcher.h + mdp:/usr/include/qt6/QtCore/qstringtokenizer.h + mdp:/usr/include/qt6/QtCore/qstringview.h + mdp:/usr/include/qt6/QtCore/qswap.h + mdp:/usr/include/qt6/QtCore/qsysinfo.h + mdp:/usr/include/qt6/QtCore/qsystemdetection.h + mdp:/usr/include/qt6/QtCore/qtaggedpointer.h + mdp:/usr/include/qt6/QtCore/qtclasshelpermacros.h + mdp:/usr/include/qt6/QtCore/qtconfiginclude.h + mdp:/usr/include/qt6/QtCore/qtconfigmacros.h + mdp:/usr/include/qt6/QtCore/qtcore-config.h + mdp:/usr/include/qt6/QtCore/qtcoreexports.h + mdp:/usr/include/qt6/QtCore/qtcoreglobal.h + mdp:/usr/include/qt6/QtCore/qtdeprecationdefinitions.h + mdp:/usr/include/qt6/QtCore/qtdeprecationmarkers.h + mdp:/usr/include/qt6/QtCore/qtenvironmentvariables.h + mdp:/usr/include/qt6/QtCore/qtextstream.h + mdp:/usr/include/qt6/QtCore/qtformat_impl.h + mdp:/usr/include/qt6/QtCore/qtmetamacros.h + mdp:/usr/include/qt6/QtCore/qtnoop.h + mdp:/usr/include/qt6/QtCore/qtpreprocessorsupport.h + mdp:/usr/include/qt6/QtCore/qtresource.h + mdp:/usr/include/qt6/QtCore/qttranslation.h + mdp:/usr/include/qt6/QtCore/qttypetraits.h + mdp:/usr/include/qt6/QtCore/qtversion.h + mdp:/usr/include/qt6/QtCore/qtversionchecks.h + mdp:/usr/include/qt6/QtCore/qtypeinfo.h + mdp:/usr/include/qt6/QtCore/qtypes.h + mdp:/usr/include/qt6/QtCore/qutf8stringview.h + mdp:/usr/include/qt6/QtCore/qvariant.h + mdp:/usr/include/qt6/QtCore/qvarlengtharray.h + mdp:/usr/include/qt6/QtCore/qversiontagging.h + mdp:/usr/include/qt6/QtCore/qxptype_traits.h + mdp:/usr/include/qt6/QtCore/qyieldcpu.h + mdp:/usr/include/qt6/QtGui/QKeySequence + mdp:/usr/include/qt6/QtGui/qaction.h + mdp:/usr/include/qt6/QtGui/qbitmap.h + mdp:/usr/include/qt6/QtGui/qbrush.h + mdp:/usr/include/qt6/QtGui/qcolor.h + mdp:/usr/include/qt6/QtGui/qcursor.h + mdp:/usr/include/qt6/QtGui/qfont.h + mdp:/usr/include/qt6/QtGui/qfontinfo.h + mdp:/usr/include/qt6/QtGui/qfontmetrics.h + mdp:/usr/include/qt6/QtGui/qfontvariableaxis.h + mdp:/usr/include/qt6/QtGui/qicon.h + mdp:/usr/include/qt6/QtGui/qimage.h + mdp:/usr/include/qt6/QtGui/qkeysequence.h + mdp:/usr/include/qt6/QtGui/qpaintdevice.h + mdp:/usr/include/qt6/QtGui/qpalette.h + mdp:/usr/include/qt6/QtGui/qpixelformat.h + mdp:/usr/include/qt6/QtGui/qpixmap.h + mdp:/usr/include/qt6/QtGui/qpolygon.h + mdp:/usr/include/qt6/QtGui/qregion.h + mdp:/usr/include/qt6/QtGui/qrgb.h + mdp:/usr/include/qt6/QtGui/qrgba64.h + mdp:/usr/include/qt6/QtGui/qtgui-config.h + mdp:/usr/include/qt6/QtGui/qtguiexports.h + mdp:/usr/include/qt6/QtGui/qtguiglobal.h + mdp:/usr/include/qt6/QtGui/qtransform.h + mdp:/usr/include/qt6/QtGui/qwindowdefs.h + mdp:/usr/include/qt6/QtWidgets/QToolBar + mdp:/usr/include/qt6/QtWidgets/qsizepolicy.h + mdp:/usr/include/qt6/QtWidgets/qtoolbar.h + mdp:/usr/include/qt6/QtWidgets/qtwidgets-config.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsexports.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsglobal.h + mdp:/usr/include/qt6/QtWidgets/qwidget.h + mdp:/usr/include/sched.h + mdp:/usr/include/stdc-predef.h + mdp:/usr/include/stdint.h + mdp:/usr/include/stdio.h + mdp:/usr/include/stdlib.h + mdp:/usr/include/string.h + mdp:/usr/include/strings.h + mdp:/usr/include/sys/cdefs.h + mdp:/usr/include/sys/select.h + mdp:/usr/include/sys/single_threaded.h + mdp:/usr/include/sys/types.h + mdp:/usr/include/time.h + mdp:/usr/include/wchar.h + mdp:/usr/include/wctype.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EditableGridWidget.h + mmc:Q_OBJECT + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EditableGridWidget.h + mdp:/usr/include/alloca.h + mdp:/usr/include/asm-generic/bitsperlong.h + mdp:/usr/include/asm-generic/errno-base.h + mdp:/usr/include/asm-generic/errno.h + mdp:/usr/include/asm-generic/int-ll64.h + mdp:/usr/include/asm-generic/posix_types.h + mdp:/usr/include/asm-generic/types.h + mdp:/usr/include/asm/bitsperlong.h + mdp:/usr/include/asm/errno.h + mdp:/usr/include/asm/posix_types.h + mdp:/usr/include/asm/posix_types_64.h + mdp:/usr/include/asm/types.h + mdp:/usr/include/assert.h + mdp:/usr/include/bits/atomic_wide_counter.h + mdp:/usr/include/bits/byteswap.h + mdp:/usr/include/bits/cpu-set.h + mdp:/usr/include/bits/endian.h + mdp:/usr/include/bits/endianness.h + mdp:/usr/include/bits/errno.h + mdp:/usr/include/bits/floatn-common.h + mdp:/usr/include/bits/floatn.h + mdp:/usr/include/bits/libc-header-start.h + mdp:/usr/include/bits/local_lim.h + mdp:/usr/include/bits/locale.h + mdp:/usr/include/bits/long-double.h + mdp:/usr/include/bits/posix1_lim.h + mdp:/usr/include/bits/posix2_lim.h + mdp:/usr/include/bits/pthread_stack_min-dynamic.h + mdp:/usr/include/bits/pthreadtypes-arch.h + mdp:/usr/include/bits/pthreadtypes.h + mdp:/usr/include/bits/sched.h + mdp:/usr/include/bits/select.h + mdp:/usr/include/bits/setjmp.h + mdp:/usr/include/bits/stdint-intn.h + mdp:/usr/include/bits/stdint-least.h + mdp:/usr/include/bits/stdint-uintn.h + mdp:/usr/include/bits/stdio_lim.h + mdp:/usr/include/bits/stdlib-float.h + mdp:/usr/include/bits/struct_mutex.h + mdp:/usr/include/bits/struct_rwlock.h + mdp:/usr/include/bits/thread-shared-types.h + mdp:/usr/include/bits/time.h + mdp:/usr/include/bits/time64.h + mdp:/usr/include/bits/timesize.h + mdp:/usr/include/bits/timex.h + mdp:/usr/include/bits/types.h + mdp:/usr/include/bits/types/FILE.h + mdp:/usr/include/bits/types/__FILE.h + mdp:/usr/include/bits/types/__fpos64_t.h + mdp:/usr/include/bits/types/__fpos_t.h + mdp:/usr/include/bits/types/__locale_t.h + mdp:/usr/include/bits/types/__mbstate_t.h + mdp:/usr/include/bits/types/__sigset_t.h + mdp:/usr/include/bits/types/clock_t.h + mdp:/usr/include/bits/types/clockid_t.h + mdp:/usr/include/bits/types/cookie_io_functions_t.h + mdp:/usr/include/bits/types/error_t.h + mdp:/usr/include/bits/types/locale_t.h + mdp:/usr/include/bits/types/mbstate_t.h + mdp:/usr/include/bits/types/sigset_t.h + mdp:/usr/include/bits/types/struct_FILE.h + mdp:/usr/include/bits/types/struct___jmp_buf_tag.h + mdp:/usr/include/bits/types/struct_itimerspec.h + mdp:/usr/include/bits/types/struct_sched_param.h + mdp:/usr/include/bits/types/struct_timespec.h + mdp:/usr/include/bits/types/struct_timeval.h + mdp:/usr/include/bits/types/struct_tm.h + mdp:/usr/include/bits/types/time_t.h + mdp:/usr/include/bits/types/timer_t.h + mdp:/usr/include/bits/types/wint_t.h + mdp:/usr/include/bits/typesizes.h + mdp:/usr/include/bits/uintn-identity.h + mdp:/usr/include/bits/uio_lim.h + mdp:/usr/include/bits/waitflags.h + mdp:/usr/include/bits/waitstatus.h + mdp:/usr/include/bits/wchar.h + mdp:/usr/include/bits/wctype-wchar.h + mdp:/usr/include/bits/wordsize.h + mdp:/usr/include/bits/xopen_lim.h + mdp:/usr/include/c++/16.1.1/algorithm + mdp:/usr/include/c++/16.1.1/array + mdp:/usr/include/c++/16.1.1/atomic + mdp:/usr/include/c++/16.1.1/backward/auto_ptr.h + mdp:/usr/include/c++/16.1.1/backward/binders.h + mdp:/usr/include/c++/16.1.1/bit + mdp:/usr/include/c++/16.1.1/bits/algorithmfwd.h + mdp:/usr/include/c++/16.1.1/bits/align.h + mdp:/usr/include/c++/16.1.1/bits/alloc_traits.h + mdp:/usr/include/c++/16.1.1/bits/allocated_ptr.h + mdp:/usr/include/c++/16.1.1/bits/allocator.h + mdp:/usr/include/c++/16.1.1/bits/atomic_base.h + mdp:/usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h + mdp:/usr/include/c++/16.1.1/bits/atomic_wait.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.tcc + mdp:/usr/include/c++/16.1.1/bits/basic_string.h + mdp:/usr/include/c++/16.1.1/bits/basic_string.tcc + mdp:/usr/include/c++/16.1.1/bits/binders.h + mdp:/usr/include/c++/16.1.1/bits/char_traits.h + mdp:/usr/include/c++/16.1.1/bits/charconv.h + mdp:/usr/include/c++/16.1.1/bits/chrono.h + mdp:/usr/include/c++/16.1.1/bits/chrono_io.h + mdp:/usr/include/c++/16.1.1/bits/concept_check.h + mdp:/usr/include/c++/16.1.1/bits/cpp_type_traits.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_forced.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_init_exception.h + mdp:/usr/include/c++/16.1.1/bits/enable_special_members.h + mdp:/usr/include/c++/16.1.1/bits/erase_if.h + mdp:/usr/include/c++/16.1.1/bits/exception.h + mdp:/usr/include/c++/16.1.1/bits/exception_defines.h + mdp:/usr/include/c++/16.1.1/bits/exception_ptr.h + mdp:/usr/include/c++/16.1.1/bits/functexcept.h + mdp:/usr/include/c++/16.1.1/bits/functional_hash.h + mdp:/usr/include/c++/16.1.1/bits/hash_bytes.h + mdp:/usr/include/c++/16.1.1/bits/hashtable.h + mdp:/usr/include/c++/16.1.1/bits/hashtable_policy.h + mdp:/usr/include/c++/16.1.1/bits/intcmp.h + mdp:/usr/include/c++/16.1.1/bits/invoke.h + mdp:/usr/include/c++/16.1.1/bits/ios_base.h + mdp:/usr/include/c++/16.1.1/bits/istream.tcc + mdp:/usr/include/c++/16.1.1/bits/iterator_concepts.h + mdp:/usr/include/c++/16.1.1/bits/list.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_classes.h + mdp:/usr/include/c++/16.1.1/bits/locale_classes.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_facets.h + mdp:/usr/include/c++/16.1.1/bits/locale_facets.tcc + mdp:/usr/include/c++/16.1.1/bits/localefwd.h + mdp:/usr/include/c++/16.1.1/bits/max_size_type.h + mdp:/usr/include/c++/16.1.1/bits/memory_resource.h + mdp:/usr/include/c++/16.1.1/bits/memoryfwd.h + mdp:/usr/include/c++/16.1.1/bits/move.h + mdp:/usr/include/c++/16.1.1/bits/nested_exception.h + mdp:/usr/include/c++/16.1.1/bits/new_allocator.h + mdp:/usr/include/c++/16.1.1/bits/new_except.h + mdp:/usr/include/c++/16.1.1/bits/new_throw.h + mdp:/usr/include/c++/16.1.1/bits/node_handle.h + mdp:/usr/include/c++/16.1.1/bits/ostream.h + mdp:/usr/include/c++/16.1.1/bits/ostream.tcc + mdp:/usr/include/c++/16.1.1/bits/ostream_insert.h + mdp:/usr/include/c++/16.1.1/bits/ostream_print.h + mdp:/usr/include/c++/16.1.1/bits/parse_numbers.h + mdp:/usr/include/c++/16.1.1/bits/postypes.h + mdp:/usr/include/c++/16.1.1/bits/predefined_ops.h + mdp:/usr/include/c++/16.1.1/bits/ptr_traits.h + mdp:/usr/include/c++/16.1.1/bits/range_access.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algo.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algobase.h + mdp:/usr/include/c++/16.1.1/bits/ranges_base.h + mdp:/usr/include/c++/16.1.1/bits/ranges_cmp.h + mdp:/usr/include/c++/16.1.1/bits/ranges_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/ranges_util.h + mdp:/usr/include/c++/16.1.1/bits/refwrap.h + mdp:/usr/include/c++/16.1.1/bits/requires_hosted.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_atomic.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_base.h + mdp:/usr/include/c++/16.1.1/bits/specfun.h + mdp:/usr/include/c++/16.1.1/bits/sstream.tcc + mdp:/usr/include/c++/16.1.1/bits/std_abs.h + mdp:/usr/include/c++/16.1.1/bits/std_function.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_except.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throw.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h + mdp:/usr/include/c++/16.1.1/bits/stl_algo.h + mdp:/usr/include/c++/16.1.1/bits/stl_algobase.h + mdp:/usr/include/c++/16.1.1/bits/stl_bvector.h + mdp:/usr/include/c++/16.1.1/bits/stl_construct.h + mdp:/usr/include/c++/16.1.1/bits/stl_function.h + mdp:/usr/include/c++/16.1.1/bits/stl_heap.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_types.h + mdp:/usr/include/c++/16.1.1/bits/stl_list.h + mdp:/usr/include/c++/16.1.1/bits/stl_map.h + mdp:/usr/include/c++/16.1.1/bits/stl_multimap.h + mdp:/usr/include/c++/16.1.1/bits/stl_multiset.h + mdp:/usr/include/c++/16.1.1/bits/stl_numeric.h + mdp:/usr/include/c++/16.1.1/bits/stl_pair.h + mdp:/usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h + mdp:/usr/include/c++/16.1.1/bits/stl_relops.h + mdp:/usr/include/c++/16.1.1/bits/stl_set.h + mdp:/usr/include/c++/16.1.1/bits/stl_tempbuf.h + mdp:/usr/include/c++/16.1.1/bits/stl_tree.h + mdp:/usr/include/c++/16.1.1/bits/stl_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/stl_vector.h + mdp:/usr/include/c++/16.1.1/bits/stream_iterator.h + mdp:/usr/include/c++/16.1.1/bits/streambuf.tcc + mdp:/usr/include/c++/16.1.1/bits/streambuf_iterator.h + mdp:/usr/include/c++/16.1.1/bits/string_view.tcc + mdp:/usr/include/c++/16.1.1/bits/stringfwd.h + mdp:/usr/include/c++/16.1.1/bits/uniform_int_dist.h + mdp:/usr/include/c++/16.1.1/bits/unique_ptr.h + mdp:/usr/include/c++/16.1.1/bits/unordered_map.h + mdp:/usr/include/c++/16.1.1/bits/unordered_set.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator_args.h + mdp:/usr/include/c++/16.1.1/bits/utility.h + mdp:/usr/include/c++/16.1.1/bits/vector.tcc + mdp:/usr/include/c++/16.1.1/bits/version.h + mdp:/usr/include/c++/16.1.1/cassert + mdp:/usr/include/c++/16.1.1/cctype + mdp:/usr/include/c++/16.1.1/cerrno + mdp:/usr/include/c++/16.1.1/charconv + mdp:/usr/include/c++/16.1.1/chrono + mdp:/usr/include/c++/16.1.1/climits + mdp:/usr/include/c++/16.1.1/clocale + mdp:/usr/include/c++/16.1.1/cmath + mdp:/usr/include/c++/16.1.1/compare + mdp:/usr/include/c++/16.1.1/concepts + mdp:/usr/include/c++/16.1.1/cstddef + mdp:/usr/include/c++/16.1.1/cstdint + mdp:/usr/include/c++/16.1.1/cstdio + mdp:/usr/include/c++/16.1.1/cstdlib + mdp:/usr/include/c++/16.1.1/cstring + mdp:/usr/include/c++/16.1.1/ctime + mdp:/usr/include/c++/16.1.1/cwchar + mdp:/usr/include/c++/16.1.1/cwctype + mdp:/usr/include/c++/16.1.1/debug/assertions.h + mdp:/usr/include/c++/16.1.1/debug/debug.h + mdp:/usr/include/c++/16.1.1/exception + mdp:/usr/include/c++/16.1.1/ext/aligned_buffer.h + mdp:/usr/include/c++/16.1.1/ext/alloc_traits.h + mdp:/usr/include/c++/16.1.1/ext/atomicity.h + mdp:/usr/include/c++/16.1.1/ext/concurrence.h + mdp:/usr/include/c++/16.1.1/ext/numeric_traits.h + mdp:/usr/include/c++/16.1.1/ext/string_conversions.h + mdp:/usr/include/c++/16.1.1/ext/type_traits.h + mdp:/usr/include/c++/16.1.1/format + mdp:/usr/include/c++/16.1.1/functional + mdp:/usr/include/c++/16.1.1/initializer_list + mdp:/usr/include/c++/16.1.1/ios + mdp:/usr/include/c++/16.1.1/iosfwd + mdp:/usr/include/c++/16.1.1/istream + mdp:/usr/include/c++/16.1.1/iterator + mdp:/usr/include/c++/16.1.1/limits + mdp:/usr/include/c++/16.1.1/list + mdp:/usr/include/c++/16.1.1/map + mdp:/usr/include/c++/16.1.1/memory + mdp:/usr/include/c++/16.1.1/new + mdp:/usr/include/c++/16.1.1/numeric + mdp:/usr/include/c++/16.1.1/optional + mdp:/usr/include/c++/16.1.1/ostream + mdp:/usr/include/c++/16.1.1/pstl/execution_defs.h + mdp:/usr/include/c++/16.1.1/pstl/glue_numeric_defs.h + mdp:/usr/include/c++/16.1.1/pstl/pstl_config.h + mdp:/usr/include/c++/16.1.1/ratio + mdp:/usr/include/c++/16.1.1/set + mdp:/usr/include/c++/16.1.1/sstream + mdp:/usr/include/c++/16.1.1/stdexcept + mdp:/usr/include/c++/16.1.1/streambuf + mdp:/usr/include/c++/16.1.1/string + mdp:/usr/include/c++/16.1.1/string_view + mdp:/usr/include/c++/16.1.1/system_error + mdp:/usr/include/c++/16.1.1/tr1/bessel_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/beta_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/ell_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/exp_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/gamma.tcc + mdp:/usr/include/c++/16.1.1/tr1/hypergeometric.tcc + mdp:/usr/include/c++/16.1.1/tr1/legendre_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_hermite.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_laguerre.tcc + mdp:/usr/include/c++/16.1.1/tr1/riemann_zeta.tcc + mdp:/usr/include/c++/16.1.1/tr1/special_function_util.h + mdp:/usr/include/c++/16.1.1/tuple + mdp:/usr/include/c++/16.1.1/type_traits + mdp:/usr/include/c++/16.1.1/typeinfo + mdp:/usr/include/c++/16.1.1/unordered_map + mdp:/usr/include/c++/16.1.1/unordered_set + mdp:/usr/include/c++/16.1.1/utility + mdp:/usr/include/c++/16.1.1/variant + mdp:/usr/include/c++/16.1.1/vector + mdp:/usr/include/c++/16.1.1/version + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h + mdp:/usr/include/ctype.h + mdp:/usr/include/endian.h + mdp:/usr/include/errno.h + mdp:/usr/include/features-time64.h + mdp:/usr/include/features.h + mdp:/usr/include/gnu/stubs-64.h + mdp:/usr/include/gnu/stubs.h + mdp:/usr/include/limits.h + mdp:/usr/include/linux/errno.h + mdp:/usr/include/linux/limits.h + mdp:/usr/include/linux/posix_types.h + mdp:/usr/include/linux/sched/types.h + mdp:/usr/include/linux/stddef.h + mdp:/usr/include/linux/types.h + mdp:/usr/include/locale.h + mdp:/usr/include/pthread.h + mdp:/usr/include/qt6/QtCore/QPointer + mdp:/usr/include/qt6/QtCore/QSet + mdp:/usr/include/qt6/QtCore/QTimer + mdp:/usr/include/qt6/QtCore/q17memory.h + mdp:/usr/include/qt6/QtCore/q20bit.h + mdp:/usr/include/qt6/QtCore/q20functional.h + mdp:/usr/include/qt6/QtCore/q20iterator.h + mdp:/usr/include/qt6/QtCore/q20memory.h + mdp:/usr/include/qt6/QtCore/q20type_traits.h + mdp:/usr/include/qt6/QtCore/q20utility.h + mdp:/usr/include/qt6/QtCore/q23type_traits.h + mdp:/usr/include/qt6/QtCore/q23utility.h + mdp:/usr/include/qt6/QtCore/qabstracteventdispatcher.h + mdp:/usr/include/qt6/QtCore/qabstractitemmodel.h + mdp:/usr/include/qt6/QtCore/qalgorithms.h + mdp:/usr/include/qt6/QtCore/qalloc.h + mdp:/usr/include/qt6/QtCore/qanystringview.h + mdp:/usr/include/qt6/QtCore/qarraydata.h + mdp:/usr/include/qt6/QtCore/qarraydataops.h + mdp:/usr/include/qt6/QtCore/qarraydatapointer.h + mdp:/usr/include/qt6/QtCore/qassert.h + mdp:/usr/include/qt6/QtCore/qatomic.h + mdp:/usr/include/qt6/QtCore/qatomic_cxx11.h + mdp:/usr/include/qt6/QtCore/qbasicatomic.h + mdp:/usr/include/qt6/QtCore/qbasictimer.h + mdp:/usr/include/qt6/QtCore/qbindingstorage.h + mdp:/usr/include/qt6/QtCore/qbytearray.h + mdp:/usr/include/qt6/QtCore/qbytearrayalgorithms.h + mdp:/usr/include/qt6/QtCore/qbytearraylist.h + mdp:/usr/include/qt6/QtCore/qbytearrayview.h + mdp:/usr/include/qt6/QtCore/qchar.h + mdp:/usr/include/qt6/QtCore/qcheckedint_impl.h + mdp:/usr/include/qt6/QtCore/qcompare.h + mdp:/usr/include/qt6/QtCore/qcompare_impl.h + mdp:/usr/include/qt6/QtCore/qcomparehelpers.h + mdp:/usr/include/qt6/QtCore/qcompilerdetection.h + mdp:/usr/include/qt6/QtCore/qconfig.h + mdp:/usr/include/qt6/QtCore/qconstructormacros.h + mdp:/usr/include/qt6/QtCore/qcontainerfwd.h + mdp:/usr/include/qt6/QtCore/qcontainerinfo.h + mdp:/usr/include/qt6/QtCore/qcontainertools_impl.h + mdp:/usr/include/qt6/QtCore/qcontiguouscache.h + mdp:/usr/include/qt6/QtCore/qdarwinhelpers.h + mdp:/usr/include/qt6/QtCore/qdatastream.h + mdp:/usr/include/qt6/QtCore/qdeadlinetimer.h + mdp:/usr/include/qt6/QtCore/qdebug.h + mdp:/usr/include/qt6/QtCore/qendian.h + mdp:/usr/include/qt6/QtCore/qeventloop.h + mdp:/usr/include/qt6/QtCore/qexceptionhandling.h + mdp:/usr/include/qt6/QtCore/qflags.h + mdp:/usr/include/qt6/QtCore/qfloat16.h + mdp:/usr/include/qt6/QtCore/qforeach.h + mdp:/usr/include/qt6/QtCore/qfunctionaltools_impl.h + mdp:/usr/include/qt6/QtCore/qfunctionpointer.h + mdp:/usr/include/qt6/QtCore/qgenericatomic.h + mdp:/usr/include/qt6/QtCore/qglobal.h + mdp:/usr/include/qt6/QtCore/qglobalstatic.h + mdp:/usr/include/qt6/QtCore/qhash.h + mdp:/usr/include/qt6/QtCore/qhashfunctions.h + mdp:/usr/include/qt6/QtCore/qiodevicebase.h + mdp:/usr/include/qt6/QtCore/qitemselectionmodel.h + mdp:/usr/include/qt6/QtCore/qiterable.h + mdp:/usr/include/qt6/QtCore/qiterator.h + mdp:/usr/include/qt6/QtCore/qlatin1stringview.h + mdp:/usr/include/qt6/QtCore/qline.h + mdp:/usr/include/qt6/QtCore/qlist.h + mdp:/usr/include/qt6/QtCore/qlocale.h + mdp:/usr/include/qt6/QtCore/qlogging.h + mdp:/usr/include/qt6/QtCore/qmalloc.h + mdp:/usr/include/qt6/QtCore/qmap.h + mdp:/usr/include/qt6/QtCore/qmargins.h + mdp:/usr/include/qt6/QtCore/qmath.h + mdp:/usr/include/qt6/QtCore/qmetacontainer.h + mdp:/usr/include/qt6/QtCore/qmetatype.h + mdp:/usr/include/qt6/QtCore/qminmax.h + mdp:/usr/include/qt6/QtCore/qnamespace.h + mdp:/usr/include/qt6/QtCore/qnumeric.h + mdp:/usr/include/qt6/QtCore/qobject.h + mdp:/usr/include/qt6/QtCore/qobject_impl.h + mdp:/usr/include/qt6/QtCore/qobjectdefs.h + mdp:/usr/include/qt6/QtCore/qobjectdefs_impl.h + mdp:/usr/include/qt6/QtCore/qoverload.h + mdp:/usr/include/qt6/QtCore/qpair.h + mdp:/usr/include/qt6/QtCore/qpoint.h + mdp:/usr/include/qt6/QtCore/qpointer.h + mdp:/usr/include/qt6/QtCore/qprocessordetection.h + mdp:/usr/include/qt6/QtCore/qrect.h + mdp:/usr/include/qt6/QtCore/qrefcount.h + mdp:/usr/include/qt6/QtCore/qregularexpression.h + mdp:/usr/include/qt6/QtCore/qscopedpointer.h + mdp:/usr/include/qt6/QtCore/qscopeguard.h + mdp:/usr/include/qt6/QtCore/qset.h + mdp:/usr/include/qt6/QtCore/qshareddata.h + mdp:/usr/include/qt6/QtCore/qshareddata_impl.h + mdp:/usr/include/qt6/QtCore/qsharedpointer.h + mdp:/usr/include/qt6/QtCore/qsharedpointer_impl.h + mdp:/usr/include/qt6/QtCore/qsize.h + mdp:/usr/include/qt6/QtCore/qspan.h + mdp:/usr/include/qt6/QtCore/qstdlibdetection.h + mdp:/usr/include/qt6/QtCore/qstring.h + mdp:/usr/include/qt6/QtCore/qstringalgorithms.h + mdp:/usr/include/qt6/QtCore/qstringbuilder.h + mdp:/usr/include/qt6/QtCore/qstringconverter.h + mdp:/usr/include/qt6/QtCore/qstringconverter_base.h + mdp:/usr/include/qt6/QtCore/qstringfwd.h + mdp:/usr/include/qt6/QtCore/qstringlist.h + mdp:/usr/include/qt6/QtCore/qstringmatcher.h + mdp:/usr/include/qt6/QtCore/qstringtokenizer.h + mdp:/usr/include/qt6/QtCore/qstringview.h + mdp:/usr/include/qt6/QtCore/qswap.h + mdp:/usr/include/qt6/QtCore/qsysinfo.h + mdp:/usr/include/qt6/QtCore/qsystemdetection.h + mdp:/usr/include/qt6/QtCore/qtaggedpointer.h + mdp:/usr/include/qt6/QtCore/qtclasshelpermacros.h + mdp:/usr/include/qt6/QtCore/qtconfiginclude.h + mdp:/usr/include/qt6/QtCore/qtconfigmacros.h + mdp:/usr/include/qt6/QtCore/qtcore-config.h + mdp:/usr/include/qt6/QtCore/qtcoreexports.h + mdp:/usr/include/qt6/QtCore/qtcoreglobal.h + mdp:/usr/include/qt6/QtCore/qtdeprecationdefinitions.h + mdp:/usr/include/qt6/QtCore/qtdeprecationmarkers.h + mdp:/usr/include/qt6/QtCore/qtenvironmentvariables.h + mdp:/usr/include/qt6/QtCore/qtextstream.h + mdp:/usr/include/qt6/QtCore/qtformat_impl.h + mdp:/usr/include/qt6/QtCore/qtimer.h + mdp:/usr/include/qt6/QtCore/qtmetamacros.h + mdp:/usr/include/qt6/QtCore/qtnoop.h + mdp:/usr/include/qt6/QtCore/qtpreprocessorsupport.h + mdp:/usr/include/qt6/QtCore/qtresource.h + mdp:/usr/include/qt6/QtCore/qttranslation.h + mdp:/usr/include/qt6/QtCore/qttypetraits.h + mdp:/usr/include/qt6/QtCore/qtversion.h + mdp:/usr/include/qt6/QtCore/qtversionchecks.h + mdp:/usr/include/qt6/QtCore/qtypeinfo.h + mdp:/usr/include/qt6/QtCore/qtypes.h + mdp:/usr/include/qt6/QtCore/qutf8stringview.h + mdp:/usr/include/qt6/QtCore/qvariant.h + mdp:/usr/include/qt6/QtCore/qvarlengtharray.h + mdp:/usr/include/qt6/QtCore/qversiontagging.h + mdp:/usr/include/qt6/QtCore/qxptype_traits.h + mdp:/usr/include/qt6/QtCore/qyieldcpu.h + mdp:/usr/include/qt6/QtGui/QUndoStack + mdp:/usr/include/qt6/QtGui/qaction.h + mdp:/usr/include/qt6/QtGui/qbitmap.h + mdp:/usr/include/qt6/QtGui/qbrush.h + mdp:/usr/include/qt6/QtGui/qcolor.h + mdp:/usr/include/qt6/QtGui/qcursor.h + mdp:/usr/include/qt6/QtGui/qfont.h + mdp:/usr/include/qt6/QtGui/qfontinfo.h + mdp:/usr/include/qt6/QtGui/qfontmetrics.h + mdp:/usr/include/qt6/QtGui/qfontvariableaxis.h + mdp:/usr/include/qt6/QtGui/qicon.h + mdp:/usr/include/qt6/QtGui/qimage.h + mdp:/usr/include/qt6/QtGui/qkeysequence.h + mdp:/usr/include/qt6/QtGui/qpaintdevice.h + mdp:/usr/include/qt6/QtGui/qpalette.h + mdp:/usr/include/qt6/QtGui/qpixelformat.h + mdp:/usr/include/qt6/QtGui/qpixmap.h + mdp:/usr/include/qt6/QtGui/qpolygon.h + mdp:/usr/include/qt6/QtGui/qregion.h + mdp:/usr/include/qt6/QtGui/qrgb.h + mdp:/usr/include/qt6/QtGui/qrgba64.h + mdp:/usr/include/qt6/QtGui/qtgui-config.h + mdp:/usr/include/qt6/QtGui/qtguiexports.h + mdp:/usr/include/qt6/QtGui/qtguiglobal.h + mdp:/usr/include/qt6/QtGui/qtransform.h + mdp:/usr/include/qt6/QtGui/qundostack.h + mdp:/usr/include/qt6/QtGui/qvalidator.h + mdp:/usr/include/qt6/QtGui/qwindowdefs.h + mdp:/usr/include/qt6/QtWidgets/QHeaderView + mdp:/usr/include/qt6/QtWidgets/QStyledItemDelegate + mdp:/usr/include/qt6/QtWidgets/QTableView + mdp:/usr/include/qt6/QtWidgets/QWidget + mdp:/usr/include/qt6/QtWidgets/qabstractitemdelegate.h + mdp:/usr/include/qt6/QtWidgets/qabstractitemview.h + mdp:/usr/include/qt6/QtWidgets/qabstractscrollarea.h + mdp:/usr/include/qt6/QtWidgets/qabstractslider.h + mdp:/usr/include/qt6/QtWidgets/qabstractspinbox.h + mdp:/usr/include/qt6/QtWidgets/qframe.h + mdp:/usr/include/qt6/QtWidgets/qheaderview.h + mdp:/usr/include/qt6/QtWidgets/qrubberband.h + mdp:/usr/include/qt6/QtWidgets/qsizepolicy.h + mdp:/usr/include/qt6/QtWidgets/qslider.h + mdp:/usr/include/qt6/QtWidgets/qstyle.h + mdp:/usr/include/qt6/QtWidgets/qstyleditemdelegate.h + mdp:/usr/include/qt6/QtWidgets/qstyleoption.h + mdp:/usr/include/qt6/QtWidgets/qtabbar.h + mdp:/usr/include/qt6/QtWidgets/qtableview.h + mdp:/usr/include/qt6/QtWidgets/qtabwidget.h + mdp:/usr/include/qt6/QtWidgets/qtwidgets-config.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsexports.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsglobal.h + mdp:/usr/include/qt6/QtWidgets/qwidget.h + mdp:/usr/include/sched.h + mdp:/usr/include/stdc-predef.h + mdp:/usr/include/stdint.h + mdp:/usr/include/stdio.h + mdp:/usr/include/stdlib.h + mdp:/usr/include/string.h + mdp:/usr/include/strings.h + mdp:/usr/include/sys/cdefs.h + mdp:/usr/include/sys/select.h + mdp:/usr/include/sys/single_threaded.h + mdp:/usr/include/sys/types.h + mdp:/usr/include/time.h + mdp:/usr/include/wchar.h + mdp:/usr/include/wctype.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h +/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginSplitView.h + mmc:Q_OBJECT + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h + mdp:/home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginSplitView.h + mdp:/usr/include/alloca.h + mdp:/usr/include/asm-generic/bitsperlong.h + mdp:/usr/include/asm-generic/errno-base.h + mdp:/usr/include/asm-generic/errno.h + mdp:/usr/include/asm-generic/int-ll64.h + mdp:/usr/include/asm-generic/posix_types.h + mdp:/usr/include/asm-generic/types.h + mdp:/usr/include/asm/bitsperlong.h + mdp:/usr/include/asm/errno.h + mdp:/usr/include/asm/posix_types.h + mdp:/usr/include/asm/posix_types_64.h + mdp:/usr/include/asm/types.h + mdp:/usr/include/assert.h + mdp:/usr/include/bits/atomic_wide_counter.h + mdp:/usr/include/bits/byteswap.h + mdp:/usr/include/bits/cpu-set.h + mdp:/usr/include/bits/endian.h + mdp:/usr/include/bits/endianness.h + mdp:/usr/include/bits/errno.h + mdp:/usr/include/bits/floatn-common.h + mdp:/usr/include/bits/floatn.h + mdp:/usr/include/bits/libc-header-start.h + mdp:/usr/include/bits/local_lim.h + mdp:/usr/include/bits/locale.h + mdp:/usr/include/bits/long-double.h + mdp:/usr/include/bits/posix1_lim.h + mdp:/usr/include/bits/posix2_lim.h + mdp:/usr/include/bits/pthread_stack_min-dynamic.h + mdp:/usr/include/bits/pthreadtypes-arch.h + mdp:/usr/include/bits/pthreadtypes.h + mdp:/usr/include/bits/sched.h + mdp:/usr/include/bits/select.h + mdp:/usr/include/bits/setjmp.h + mdp:/usr/include/bits/stdint-intn.h + mdp:/usr/include/bits/stdint-least.h + mdp:/usr/include/bits/stdint-uintn.h + mdp:/usr/include/bits/stdio_lim.h + mdp:/usr/include/bits/stdlib-float.h + mdp:/usr/include/bits/struct_mutex.h + mdp:/usr/include/bits/struct_rwlock.h + mdp:/usr/include/bits/thread-shared-types.h + mdp:/usr/include/bits/time.h + mdp:/usr/include/bits/time64.h + mdp:/usr/include/bits/timesize.h + mdp:/usr/include/bits/timex.h + mdp:/usr/include/bits/types.h + mdp:/usr/include/bits/types/FILE.h + mdp:/usr/include/bits/types/__FILE.h + mdp:/usr/include/bits/types/__fpos64_t.h + mdp:/usr/include/bits/types/__fpos_t.h + mdp:/usr/include/bits/types/__locale_t.h + mdp:/usr/include/bits/types/__mbstate_t.h + mdp:/usr/include/bits/types/__sigset_t.h + mdp:/usr/include/bits/types/clock_t.h + mdp:/usr/include/bits/types/clockid_t.h + mdp:/usr/include/bits/types/cookie_io_functions_t.h + mdp:/usr/include/bits/types/error_t.h + mdp:/usr/include/bits/types/locale_t.h + mdp:/usr/include/bits/types/mbstate_t.h + mdp:/usr/include/bits/types/sigset_t.h + mdp:/usr/include/bits/types/struct_FILE.h + mdp:/usr/include/bits/types/struct___jmp_buf_tag.h + mdp:/usr/include/bits/types/struct_itimerspec.h + mdp:/usr/include/bits/types/struct_sched_param.h + mdp:/usr/include/bits/types/struct_timespec.h + mdp:/usr/include/bits/types/struct_timeval.h + mdp:/usr/include/bits/types/struct_tm.h + mdp:/usr/include/bits/types/time_t.h + mdp:/usr/include/bits/types/timer_t.h + mdp:/usr/include/bits/types/wint_t.h + mdp:/usr/include/bits/typesizes.h + mdp:/usr/include/bits/uintn-identity.h + mdp:/usr/include/bits/uio_lim.h + mdp:/usr/include/bits/waitflags.h + mdp:/usr/include/bits/waitstatus.h + mdp:/usr/include/bits/wchar.h + mdp:/usr/include/bits/wctype-wchar.h + mdp:/usr/include/bits/wordsize.h + mdp:/usr/include/bits/xopen_lim.h + mdp:/usr/include/c++/16.1.1/algorithm + mdp:/usr/include/c++/16.1.1/array + mdp:/usr/include/c++/16.1.1/atomic + mdp:/usr/include/c++/16.1.1/backward/auto_ptr.h + mdp:/usr/include/c++/16.1.1/backward/binders.h + mdp:/usr/include/c++/16.1.1/bit + mdp:/usr/include/c++/16.1.1/bits/algorithmfwd.h + mdp:/usr/include/c++/16.1.1/bits/align.h + mdp:/usr/include/c++/16.1.1/bits/alloc_traits.h + mdp:/usr/include/c++/16.1.1/bits/allocated_ptr.h + mdp:/usr/include/c++/16.1.1/bits/allocator.h + mdp:/usr/include/c++/16.1.1/bits/atomic_base.h + mdp:/usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h + mdp:/usr/include/c++/16.1.1/bits/atomic_wait.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.h + mdp:/usr/include/c++/16.1.1/bits/basic_ios.tcc + mdp:/usr/include/c++/16.1.1/bits/basic_string.h + mdp:/usr/include/c++/16.1.1/bits/basic_string.tcc + mdp:/usr/include/c++/16.1.1/bits/binders.h + mdp:/usr/include/c++/16.1.1/bits/char_traits.h + mdp:/usr/include/c++/16.1.1/bits/charconv.h + mdp:/usr/include/c++/16.1.1/bits/chrono.h + mdp:/usr/include/c++/16.1.1/bits/chrono_io.h + mdp:/usr/include/c++/16.1.1/bits/concept_check.h + mdp:/usr/include/c++/16.1.1/bits/cpp_type_traits.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_forced.h + mdp:/usr/include/c++/16.1.1/bits/cxxabi_init_exception.h + mdp:/usr/include/c++/16.1.1/bits/enable_special_members.h + mdp:/usr/include/c++/16.1.1/bits/erase_if.h + mdp:/usr/include/c++/16.1.1/bits/exception.h + mdp:/usr/include/c++/16.1.1/bits/exception_defines.h + mdp:/usr/include/c++/16.1.1/bits/exception_ptr.h + mdp:/usr/include/c++/16.1.1/bits/functexcept.h + mdp:/usr/include/c++/16.1.1/bits/functional_hash.h + mdp:/usr/include/c++/16.1.1/bits/hash_bytes.h + mdp:/usr/include/c++/16.1.1/bits/hashtable.h + mdp:/usr/include/c++/16.1.1/bits/hashtable_policy.h + mdp:/usr/include/c++/16.1.1/bits/intcmp.h + mdp:/usr/include/c++/16.1.1/bits/invoke.h + mdp:/usr/include/c++/16.1.1/bits/ios_base.h + mdp:/usr/include/c++/16.1.1/bits/istream.tcc + mdp:/usr/include/c++/16.1.1/bits/iterator_concepts.h + mdp:/usr/include/c++/16.1.1/bits/list.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_classes.h + mdp:/usr/include/c++/16.1.1/bits/locale_classes.tcc + mdp:/usr/include/c++/16.1.1/bits/locale_facets.h + mdp:/usr/include/c++/16.1.1/bits/locale_facets.tcc + mdp:/usr/include/c++/16.1.1/bits/localefwd.h + mdp:/usr/include/c++/16.1.1/bits/max_size_type.h + mdp:/usr/include/c++/16.1.1/bits/memory_resource.h + mdp:/usr/include/c++/16.1.1/bits/memoryfwd.h + mdp:/usr/include/c++/16.1.1/bits/move.h + mdp:/usr/include/c++/16.1.1/bits/nested_exception.h + mdp:/usr/include/c++/16.1.1/bits/new_allocator.h + mdp:/usr/include/c++/16.1.1/bits/new_except.h + mdp:/usr/include/c++/16.1.1/bits/new_throw.h + mdp:/usr/include/c++/16.1.1/bits/node_handle.h + mdp:/usr/include/c++/16.1.1/bits/ostream.h + mdp:/usr/include/c++/16.1.1/bits/ostream.tcc + mdp:/usr/include/c++/16.1.1/bits/ostream_insert.h + mdp:/usr/include/c++/16.1.1/bits/ostream_print.h + mdp:/usr/include/c++/16.1.1/bits/parse_numbers.h + mdp:/usr/include/c++/16.1.1/bits/postypes.h + mdp:/usr/include/c++/16.1.1/bits/predefined_ops.h + mdp:/usr/include/c++/16.1.1/bits/ptr_traits.h + mdp:/usr/include/c++/16.1.1/bits/range_access.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algo.h + mdp:/usr/include/c++/16.1.1/bits/ranges_algobase.h + mdp:/usr/include/c++/16.1.1/bits/ranges_base.h + mdp:/usr/include/c++/16.1.1/bits/ranges_cmp.h + mdp:/usr/include/c++/16.1.1/bits/ranges_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/ranges_util.h + mdp:/usr/include/c++/16.1.1/bits/refwrap.h + mdp:/usr/include/c++/16.1.1/bits/requires_hosted.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_atomic.h + mdp:/usr/include/c++/16.1.1/bits/shared_ptr_base.h + mdp:/usr/include/c++/16.1.1/bits/specfun.h + mdp:/usr/include/c++/16.1.1/bits/sstream.tcc + mdp:/usr/include/c++/16.1.1/bits/std_abs.h + mdp:/usr/include/c++/16.1.1/bits/std_function.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_except.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throw.h + mdp:/usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h + mdp:/usr/include/c++/16.1.1/bits/stl_algo.h + mdp:/usr/include/c++/16.1.1/bits/stl_algobase.h + mdp:/usr/include/c++/16.1.1/bits/stl_bvector.h + mdp:/usr/include/c++/16.1.1/bits/stl_construct.h + mdp:/usr/include/c++/16.1.1/bits/stl_function.h + mdp:/usr/include/c++/16.1.1/bits/stl_heap.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h + mdp:/usr/include/c++/16.1.1/bits/stl_iterator_base_types.h + mdp:/usr/include/c++/16.1.1/bits/stl_list.h + mdp:/usr/include/c++/16.1.1/bits/stl_map.h + mdp:/usr/include/c++/16.1.1/bits/stl_multimap.h + mdp:/usr/include/c++/16.1.1/bits/stl_multiset.h + mdp:/usr/include/c++/16.1.1/bits/stl_numeric.h + mdp:/usr/include/c++/16.1.1/bits/stl_pair.h + mdp:/usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h + mdp:/usr/include/c++/16.1.1/bits/stl_relops.h + mdp:/usr/include/c++/16.1.1/bits/stl_set.h + mdp:/usr/include/c++/16.1.1/bits/stl_tempbuf.h + mdp:/usr/include/c++/16.1.1/bits/stl_tree.h + mdp:/usr/include/c++/16.1.1/bits/stl_uninitialized.h + mdp:/usr/include/c++/16.1.1/bits/stl_vector.h + mdp:/usr/include/c++/16.1.1/bits/stream_iterator.h + mdp:/usr/include/c++/16.1.1/bits/streambuf.tcc + mdp:/usr/include/c++/16.1.1/bits/streambuf_iterator.h + mdp:/usr/include/c++/16.1.1/bits/string_view.tcc + mdp:/usr/include/c++/16.1.1/bits/stringfwd.h + mdp:/usr/include/c++/16.1.1/bits/uniform_int_dist.h + mdp:/usr/include/c++/16.1.1/bits/unique_ptr.h + mdp:/usr/include/c++/16.1.1/bits/unordered_map.h + mdp:/usr/include/c++/16.1.1/bits/unordered_set.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator.h + mdp:/usr/include/c++/16.1.1/bits/uses_allocator_args.h + mdp:/usr/include/c++/16.1.1/bits/utility.h + mdp:/usr/include/c++/16.1.1/bits/vector.tcc + mdp:/usr/include/c++/16.1.1/bits/version.h + mdp:/usr/include/c++/16.1.1/cassert + mdp:/usr/include/c++/16.1.1/cctype + mdp:/usr/include/c++/16.1.1/cerrno + mdp:/usr/include/c++/16.1.1/charconv + mdp:/usr/include/c++/16.1.1/chrono + mdp:/usr/include/c++/16.1.1/climits + mdp:/usr/include/c++/16.1.1/clocale + mdp:/usr/include/c++/16.1.1/cmath + mdp:/usr/include/c++/16.1.1/compare + mdp:/usr/include/c++/16.1.1/concepts + mdp:/usr/include/c++/16.1.1/cstddef + mdp:/usr/include/c++/16.1.1/cstdint + mdp:/usr/include/c++/16.1.1/cstdio + mdp:/usr/include/c++/16.1.1/cstdlib + mdp:/usr/include/c++/16.1.1/cstring + mdp:/usr/include/c++/16.1.1/ctime + mdp:/usr/include/c++/16.1.1/cwchar + mdp:/usr/include/c++/16.1.1/cwctype + mdp:/usr/include/c++/16.1.1/debug/assertions.h + mdp:/usr/include/c++/16.1.1/debug/debug.h + mdp:/usr/include/c++/16.1.1/exception + mdp:/usr/include/c++/16.1.1/ext/aligned_buffer.h + mdp:/usr/include/c++/16.1.1/ext/alloc_traits.h + mdp:/usr/include/c++/16.1.1/ext/atomicity.h + mdp:/usr/include/c++/16.1.1/ext/concurrence.h + mdp:/usr/include/c++/16.1.1/ext/numeric_traits.h + mdp:/usr/include/c++/16.1.1/ext/string_conversions.h + mdp:/usr/include/c++/16.1.1/ext/type_traits.h + mdp:/usr/include/c++/16.1.1/format + mdp:/usr/include/c++/16.1.1/functional + mdp:/usr/include/c++/16.1.1/initializer_list + mdp:/usr/include/c++/16.1.1/ios + mdp:/usr/include/c++/16.1.1/iosfwd + mdp:/usr/include/c++/16.1.1/istream + mdp:/usr/include/c++/16.1.1/iterator + mdp:/usr/include/c++/16.1.1/limits + mdp:/usr/include/c++/16.1.1/list + mdp:/usr/include/c++/16.1.1/map + mdp:/usr/include/c++/16.1.1/memory + mdp:/usr/include/c++/16.1.1/new + mdp:/usr/include/c++/16.1.1/numeric + mdp:/usr/include/c++/16.1.1/optional + mdp:/usr/include/c++/16.1.1/ostream + mdp:/usr/include/c++/16.1.1/pstl/execution_defs.h + mdp:/usr/include/c++/16.1.1/pstl/glue_numeric_defs.h + mdp:/usr/include/c++/16.1.1/pstl/pstl_config.h + mdp:/usr/include/c++/16.1.1/ratio + mdp:/usr/include/c++/16.1.1/set + mdp:/usr/include/c++/16.1.1/sstream + mdp:/usr/include/c++/16.1.1/stdexcept + mdp:/usr/include/c++/16.1.1/streambuf + mdp:/usr/include/c++/16.1.1/string + mdp:/usr/include/c++/16.1.1/string_view + mdp:/usr/include/c++/16.1.1/system_error + mdp:/usr/include/c++/16.1.1/tr1/bessel_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/beta_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/ell_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/exp_integral.tcc + mdp:/usr/include/c++/16.1.1/tr1/gamma.tcc + mdp:/usr/include/c++/16.1.1/tr1/hypergeometric.tcc + mdp:/usr/include/c++/16.1.1/tr1/legendre_function.tcc + mdp:/usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_hermite.tcc + mdp:/usr/include/c++/16.1.1/tr1/poly_laguerre.tcc + mdp:/usr/include/c++/16.1.1/tr1/riemann_zeta.tcc + mdp:/usr/include/c++/16.1.1/tr1/special_function_util.h + mdp:/usr/include/c++/16.1.1/tuple + mdp:/usr/include/c++/16.1.1/type_traits + mdp:/usr/include/c++/16.1.1/typeinfo + mdp:/usr/include/c++/16.1.1/unordered_map + mdp:/usr/include/c++/16.1.1/unordered_set + mdp:/usr/include/c++/16.1.1/utility + mdp:/usr/include/c++/16.1.1/variant + mdp:/usr/include/c++/16.1.1/vector + mdp:/usr/include/c++/16.1.1/version + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h + mdp:/usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h + mdp:/usr/include/ctype.h + mdp:/usr/include/endian.h + mdp:/usr/include/errno.h + mdp:/usr/include/features-time64.h + mdp:/usr/include/features.h + mdp:/usr/include/gnu/stubs-64.h + mdp:/usr/include/gnu/stubs.h + mdp:/usr/include/limits.h + mdp:/usr/include/linux/errno.h + mdp:/usr/include/linux/limits.h + mdp:/usr/include/linux/posix_types.h + mdp:/usr/include/linux/sched/types.h + mdp:/usr/include/linux/stddef.h + mdp:/usr/include/linux/types.h + mdp:/usr/include/locale.h + mdp:/usr/include/pthread.h + mdp:/usr/include/qt6/QtCore/q17memory.h + mdp:/usr/include/qt6/QtCore/q20bit.h + mdp:/usr/include/qt6/QtCore/q20functional.h + mdp:/usr/include/qt6/QtCore/q20iterator.h + mdp:/usr/include/qt6/QtCore/q20memory.h + mdp:/usr/include/qt6/QtCore/q20type_traits.h + mdp:/usr/include/qt6/QtCore/q20utility.h + mdp:/usr/include/qt6/QtCore/q23type_traits.h + mdp:/usr/include/qt6/QtCore/q23utility.h + mdp:/usr/include/qt6/QtCore/qalgorithms.h + mdp:/usr/include/qt6/QtCore/qalloc.h + mdp:/usr/include/qt6/QtCore/qanystringview.h + mdp:/usr/include/qt6/QtCore/qarraydata.h + mdp:/usr/include/qt6/QtCore/qarraydataops.h + mdp:/usr/include/qt6/QtCore/qarraydatapointer.h + mdp:/usr/include/qt6/QtCore/qassert.h + mdp:/usr/include/qt6/QtCore/qatomic.h + mdp:/usr/include/qt6/QtCore/qatomic_cxx11.h + mdp:/usr/include/qt6/QtCore/qbasicatomic.h + mdp:/usr/include/qt6/QtCore/qbindingstorage.h + mdp:/usr/include/qt6/QtCore/qbytearray.h + mdp:/usr/include/qt6/QtCore/qbytearrayalgorithms.h + mdp:/usr/include/qt6/QtCore/qbytearraylist.h + mdp:/usr/include/qt6/QtCore/qbytearrayview.h + mdp:/usr/include/qt6/QtCore/qchar.h + mdp:/usr/include/qt6/QtCore/qcheckedint_impl.h + mdp:/usr/include/qt6/QtCore/qcompare.h + mdp:/usr/include/qt6/QtCore/qcompare_impl.h + mdp:/usr/include/qt6/QtCore/qcomparehelpers.h + mdp:/usr/include/qt6/QtCore/qcompilerdetection.h + mdp:/usr/include/qt6/QtCore/qconfig.h + mdp:/usr/include/qt6/QtCore/qconstructormacros.h + mdp:/usr/include/qt6/QtCore/qcontainerfwd.h + mdp:/usr/include/qt6/QtCore/qcontainerinfo.h + mdp:/usr/include/qt6/QtCore/qcontainertools_impl.h + mdp:/usr/include/qt6/QtCore/qcontiguouscache.h + mdp:/usr/include/qt6/QtCore/qdarwinhelpers.h + mdp:/usr/include/qt6/QtCore/qdatastream.h + mdp:/usr/include/qt6/QtCore/qdebug.h + mdp:/usr/include/qt6/QtCore/qendian.h + mdp:/usr/include/qt6/QtCore/qexceptionhandling.h + mdp:/usr/include/qt6/QtCore/qflags.h + mdp:/usr/include/qt6/QtCore/qfloat16.h + mdp:/usr/include/qt6/QtCore/qforeach.h + mdp:/usr/include/qt6/QtCore/qfunctionaltools_impl.h + mdp:/usr/include/qt6/QtCore/qfunctionpointer.h + mdp:/usr/include/qt6/QtCore/qgenericatomic.h + mdp:/usr/include/qt6/QtCore/qglobal.h + mdp:/usr/include/qt6/QtCore/qglobalstatic.h + mdp:/usr/include/qt6/QtCore/qhash.h + mdp:/usr/include/qt6/QtCore/qhashfunctions.h + mdp:/usr/include/qt6/QtCore/qiodevicebase.h + mdp:/usr/include/qt6/QtCore/qiterable.h + mdp:/usr/include/qt6/QtCore/qiterator.h + mdp:/usr/include/qt6/QtCore/qlatin1stringview.h + mdp:/usr/include/qt6/QtCore/qline.h + mdp:/usr/include/qt6/QtCore/qlist.h + mdp:/usr/include/qt6/QtCore/qlogging.h + mdp:/usr/include/qt6/QtCore/qmalloc.h + mdp:/usr/include/qt6/QtCore/qmap.h + mdp:/usr/include/qt6/QtCore/qmargins.h + mdp:/usr/include/qt6/QtCore/qmath.h + mdp:/usr/include/qt6/QtCore/qmetacontainer.h + mdp:/usr/include/qt6/QtCore/qmetatype.h + mdp:/usr/include/qt6/QtCore/qminmax.h + mdp:/usr/include/qt6/QtCore/qnamespace.h + mdp:/usr/include/qt6/QtCore/qnumeric.h + mdp:/usr/include/qt6/QtCore/qobject.h + mdp:/usr/include/qt6/QtCore/qobject_impl.h + mdp:/usr/include/qt6/QtCore/qobjectdefs.h + mdp:/usr/include/qt6/QtCore/qobjectdefs_impl.h + mdp:/usr/include/qt6/QtCore/qoverload.h + mdp:/usr/include/qt6/QtCore/qpair.h + mdp:/usr/include/qt6/QtCore/qpoint.h + mdp:/usr/include/qt6/QtCore/qprocessordetection.h + mdp:/usr/include/qt6/QtCore/qrect.h + mdp:/usr/include/qt6/QtCore/qrefcount.h + mdp:/usr/include/qt6/QtCore/qscopedpointer.h + mdp:/usr/include/qt6/QtCore/qscopeguard.h + mdp:/usr/include/qt6/QtCore/qset.h + mdp:/usr/include/qt6/QtCore/qshareddata.h + mdp:/usr/include/qt6/QtCore/qshareddata_impl.h + mdp:/usr/include/qt6/QtCore/qsharedpointer.h + mdp:/usr/include/qt6/QtCore/qsharedpointer_impl.h + mdp:/usr/include/qt6/QtCore/qsize.h + mdp:/usr/include/qt6/QtCore/qspan.h + mdp:/usr/include/qt6/QtCore/qstdlibdetection.h + mdp:/usr/include/qt6/QtCore/qstring.h + mdp:/usr/include/qt6/QtCore/qstringalgorithms.h + mdp:/usr/include/qt6/QtCore/qstringbuilder.h + mdp:/usr/include/qt6/QtCore/qstringconverter.h + mdp:/usr/include/qt6/QtCore/qstringconverter_base.h + mdp:/usr/include/qt6/QtCore/qstringfwd.h + mdp:/usr/include/qt6/QtCore/qstringlist.h + mdp:/usr/include/qt6/QtCore/qstringmatcher.h + mdp:/usr/include/qt6/QtCore/qstringtokenizer.h + mdp:/usr/include/qt6/QtCore/qstringview.h + mdp:/usr/include/qt6/QtCore/qswap.h + mdp:/usr/include/qt6/QtCore/qsysinfo.h + mdp:/usr/include/qt6/QtCore/qsystemdetection.h + mdp:/usr/include/qt6/QtCore/qtaggedpointer.h + mdp:/usr/include/qt6/QtCore/qtclasshelpermacros.h + mdp:/usr/include/qt6/QtCore/qtconfiginclude.h + mdp:/usr/include/qt6/QtCore/qtconfigmacros.h + mdp:/usr/include/qt6/QtCore/qtcore-config.h + mdp:/usr/include/qt6/QtCore/qtcoreexports.h + mdp:/usr/include/qt6/QtCore/qtcoreglobal.h + mdp:/usr/include/qt6/QtCore/qtdeprecationdefinitions.h + mdp:/usr/include/qt6/QtCore/qtdeprecationmarkers.h + mdp:/usr/include/qt6/QtCore/qtenvironmentvariables.h + mdp:/usr/include/qt6/QtCore/qtextstream.h + mdp:/usr/include/qt6/QtCore/qtformat_impl.h + mdp:/usr/include/qt6/QtCore/qtmetamacros.h + mdp:/usr/include/qt6/QtCore/qtnoop.h + mdp:/usr/include/qt6/QtCore/qtpreprocessorsupport.h + mdp:/usr/include/qt6/QtCore/qtresource.h + mdp:/usr/include/qt6/QtCore/qttranslation.h + mdp:/usr/include/qt6/QtCore/qttypetraits.h + mdp:/usr/include/qt6/QtCore/qtversion.h + mdp:/usr/include/qt6/QtCore/qtversionchecks.h + mdp:/usr/include/qt6/QtCore/qtypeinfo.h + mdp:/usr/include/qt6/QtCore/qtypes.h + mdp:/usr/include/qt6/QtCore/qutf8stringview.h + mdp:/usr/include/qt6/QtCore/qvariant.h + mdp:/usr/include/qt6/QtCore/qvarlengtharray.h + mdp:/usr/include/qt6/QtCore/qversiontagging.h + mdp:/usr/include/qt6/QtCore/qxptype_traits.h + mdp:/usr/include/qt6/QtCore/qyieldcpu.h + mdp:/usr/include/qt6/QtGui/qaction.h + mdp:/usr/include/qt6/QtGui/qbitmap.h + mdp:/usr/include/qt6/QtGui/qbrush.h + mdp:/usr/include/qt6/QtGui/qcolor.h + mdp:/usr/include/qt6/QtGui/qcursor.h + mdp:/usr/include/qt6/QtGui/qfont.h + mdp:/usr/include/qt6/QtGui/qfontinfo.h + mdp:/usr/include/qt6/QtGui/qfontmetrics.h + mdp:/usr/include/qt6/QtGui/qfontvariableaxis.h + mdp:/usr/include/qt6/QtGui/qicon.h + mdp:/usr/include/qt6/QtGui/qimage.h + mdp:/usr/include/qt6/QtGui/qkeysequence.h + mdp:/usr/include/qt6/QtGui/qpaintdevice.h + mdp:/usr/include/qt6/QtGui/qpalette.h + mdp:/usr/include/qt6/QtGui/qpixelformat.h + mdp:/usr/include/qt6/QtGui/qpixmap.h + mdp:/usr/include/qt6/QtGui/qpolygon.h + mdp:/usr/include/qt6/QtGui/qregion.h + mdp:/usr/include/qt6/QtGui/qrgb.h + mdp:/usr/include/qt6/QtGui/qrgba64.h + mdp:/usr/include/qt6/QtGui/qtgui-config.h + mdp:/usr/include/qt6/QtGui/qtguiexports.h + mdp:/usr/include/qt6/QtGui/qtguiglobal.h + mdp:/usr/include/qt6/QtGui/qtransform.h + mdp:/usr/include/qt6/QtGui/qwindowdefs.h + mdp:/usr/include/qt6/QtWidgets/QSplitter + mdp:/usr/include/qt6/QtWidgets/qframe.h + mdp:/usr/include/qt6/QtWidgets/qsizepolicy.h + mdp:/usr/include/qt6/QtWidgets/qsplitter.h + mdp:/usr/include/qt6/QtWidgets/qtwidgets-config.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsexports.h + mdp:/usr/include/qt6/QtWidgets/qtwidgetsglobal.h + mdp:/usr/include/qt6/QtWidgets/qwidget.h + mdp:/usr/include/sched.h + mdp:/usr/include/stdc-predef.h + mdp:/usr/include/stdint.h + mdp:/usr/include/stdio.h + mdp:/usr/include/stdlib.h + mdp:/usr/include/string.h + mdp:/usr/include/strings.h + mdp:/usr/include/sys/cdefs.h + mdp:/usr/include/sys/select.h + mdp:/usr/include/sys/single_threaded.h + mdp:/usr/include/sys/types.h + mdp:/usr/include/time.h + mdp:/usr/include/wchar.h + mdp:/usr/include/wctype.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h + mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h +/home/pplupo/repos/plugins/wlx/wayland_qt_base/src/CrashLogger.cpp diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/build.make b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/build.make new file mode 100644 index 0000000..88ddbef --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/build.make @@ -0,0 +1,96 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.3 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/pplupo/repos/plugins/wlx/wayland_qt_base + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build + +# Utility rule file for wayland_qt_base_autogen. + +# Include any custom commands dependencies for this target. +include CMakeFiles/wayland_qt_base_autogen.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/wayland_qt_base_autogen.dir/progress.make + +CMakeFiles/wayland_qt_base_autogen: wayland_qt_base_autogen/timestamp + +wayland_qt_base_autogen/timestamp: /usr/lib/qt6/moc +wayland_qt_base_autogen/timestamp: CMakeFiles/wayland_qt_base_autogen.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC for target wayland_qt_base" + /usr/bin/cmake -E cmake_autogen /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/AutogenInfo.json "" + /usr/bin/cmake -E touch /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/timestamp + +CMakeFiles/wayland_qt_base_autogen.dir/codegen: +.PHONY : CMakeFiles/wayland_qt_base_autogen.dir/codegen + +wayland_qt_base_autogen: CMakeFiles/wayland_qt_base_autogen +wayland_qt_base_autogen: wayland_qt_base_autogen/timestamp +wayland_qt_base_autogen: CMakeFiles/wayland_qt_base_autogen.dir/build.make +.PHONY : wayland_qt_base_autogen + +# Rule to build all files generated by this target. +CMakeFiles/wayland_qt_base_autogen.dir/build: wayland_qt_base_autogen +.PHONY : CMakeFiles/wayland_qt_base_autogen.dir/build + +CMakeFiles/wayland_qt_base_autogen.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/wayland_qt_base_autogen.dir/cmake_clean.cmake +.PHONY : CMakeFiles/wayland_qt_base_autogen.dir/clean + +CMakeFiles/wayland_qt_base_autogen.dir/depend: + cd /home/pplupo/repos/plugins/wlx/wayland_qt_base/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/pplupo/repos/plugins/wlx/wayland_qt_base /home/pplupo/repos/plugins/wlx/wayland_qt_base /home/pplupo/repos/plugins/wlx/wayland_qt_base/build /home/pplupo/repos/plugins/wlx/wayland_qt_base/build /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/DependInfo.cmake "--color=$(COLOR)" wayland_qt_base_autogen +.PHONY : CMakeFiles/wayland_qt_base_autogen.dir/depend + diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/cmake_clean.cmake b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/cmake_clean.cmake new file mode 100644 index 0000000..7d7a43e --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/wayland_qt_base_autogen" + "wayland_qt_base_autogen/mocs_compilation.cpp" + "wayland_qt_base_autogen/timestamp" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/wayland_qt_base_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/compiler_depend.make b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/compiler_depend.make new file mode 100644 index 0000000..b22f85f --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for wayland_qt_base_autogen. +# This may be replaced when dependencies are built. diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/compiler_depend.ts b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/compiler_depend.ts new file mode 100644 index 0000000..499d8dc --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for wayland_qt_base_autogen. diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/progress.make b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/progress.make new file mode 100644 index 0000000..0b890e8 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 16 + diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/DependInfo.cmake b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/DependInfo.cmake new file mode 100644 index 0000000..29b95a5 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/build.make b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/build.make new file mode 100644 index 0000000..2b06526 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/build.make @@ -0,0 +1,86 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.3 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/pplupo/repos/plugins/wlx/wayland_qt_base + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build + +# Utility rule file for wayland_qt_base_autogen_timestamp_deps. + +# Include any custom commands dependencies for this target. +include CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/progress.make + +CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/codegen: +.PHONY : CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/codegen + +wayland_qt_base_autogen_timestamp_deps: CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/build.make +.PHONY : wayland_qt_base_autogen_timestamp_deps + +# Rule to build all files generated by this target. +CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/build: wayland_qt_base_autogen_timestamp_deps +.PHONY : CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/build + +CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/cmake_clean.cmake +.PHONY : CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/clean + +CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/depend: + cd /home/pplupo/repos/plugins/wlx/wayland_qt_base/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/pplupo/repos/plugins/wlx/wayland_qt_base /home/pplupo/repos/plugins/wlx/wayland_qt_base /home/pplupo/repos/plugins/wlx/wayland_qt_base/build /home/pplupo/repos/plugins/wlx/wayland_qt_base/build /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)" wayland_qt_base_autogen_timestamp_deps +.PHONY : CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/depend + diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/cmake_clean.cmake b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/cmake_clean.cmake new file mode 100644 index 0000000..ec0c71a --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/cmake_clean.cmake @@ -0,0 +1,5 @@ + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/compiler_depend.make b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/compiler_depend.make new file mode 100644 index 0000000..1e481bb --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for wayland_qt_base_autogen_timestamp_deps. +# This may be replaced when dependencies are built. diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/compiler_depend.ts b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/compiler_depend.ts new file mode 100644 index 0000000..d404304 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for wayland_qt_base_autogen_timestamp_deps. diff --git a/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/progress.make b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/wlx/wayland_qt_base/build/CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/progress.make @@ -0,0 +1 @@ + diff --git a/wlx/wayland_qt_base/build/Makefile b/wlx/wayland_qt_base/build/Makefile new file mode 100644 index 0000000..bc8d554 --- /dev/null +++ b/wlx/wayland_qt_base/build/Makefile @@ -0,0 +1,533 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 4.3 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/pplupo/repos/plugins/wlx/wayland_qt_base + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles /home/pplupo/repos/plugins/wlx/wayland_qt_base/build//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named wayland_qt_base + +# Build rule for target. +wayland_qt_base: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 wayland_qt_base +.PHONY : wayland_qt_base + +# fast build rule for target. +wayland_qt_base/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/build +.PHONY : wayland_qt_base/fast + +#============================================================================= +# Target rules for targets named wayland_qt_base_autogen_timestamp_deps + +# Build rule for target. +wayland_qt_base_autogen_timestamp_deps: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 wayland_qt_base_autogen_timestamp_deps +.PHONY : wayland_qt_base_autogen_timestamp_deps + +# fast build rule for target. +wayland_qt_base_autogen_timestamp_deps/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/build.make CMakeFiles/wayland_qt_base_autogen_timestamp_deps.dir/build +.PHONY : wayland_qt_base_autogen_timestamp_deps/fast + +#============================================================================= +# Target rules for targets named wayland_qt_base_autogen + +# Build rule for target. +wayland_qt_base_autogen: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 wayland_qt_base_autogen +.PHONY : wayland_qt_base_autogen + +# fast build rule for target. +wayland_qt_base_autogen/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base_autogen.dir/build.make CMakeFiles/wayland_qt_base_autogen.dir/build +.PHONY : wayland_qt_base_autogen/fast + +src/CrashLogger.o: src/CrashLogger.cpp.o +.PHONY : src/CrashLogger.o + +# target to build an object file +src/CrashLogger.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.o +.PHONY : src/CrashLogger.cpp.o + +src/CrashLogger.i: src/CrashLogger.cpp.i +.PHONY : src/CrashLogger.i + +# target to preprocess a source file +src/CrashLogger.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.i +.PHONY : src/CrashLogger.cpp.i + +src/CrashLogger.s: src/CrashLogger.cpp.s +.PHONY : src/CrashLogger.s + +# target to generate assembly for a file +src/CrashLogger.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/CrashLogger.cpp.s +.PHONY : src/CrashLogger.cpp.s + +src/EditableGridWidget.o: src/EditableGridWidget.cpp.o +.PHONY : src/EditableGridWidget.o + +# target to build an object file +src/EditableGridWidget.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.o +.PHONY : src/EditableGridWidget.cpp.o + +src/EditableGridWidget.i: src/EditableGridWidget.cpp.i +.PHONY : src/EditableGridWidget.i + +# target to preprocess a source file +src/EditableGridWidget.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.i +.PHONY : src/EditableGridWidget.cpp.i + +src/EditableGridWidget.s: src/EditableGridWidget.cpp.s +.PHONY : src/EditableGridWidget.s + +# target to generate assembly for a file +src/EditableGridWidget.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/EditableGridWidget.cpp.s +.PHONY : src/EditableGridWidget.cpp.s + +src/EncodingUtils.o: src/EncodingUtils.cpp.o +.PHONY : src/EncodingUtils.o + +# target to build an object file +src/EncodingUtils.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.o +.PHONY : src/EncodingUtils.cpp.o + +src/EncodingUtils.i: src/EncodingUtils.cpp.i +.PHONY : src/EncodingUtils.i + +# target to preprocess a source file +src/EncodingUtils.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.i +.PHONY : src/EncodingUtils.cpp.i + +src/EncodingUtils.s: src/EncodingUtils.cpp.s +.PHONY : src/EncodingUtils.s + +# target to generate assembly for a file +src/EncodingUtils.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/EncodingUtils.cpp.s +.PHONY : src/EncodingUtils.cpp.s + +src/FilterRowWidget.o: src/FilterRowWidget.cpp.o +.PHONY : src/FilterRowWidget.o + +# target to build an object file +src/FilterRowWidget.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.o +.PHONY : src/FilterRowWidget.cpp.o + +src/FilterRowWidget.i: src/FilterRowWidget.cpp.i +.PHONY : src/FilterRowWidget.i + +# target to preprocess a source file +src/FilterRowWidget.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.i +.PHONY : src/FilterRowWidget.cpp.i + +src/FilterRowWidget.s: src/FilterRowWidget.cpp.s +.PHONY : src/FilterRowWidget.s + +# target to generate assembly for a file +src/FilterRowWidget.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/FilterRowWidget.cpp.s +.PHONY : src/FilterRowWidget.cpp.s + +src/FilterableHeaderView.o: src/FilterableHeaderView.cpp.o +.PHONY : src/FilterableHeaderView.o + +# target to build an object file +src/FilterableHeaderView.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.o +.PHONY : src/FilterableHeaderView.cpp.o + +src/FilterableHeaderView.i: src/FilterableHeaderView.cpp.i +.PHONY : src/FilterableHeaderView.i + +# target to preprocess a source file +src/FilterableHeaderView.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.i +.PHONY : src/FilterableHeaderView.cpp.i + +src/FilterableHeaderView.s: src/FilterableHeaderView.cpp.s +.PHONY : src/FilterableHeaderView.s + +# target to generate assembly for a file +src/FilterableHeaderView.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/FilterableHeaderView.cpp.s +.PHONY : src/FilterableHeaderView.cpp.s + +src/FindReplacePanel.o: src/FindReplacePanel.cpp.o +.PHONY : src/FindReplacePanel.o + +# target to build an object file +src/FindReplacePanel.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.o +.PHONY : src/FindReplacePanel.cpp.o + +src/FindReplacePanel.i: src/FindReplacePanel.cpp.i +.PHONY : src/FindReplacePanel.i + +# target to preprocess a source file +src/FindReplacePanel.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.i +.PHONY : src/FindReplacePanel.cpp.i + +src/FindReplacePanel.s: src/FindReplacePanel.cpp.s +.PHONY : src/FindReplacePanel.s + +# target to generate assembly for a file +src/FindReplacePanel.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/FindReplacePanel.cpp.s +.PHONY : src/FindReplacePanel.cpp.s + +src/FocusManager.o: src/FocusManager.cpp.o +.PHONY : src/FocusManager.o + +# target to build an object file +src/FocusManager.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.o +.PHONY : src/FocusManager.cpp.o + +src/FocusManager.i: src/FocusManager.cpp.i +.PHONY : src/FocusManager.i + +# target to preprocess a source file +src/FocusManager.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.i +.PHONY : src/FocusManager.cpp.i + +src/FocusManager.s: src/FocusManager.cpp.s +.PHONY : src/FocusManager.s + +# target to generate assembly for a file +src/FocusManager.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/FocusManager.cpp.s +.PHONY : src/FocusManager.cpp.s + +src/PluginSplitView.o: src/PluginSplitView.cpp.o +.PHONY : src/PluginSplitView.o + +# target to build an object file +src/PluginSplitView.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.o +.PHONY : src/PluginSplitView.cpp.o + +src/PluginSplitView.i: src/PluginSplitView.cpp.i +.PHONY : src/PluginSplitView.i + +# target to preprocess a source file +src/PluginSplitView.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.i +.PHONY : src/PluginSplitView.cpp.i + +src/PluginSplitView.s: src/PluginSplitView.cpp.s +.PHONY : src/PluginSplitView.s + +# target to generate assembly for a file +src/PluginSplitView.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/PluginSplitView.cpp.s +.PHONY : src/PluginSplitView.cpp.s + +src/PluginStatusBar.o: src/PluginStatusBar.cpp.o +.PHONY : src/PluginStatusBar.o + +# target to build an object file +src/PluginStatusBar.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.o +.PHONY : src/PluginStatusBar.cpp.o + +src/PluginStatusBar.i: src/PluginStatusBar.cpp.i +.PHONY : src/PluginStatusBar.i + +# target to preprocess a source file +src/PluginStatusBar.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.i +.PHONY : src/PluginStatusBar.cpp.i + +src/PluginStatusBar.s: src/PluginStatusBar.cpp.s +.PHONY : src/PluginStatusBar.s + +# target to generate assembly for a file +src/PluginStatusBar.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/PluginStatusBar.cpp.s +.PHONY : src/PluginStatusBar.cpp.s + +src/PluginToolBar.o: src/PluginToolBar.cpp.o +.PHONY : src/PluginToolBar.o + +# target to build an object file +src/PluginToolBar.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.o +.PHONY : src/PluginToolBar.cpp.o + +src/PluginToolBar.i: src/PluginToolBar.cpp.i +.PHONY : src/PluginToolBar.i + +# target to preprocess a source file +src/PluginToolBar.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.i +.PHONY : src/PluginToolBar.cpp.i + +src/PluginToolBar.s: src/PluginToolBar.cpp.s +.PHONY : src/PluginToolBar.s + +# target to generate assembly for a file +src/PluginToolBar.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/PluginToolBar.cpp.s +.PHONY : src/PluginToolBar.cpp.s + +src/ScopedFindReplacePanel.o: src/ScopedFindReplacePanel.cpp.o +.PHONY : src/ScopedFindReplacePanel.o + +# target to build an object file +src/ScopedFindReplacePanel.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.o +.PHONY : src/ScopedFindReplacePanel.cpp.o + +src/ScopedFindReplacePanel.i: src/ScopedFindReplacePanel.cpp.i +.PHONY : src/ScopedFindReplacePanel.i + +# target to preprocess a source file +src/ScopedFindReplacePanel.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.i +.PHONY : src/ScopedFindReplacePanel.cpp.i + +src/ScopedFindReplacePanel.s: src/ScopedFindReplacePanel.cpp.s +.PHONY : src/ScopedFindReplacePanel.s + +# target to generate assembly for a file +src/ScopedFindReplacePanel.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/ScopedFindReplacePanel.cpp.s +.PHONY : src/ScopedFindReplacePanel.cpp.s + +src/ThemeManager.o: src/ThemeManager.cpp.o +.PHONY : src/ThemeManager.o + +# target to build an object file +src/ThemeManager.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.o +.PHONY : src/ThemeManager.cpp.o + +src/ThemeManager.i: src/ThemeManager.cpp.i +.PHONY : src/ThemeManager.i + +# target to preprocess a source file +src/ThemeManager.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.i +.PHONY : src/ThemeManager.cpp.i + +src/ThemeManager.s: src/ThemeManager.cpp.s +.PHONY : src/ThemeManager.s + +# target to generate assembly for a file +src/ThemeManager.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/src/ThemeManager.cpp.s +.PHONY : src/ThemeManager.cpp.s + +wayland_qt_base_autogen/mocs_compilation.o: wayland_qt_base_autogen/mocs_compilation.cpp.o +.PHONY : wayland_qt_base_autogen/mocs_compilation.o + +# target to build an object file +wayland_qt_base_autogen/mocs_compilation.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.o +.PHONY : wayland_qt_base_autogen/mocs_compilation.cpp.o + +wayland_qt_base_autogen/mocs_compilation.i: wayland_qt_base_autogen/mocs_compilation.cpp.i +.PHONY : wayland_qt_base_autogen/mocs_compilation.i + +# target to preprocess a source file +wayland_qt_base_autogen/mocs_compilation.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.i +.PHONY : wayland_qt_base_autogen/mocs_compilation.cpp.i + +wayland_qt_base_autogen/mocs_compilation.s: wayland_qt_base_autogen/mocs_compilation.cpp.s +.PHONY : wayland_qt_base_autogen/mocs_compilation.s + +# target to generate assembly for a file +wayland_qt_base_autogen/mocs_compilation.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/wayland_qt_base.dir/build.make CMakeFiles/wayland_qt_base.dir/wayland_qt_base_autogen/mocs_compilation.cpp.s +.PHONY : wayland_qt_base_autogen/mocs_compilation.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... wayland_qt_base_autogen" + @echo "... wayland_qt_base_autogen_timestamp_deps" + @echo "... wayland_qt_base" + @echo "... src/CrashLogger.o" + @echo "... src/CrashLogger.i" + @echo "... src/CrashLogger.s" + @echo "... src/EditableGridWidget.o" + @echo "... src/EditableGridWidget.i" + @echo "... src/EditableGridWidget.s" + @echo "... src/EncodingUtils.o" + @echo "... src/EncodingUtils.i" + @echo "... src/EncodingUtils.s" + @echo "... src/FilterRowWidget.o" + @echo "... src/FilterRowWidget.i" + @echo "... src/FilterRowWidget.s" + @echo "... src/FilterableHeaderView.o" + @echo "... src/FilterableHeaderView.i" + @echo "... src/FilterableHeaderView.s" + @echo "... src/FindReplacePanel.o" + @echo "... src/FindReplacePanel.i" + @echo "... src/FindReplacePanel.s" + @echo "... src/FocusManager.o" + @echo "... src/FocusManager.i" + @echo "... src/FocusManager.s" + @echo "... src/PluginSplitView.o" + @echo "... src/PluginSplitView.i" + @echo "... src/PluginSplitView.s" + @echo "... src/PluginStatusBar.o" + @echo "... src/PluginStatusBar.i" + @echo "... src/PluginStatusBar.s" + @echo "... src/PluginToolBar.o" + @echo "... src/PluginToolBar.i" + @echo "... src/PluginToolBar.s" + @echo "... src/ScopedFindReplacePanel.o" + @echo "... src/ScopedFindReplacePanel.i" + @echo "... src/ScopedFindReplacePanel.s" + @echo "... src/ThemeManager.o" + @echo "... src/ThemeManager.i" + @echo "... src/ThemeManager.s" + @echo "... wayland_qt_base_autogen/mocs_compilation.o" + @echo "... wayland_qt_base_autogen/mocs_compilation.i" + @echo "... wayland_qt_base_autogen/mocs_compilation.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/wlx/wayland_qt_base/build/cmake_install.cmake b/wlx/wayland_qt_base/build/cmake_install.cmake new file mode 100644 index 0000000..8c78902 --- /dev/null +++ b/wlx/wayland_qt_base/build/cmake_install.cmake @@ -0,0 +1,66 @@ +# Install script for directory: /home/pplupo/repos/plugins/wlx/wayland_qt_base + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/wlx/wayland_qt_base/build/enca-1.19.tar.gz b/wlx/wayland_qt_base/build/enca-1.19.tar.gz new file mode 100644 index 0000000..43d0d99 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19.tar.gz differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/AUTHORS b/wlx/wayland_qt_base/build/enca-1.19/AUTHORS new file mode 100644 index 0000000..27d99b7 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/AUTHORS @@ -0,0 +1,14 @@ +David Necas (Yeti) <yeti@physics.muni.cz> + +Zuxy Meng <zuxy.meng@gmail.com> (Chinese encodings support) + +Michal Cihar <michal@cihar.com> (maintenance and merging patches) + +Unicode data in src/unicodemap.c comes from various free on-line resources. + +Files src/getopt_long.c src/getopt.h come from GNU libc getopt_long by the +Free Software Foundation. + +Character type table lib/ctype.c is based on GLib one, by Peter Mattis, +Spencer Kimball, Josh MacDonald, and the GLib Team. + diff --git a/wlx/wayland_qt_base/build/enca-1.19/COPYING b/wlx/wayland_qt_base/build/enca-1.19/COPYING new file mode 100644 index 0000000..3be4dc3 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/COPYING @@ -0,0 +1,340 @@ + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + Appendix: How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) 19yy <name of author> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + <signature of Ty Coon>, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/wlx/wayland_qt_base/build/enca-1.19/ChangeLog b/wlx/wayland_qt_base/build/enca-1.19/ChangeLog new file mode 100644 index 0000000..a17766a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/ChangeLog @@ -0,0 +1,406 @@ +#============================================================================ +# Enca v1.19 (2016-09-05) guess and convert encoding of text files +# Copyright (C) 2000-2003 David Necas (Yeti) <yeti@physics.muni.cz> +# Copyright (C) 2009-2016 Michal Cihar <michal@cihar.com> +#============================================================================ + +List of user-visible changes in Enca +More detailed log can be obtained from older changelogs or git log. + +Legend: + new feature + * change of behaviour (including disappearing of a feature) + - bugfix + +enca-1.19-dev + - fix possible memory leak + - make utf-8 detection work even on one character + +enca-1.18 2016-01-07 + - fix installation of devhelp documentation + +enca-1.17 2016-01-04 + - Fixed conversion of GB2312 encoding with iconv + - Fixed iconv conversion on OSX + - Documentation improvements + - Fixed execution of external converters with ACLs + - Improved test coverage to 80% + +enca-1.16 2014-10-20 + - Fixed typo in Belarusian language name + - Added aliases for Chinese and Yugoslavian languages + +enca-1.15 2013-09-30 + - Documentation improvement + - Development moved to GitHub + - Do not use deprecated autoconf macros + +enca-1.14 2012-09-11 + - Allow standard names for belarusian and slovenian languages, thanks + to Branislav Geržo for suggestion. + - Reset strictness when check buffer less than file size, thanks to + Sam Liao. + - Fixed typos in man page, thanks to A. Costa. + +enca-1.13 2010-02-09 + - Reverse usage of temp file while converting using recode to prevent + file truncation (bug #1135). + +enca-1.12 2009-10-29 + - Fixes some minor memory leaks. + - Fixes little problems in autoconf scripts. + +enca-1.11 2009-09-25 + - Dropped scanf configure test which is not used at all. + - Fixes some wrong format strings. + +enca-1.10 2009-08-25 + + Enca is back alive or at least in maintenance mode. + * Enca now lives in git repository, see <http://gitorious.org/enca>. + - Add missing charset koi8u to belarusian language. + - Fixed some typos in program and documentation. + +enca-1.9 2005-12-18 + + support for HZ encoding + * Big5 and GBK detection improved + - enca.spec no longer installs docs to world-unreadable directory + +enca-1.8 2005-11-24 + + Chinese (Big5 and GBK) support (thanks to Zuxy) + * deb/ subdirectory is gone as there is finally an Enca package in Debian + (thanks to Michal Cihar) + - manual page clean-up (thanks to Michal Cihar) + +enca-1.7 2005-02-27 + + new name type: preferred MIME name (option -m) + - broken iconv detection on some system was fixed + +enca-1.6 2004-09-01 + * English language names (--list=languages, enca_language_english_name()) + were changed to lowercase to match common locale aliases + - Win32, i.e. MinGW and Cygwin, build problems were fixed + +enca-1.5 2004-05-30 + - crash on impossible recovery after iconv failure in pipe was fixed + - rpm building problems on Mandrake Linux were fixed + +enca-1.4 2004-05-12 + - dependency of guessing API on locales (via ctype functions) was fixed + - --help text generation failure on some systems was fixed + +enca-1.3 2003-12-24 + + [libenca] it's possible to get analyser option values, not just set them + * a good BOM (byte order mark) increases the chance of being recognized for + UCS-4 and UTF-8 too + * external converter wrappers were moved from bin to libexec and the b- + prefix was removed (though it still works) + * external converters are no longer searched in PATH, nonstandard ones + has to be specified with full path + +enca-1.2 2003-11-26 + - fixed segfault in language detection for some locale setups + +enca-1.1 2003-11-17 + - fixed losing data at the end of file when using external converters in a + pipe (and maybe in other situations) + - [libenca] enca_analyser_free() not freeing analyser completely was fixed + +enca-1.0 2003-11-06 + * deprectated options -T, -R, -S, -u, -U, -m, and -M were finally removed + * default HTML API docs installation path changed to the new gtk-doc style + (DATADIR/gtk-doc/html/enca) + * debian/ subdir moved to deb/ to allow official deb creation w/o too much + hassle + +enca-0.99.4 2003-07-15 + - several race conditions in librecode and iconv interfaces were fixed + - temporary file names are much less predictable now + +enca-0.99.3 2003-06-30 + * Debian package is back from death + * failure to find external converter is now fatal + - fixed build problems on FreeBSD (and probably other Unices) + - libiconv is not used for `conversion to ASCII' since never does the + Right Thing, whatever it is + - when conversion with libiconv fails, the file should now survive intact + - fixed build problems on systems w/o libiconv (hopefully) + - fixed distclean and uninstall targets to really clean and uninstall + everything + - fixed builds with separate source (read-only) and build directories + - fixed builds with --without-libiconv and --without-librecode on GNU/Linux + - external converter is not checked when it's not going to be used + +enca-0.99.2 2003-06-25 + + EOL type is used to decide ambiguous cases, e.g. CP1250 is reported + instead of ISO-8859-2/CRLF + * --list languages by default prints English names, instead of ISO-639a + codes, use -e or -r to get the old listing + * if LC_CTYPE is something like en_US, more locale categories are examined + to detect the language + * cork charset was modified to contain \n, \r and \t in the same places as + ASCII + * some heuristics tuning + +enca-0.99.1 2003-06-22 + + libenca pkg-config support + * all libenca tuning parameters (-T, -R, -S, -u, -U, -m, and -M) were + marked deprecated and are noop, Enca should DWIM + * ambiguity is now always OK when the sample has the same meaning in all the + charsets + * deprecated `built-in-encodings' and `encodings' lists were removed + * PAGER feature was removed + - exchanged `latvian' and `lithuanian' language names were fixed (`lv' and + `lt' were always OK) + - missing tests for the new languages was added to the test suit + +enca-0.99.0 2003-06-14 + + added some support for: Bulgarian, Croatian, Estonian, Hungarian, Latvian, + Lithuanian, Slovene + + a new algorithm for 8bit-dense languages (cyrillics), the old one is used + as a fallback + * removed support for non-transitive iconv (such a thing should not exist) + * auxiliary tools in data are not longer built in regular builds, + use --enable-maintainer-mode to rebuild them, create dists, etc. + - fixed iconv interface surface check pickier than iconv itself inhibiting + some otherwise possible conversions + - fixed u+x permissions on temporary files (from 0.10.7) + - fixed not deleting temporary files in iconv interface + - fixed broken iconv interface behaviour in pipes + - fixed iconvcap misdetecting Latin5 as ISO-8859-5 + - fixed casual `make distclean' failures + +enca-0.10.7 2003-01-28 + - fixed interchanged iconv and cstocs encoding names + - corrected(?) librecode surface interaction + - fixed a temporary file creation race condition + * added tex and utf8 to cstocs (names and b-cstocs) + +enca-0.10.6 2002-10-22 + + enconv uses DEFAULT_CHARSET variable, exactly as recode + - ENCAOPT works everywhere, albeit imperfectly + - options -P and -p no longer imply -M too + - ambiguous mode (-M) works again + - pager is run so that help text doesn't disappear + - standard input it printed as STDIN with -d, not as null + - make check works again + - it compiles wihtout recode again + +enca-0.10.5 2002-10-13 + + UTF-8 recognition in binary and otherwise messy files + + detection of double-encoding from some 8bit charset to UTF-8 + + Cork encoding conversion + * librecode interaction was (hopefully) improved + - fixed some build-time problems + +enca-0.10.4 2002-10-10 + + added Cork encoding support for Czech, Slovak and Polish + - empty files are now considered convertible to any encoding + - removed the so-called faster (in fact slower) I/O + - fixed some more compile-time search path issues + +enca-0.10.3 2002-09-22 + * added support for perl umap as external converter + - fixed external converter wrappers to work with standard sh + - fixed some compile-time library search path issues + +enca-0.10.2 2002-09-15 + + target charset is automatically obtained from locales when called as + enconv, new options --guess, --auto-convert + + English language names can be used instead of ISO-639 codes everywhere + - cs_SK and ru_UA locales are properly recognised as Slovak and Ukrainian + +enca-0.10.1 2002-08-29 + + faster I/O + * external converters can be disabled at build time + - `-' is accepted for standard input + - fixed broken built-in converter + - fixed crasing on an unknown language + - trivial (identity) conversions are not performed any more + - help is now printed when input is a terminal and no argument specified + - changed braindamaged <STDIN>, <STDOUT> to STDIN, STDOUT in messages + - various small fixes and build-time improvements + +enca-0.10.0 2002-08-26 + + added support for Ukraininan (CP1251, IBM855, ISO-8859-5, KOI8-U, maccyr + CP1125), Belarusian (CP1251, IBM866, ISO-8859-5, KOI8-UNI, maccyr, + IBM855) and Polish (ISO-8859-2, ISO-8859-12, ISO-8859-16, Baltic, macce, + IBM852, CP1250) + + Enca library introduced + * dropped native Debian package + * --details no longer prints guessing details (now is mostly like --human) + * --list=encodings, --list=built-in-encodings corrected to --list=charsets, + --list-built-in charsets (old names supported with a warning) + * improved Czech and Slovak charsets detection + +enca-0.9.4: 2002-03-03 + - built-in converter didn't convert more than first 64kB of a file + +enca-0.9.3: 2001-07-16 + + a native Debian package + - fixed random reporting of nonsense results + - fixed self-contradictory --details output when file was quoted-printable + encoded + - fixed poor performance on non-GNU/Linux + - made pager less intrusive (instead of intrusive `less' ;-) + - --list=encodings prints only `known' encodings + - fixed several compile-time/portability problems + +enca-0.9.2: 2001-07-13 + * --help and --license are displayed through pager (when possible) + - fixed broken language hooks--they were never activated (from 0.9.1) + - fixed reporting ASCII when a 7bit encoding was detected + - fixed boundary-case behaviour when recovering from librecode failures + +enca-0.9.1: 2001-06-25 + + support for Macintosh Cyrillic, including conversion + + support for unusual UCS-4 byte orders (3412 and 2143) + + new option --license printing full enca license + * exit codes now make sense (0, 1, 2; where 2 means serious troubles) + - temporary files are no longer world-readable + +enca-0.9.0: 2001-03-26 + Serious incompatibilities: + * -E and -C option letters exchanged (much better mnemonics) + * converter wrappers renamed to b-cstocs and b-recode + * finding only 7bit ASCII is no longer considered failure + * need to use --language to set language (sometimes) + * dull converter behaviour no longer supported, -x syntax changed + * option -g removed (try --name=aliases) + * option -c changed to --list=converters, listing format changed + * option -l changed to --list=encodings, listing format changed + * converter names are no longer case insensitive + * no longer uses cstocs names as canonical + * external converters are called with Enca's names, not cstocs's + + Other changes: + + support for slovak and russian (and `none') language + + support for CP1251, IBM866, ISO-8859-5 and KOI8-R, including conversion + + UCS-2, UCS-4, UTF-8, UTF-7 and LaTeX encoding recognition + + much more encoding aliases accepted + + long `GNU style' command line options + + new output types: --enca-name, --iconv-name + + output type --name=WORD allowing to select output type by name + + ENCAOPT environment variable + + language detection from locales + + support for surfaces (experimental) + + new option --list printing various listings + + new converter wrapper b-map (for perl `map') + + new option -m to reset -M back + + new language filters + + new options -u and -U to control multibyte encoding checks + + included [generated] enca.spec into the tarball to allow `rpm -tb' + * -d output improved + * read limit changed to 16MB + * librecode now run with flags diacritics_only and ascii_graphics + - fixed broken -P options + - fixed several build problems on non-GNU/Linux systems + - fixed some missing and wrong characters in Unicode data + - temporary copy of damaged original file is not deleted when rescue fails + +enca-0.8.x: Since features planned for 0.8 and 0.9 happened to be developed + simultaneously, this version number has been skipped. + +enca-0.7.7: 2001-01-01 + + ability to use UNIX98 iconv conversion functions + + the word `none' can be used as -E parameter causing clearing of converter + list + - fixed disarranged help text, misspelled word `European' in macce long + name, obsolete statements in manual page and other stuff of this kind + +enca-0.7.6: 2000-11-20 + + any converter combination/order can be now specified with -E, old -E + meaning is no longer valid + + new option -c (list all valid converter names) + * cork encoding not supported anymore + * better verbosity + * `/' is added to recode recoding requests thus partially solving the + surface problem---surface never changes + * some errors like specifying invalid value of threshold are no longer fatal, + the bad values are ignored instead + * handling of some exotic characters in bulit-in converter slightly changed + - fixed several fatal bugs regarding stdin to stdout conversion + - stdin is copied to stdout in case of failure whenever possible/applicable + +enca-0.7.5: 2000-10-25 + * license changed to GNU GPL Version 2 (i.e. license version is explicitly + specified) + * prints error message when conversion is impossible + * binary data filter improved/changed + - fails back to external converter when GNU recode library cannot convert + due to errorneous request + - '' no longer causes enca to read from stdin + - tries to restore files damaged by GNU recode library + +enca-0.7.4: 2000-10-12 + + box-drawing characters are (carefully) filtered out when guessing + - fixed intermixed behaviour in SMS/nonSMS modes + +enca-0.7.3: 2000-10-09 + + blocks of probably binary data are filtered out when guessing + * standard input is copied to standard output when its encoding is unknown + - fixed reading only 4096 bytes from pipe (from 0.7.1) + +enca-0.7.2: has been never released + + GNU recode recoding chains made possible by starting -x (convert) parameter + with `..' + + second best guess is marked with `-' in -d (print details) output + +enca-0.7.1: 2000-10-02 + * in case of nonfatal i/o failure enca continues processing remaining files + +enca-0.7.0: 2000-09-26 + + standard input to standard output conversion + + short message mode -M + + ability to use GNU recode library + + new output type -r (encoding name after RFC1345) + + ability to convert cork internally + + new external converter brecode (recode wrapper) + + new output type -g (list of aliases) + + new option -V (verbose) + * -x (convert) paramteres syntax changed to in_enc..out_enc (old syntax still + supported, will be removed in 0.8.x) + * option -e (disable external) no longer supported, empty string as -C + (external converter) parameter can be used instead + * encoding names specified as -x (convert) parameters are case insensitive + * ascii is not considered unknown encoding (i.e. failure) so enca returns 0 + * -d (print details) output improved/changed/updated + * -p (prefix result with file name) no longer prints conversion details + * by default result is prefixed by file name when enca is run on more than + one file + +enca-0.6.2: 2000-08-17 + + help texts (-h and -v) made usable (thanx to Halef) + +enca-0.6.1: 2000-08-15 + - tarball bugfix + +enca-0.6.0: 2000-07-20 + + bulilt-in converter + + -x (convert) can now take form -x in_enc,out_enc causing enca to behave + like a dull converter + + new options -e and -E (disable internal/external converter) + + new option -l (print internally-convertible encodings) + +enca-0.5.0: 2000-07-17 + * -p (prefix result with file name) causes enca to print what is converted + and how + * iso8859-2/cp1250 recognition improved + - doesn't spawn external converters as fast as is possbile, but waits for + them to return + - fixed `Unrecognized encoding' when winner is 1250 (from 0.4.3) + - corrected -d (print details) table alignment + +enca-0.4.3: 2000-07-14 + * -d (print details) prints encodings alphabetically sorted + - corrected short encoding name t1 -> cork + - division-by-zero bugfixes + +enca-0.4.2: has been never released + * options -m/-M ([don't] use iso8892-2/cp1250 hack) no longer supported + - fixed showing standard input as empty string (<STDIN> is printed now) + +enca-0.4.1: 2000-07-12 + * default of 60 significant characters changed to 10 + +enca-0.4.0: 2000-07-10 + + first public release + diff --git a/wlx/wayland_qt_base/build/enca-1.19/ChangeLog.prelib b/wlx/wayland_qt_base/build/enca-1.19/ChangeLog.prelib new file mode 100644 index 0000000..14bbb74 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/ChangeLog.prelib @@ -0,0 +1,1016 @@ + # This is ChangeLog for changes before enca became a library. + # The new ChangeLog starts after that. + # Unfortunately, there's no ChangeLog for the transition. + + # Note: EVERYTHING as changed file means global change, i.e. `every file where + # this change was applicable was changed'. + +2002-06-23 Yeti <yeti@physics.muni.cz> + * src/texts.c, src/common.h, src/options.c: define e_isatty() as portable + isatty in common.h, print help instead of wainting for input when stdin + is a tty + +v0.9.4 +2002-03-04 Yeti <yeti@physics.muni.cz> + * src/printresult.c: fixed print_detailed_report() not to truncate charset + names in the table + * src/convert.c: put a no-op file_seek() after file_write() to make + subsequent file_read() work correctly (an ISO C ,feature`, not Enca's) + +2002-03-03 Yeti <yeti@physics.muni.cz> + * src/convert.c: fixed convert_builtin() to convert whole files, not just + first 64kB + +2001-08-16 Yeti <yeti@physics.muni.cz> + * src/options.c: removed strange `:' from start of short_options + +2001-08-01 Yeti <yeti@physics.muni.cz> + * src/common.h: defined e_free(x) to set x to NULL after freeing it + * src/EVERYTHING: formal changes + +v0.9.3 +2001-07-16 Yeti <yeti@physics.muni.cz> + * configure.in, m4/librecode.m4, m4/iconv.m4, src/Makefile.am, + src/epress.c: conversion libraries are put into CONVERTER_LIBS, so + epress doesn't link with them (they are included in enca_LDADD), LIBS + is not modified by librecode and iconv tests + * iconvcap.c: added program_name definition for the case it would link + with librecode (shouldn't happen) + * configure.in: added AC_AIX + * Makefile.am: added forgotten m4/crash-me to EXTRA_DIST + * src/encnames.c: --list=encodings prints only `known' encodings + * Makefile.am: added topline.sh (needed by update target) to dist + * updated docs + +2001-07-15 Yeti <yeti@physics.muni.cz> + * src/lang.c: fixed giving random results due to usage of unitialized + memory in get_charsets() + * src/printresult.c: fixed using double instead of int for ambiguous and + multibyte flags in T_EncDetails structure + * src/guess.c, src/printresult.c, src/printresult.h: added + GUESS_QP_RESOLVED flag to be able to print logically consistent -d output + in case of quoted printables + * src/fileio.c, configure.in: include sys/stat.h unconditionally, we + cannot compile w/o it anyway, warning added to configure + * src/common.h: include both string[s].h and memory.h. instead of just one + of them + * src/common.h: define PACKAGE, VERSION, DEFAULT_EXTERNAL_CONVERTER and + DEFAULT_CONVERTER_LIST when don't have config.h to compile w/o it + * src/options.c: fixed too many \n's in feature list + * configure.in, src/texts.c: added isatty() and ttyname() test, defined + stdout_isatty(), pager is run only when we are able to positively say + stdout is a tty + +2001-07-14 Yeti <yeti@physics.muni.cz> + * src/options.c, src/common.h, src/texts.c: made USE_PAGER a feature +pager + * m4/recode-bugs.m4: added TeX/..ISO-8859-2 recode crash test + * m4/iconv.m4, src/convert_iconv.c: added ICONV_ARG2_CONST test + * m4/typevar.m4, src/common.h, configure.in: removed the no longer needed + long long int test, mere long int is used for mathint + * configure.in: prepend "-Wall -pedantic" before CFLAGS when compiles is + GCC + * Makefile.am: add a new debian changelog entry when version or release + changes, otherwise update time of the current entry + +2001-07-13 Yeti <yeti@physics.muni.cz> + * src/fileio.c, src/convert_recode.c: removed the no-buffering tricks + making it slightly faster on modern GNU/Linux, but much slower everywhere + else + * src/EVERYTHING: put back the #ifdef HAVE_CONFIG_H stuff + * src/texts.c: fixed typo expand_char() -> fputc() in poor man's compress + * src/common.c: added const to stpcpy() *p declaration to keep qualifiers + * m4/pager.m4, Makefile.am, configure.in, src/texts.c: test whether less + accepts -F, possibility to disable pager at all + +v0.9.2 +2001-07-13 Yeti <yeti@physics.muni.cz> + * src/guess.c: fixed reporting `7bit ASCII characters' after a successfull + detection of a 7bit encoding (TeX, UTF-7) + * src/convert_recode.c: fixed typo HAVE_RECODEEXT_H -> HAVE_RECODEXT_H + +2001-07-12 Yeti <yeti@physics.muni.cz> + * src/filters.c: fixed hdata->eid's comparsion before their initialization + in lang_hook_2cs() (so the hook was never run) + * src/convert_recode.c: more correct handling of the situation when we + realise we cannot seek in temporary file during recode failure recovery + * debian/Makefile.am, m4/Makefile.am, Makefile.am, configure.in: removed + the first two, debian/ generated by toplevel Makefile, m4/ is just + distributed + * Makefile.am, src/Makefile.am: replaced $< with literal file names, some + `make's don't always substitute first dependence name + * src/epress.c: added program_name definition to placate librecode + * src/common.h: stdlib.h and unistd.h are included unconditionally (we + depend on them anyway) + * src/texts.c: replaced the `is pager less?' test with a better one + * configure.in, acconfig.h, m4/EVERYTHING: put descriptions directly to + AC_DEFINE[_UNQUOTED]'s, almost get rid of acconfig.h + * src/EVERYTHING: don't trust make passing `-DHAVE_CONFIG_H -I..' to + compiler, #include "../config.h" unconditionally (we depend on it anyway) + +2001-07-10 Yeti <yeti@physics.muni.cz> + * debian/, Makefile.am: created debian/ and modified the Makefile.am to + include it + +2001-07-09 Yeti <yeti@physics.muni.cz> + * configure.in, enca.spec.in: added MAINTAINER variable which can be used + in rpm spec and debian/ files + * src/texts.c: fixed wrong prototype putchar() -> expand_char() when + no compressor is available + * src/texts.c, acconfig.h, configure.in: compressed texts are displayed + through a pager (if available) + * autogen.sh, README.devel: added and make a note about it + +v0.9.1 +2001-06-25 Yeti <yeti@physics.muni.cz> + * src/guess.c: fixed possible overflow in UCS-4 test (slightly changing + what gets recognized as UCS-4) + * src/guess.c: implemented unusual byteorders (3412 and 2143) tests using + a single little-endian ucs-4 test what_if_it_was_ucs4() and shuffling + bytes around shuffle_byte_order(), the same for UCS-4 EOL type tests + * src/common.h: defined PVAR(f, v) [for debugging] + * updated docs + * packaged + +2001-06-24 Yeti <yeti@physics.muni.cz> + * src/encnames.h, src/encnames.c, src/guess.c: renamed SURF_PER_12[34] to + more logical SURF_PER_[43]21 + +2001-06-02 Yeti <yeti@physics.muni.cz> + * src/efilter.c, src/Makefile.am, src/texts.c, src/common.h: created + efilter.c (filter making text files to compress better) and adding + reverse filter to texts.c + * m4/tolower.m4, configure.in, acconfig.h, src/common.h: define our own + implementation of tolower and similar unconditionally + * improved various docs + * BUGS, Makefile.am: generated from manual page section of the same name + * src/efilter.c, src/Makefile.am, src/texts.c, src/common.h: efilter was + funny experiment but not much useful, removed again + +2001-06-01 Yeti <yeti@physics.muni.cz> + * src/getopt.c, src/getopt1.c, src/getopt_long.c, src/Makefile.am: removed + the first two and made getopt_long.c non-generated, removed some unneeded + stuff + * src/common.c: put broken-{m,c,re}alloc fixes into conditionals (but no + autoconf tests---I don't believe such a broken systems really do exist) + +2001-05-28 Yeti <yeti@physics.muni.cz> + * src/options.c: fixed prepend_env() segfault, improved diagnostics + * revised temporary files usage, removed `/tmp bug' from docs + * convert.c, convert_iconv.c, convert_recode.c: renamed tmpfile variable + (synonymous to ISO function name) to tempfile, better not to tempt fate + * script/b-map, script/b-cstocs, script/b-recode: added umask 077 + +2001-05-27 Yeti <yeti@physics.muni.cz> + * src/encnames.c, src/encnames.h, man/enca.1: checks that all characters + in charset/surface names are from some set of allowed characters + * src/common.c: added hack for systems that fail on malloc(0) and similar + +2001-05-20 Yeti <yeti@physics.muni.cz> + * src/epress.c: forgotten [ISO C99] int16_t changed to int + * src/filters.c, src/filters.h: added universal decide-between-2-cs hook + * src/lang_cs.c, src/lang_sk.c: modified to use the universal hook, + some formal changes + * src/lang_ru.c: added maccyr/cp1251 hook (via the universal) + * src/common.h, src/enca.c: sensible exit code (0, 1 or 2) returned + * src/convert.c: convert() returns ERR_* error codes instead of just 0, 1 + * src/common.c, src/convert.c, src/convert_iconv.c, src/encnames.c, + src/fileio.c, src/lang.c, src/locale_detect.c, src/options.c, + src/texts.c: returned 2 on troubles + * updated docs + +2001-05-18 Yeti <yeti@physics.muni.cz> + * src/license.c, src/license.h, src/texts.c, src/texts.h: renamed the + former to the latter + * src/epress.c, src/texts.c: implemented bzip2 and gz interface + * m4/compress.m4, configure.in: added tests for libbz2 and libz, the best + one found is used + * configure.in, src/Makefile.am, src/options.c: COPYING.c and HELP.c are + generated by epress and just linked with enca + * src/Makefile.am: put getopt_long.c into BUILT_SOURCES + * src/lang_ru.c, src/unicodemap.c, src/encnames.c: added maccyr charset + * Makefile.am: added hook to delete BUILT_SOURCES before making dist + +2001-05-17 Yeti <yeti@physics.muni.cz> + * src/fileio.c: temporary files are created with umask 077 + +2001-05-06 Yeti <yeti@physics.muni.cz> + * src/epress.c, src/COPYING.h, src/Makefile.am: created license compressor + * src/license.c, src/options.c: license decompression and printing + +2001-05-01 Yeti <yeti@physics.muni.cz> + * m4/librecode.m4, m4/recode-bugs.m4, m4/long-text.l2: put test for bugs to + recode-bugs.m4 (four bugs are checked, any will launch the warning) + +2001-04-12 Yeti <yeti@physics.muni.cz> + * m4/librecode.m4, configure.in: added a test for broken recode (no + workaround [known], just prints a big warning message) + +v0.9.0 +2001-03-26 Yeti <yeti@physics.muni.cz> + * just packaged + +2001-03-25 Yeti <yeti@physics.muni.cz> + * src/convert.c: fixed reading only first file block in copy_and_convert() + * configure.in, src/EVERYTHING: memory.h test added, string/strings/memory + header file inclusion put into common.h + * src/fileio.c: fixed file_setvbuf() and file_open() (not enough magic) + * src/convert_recode.c: fixed not opening original file + * configure.in, src/convert_recode.c: added recodext.h test, is used when + available for setting diacritics_only and ascii_graphics flags + * src/convert_iconv.c: fixed not opening original file + * src/convert_iconv.c: fixed writing no output in iconv_one_step() + * src/convert.c: fixed intermixed child and parent process in + convert_external() + * src/fileio.c: added file_getline() requiring much less system calls + than GNU libc's fgets() + * src/locale_detect.c: fixed segfault when language detection failed + * m4/tools.m4, configure.in, acconfig.h, src/options.c: consolidated + autoconf macros regarding external converters + * man/enca.1: minor corrections + +2001-03-24 Yeti <yeti@physics.muni.cz> + * src/encnames.c: added quoted printable surface + * src/guess.c: integrated quoted printable into the guessing process + * src/encnames.c, src/options.c: added print_public_surfaces() wrapper to + allow printing --human-readable list of surfaces + * src/lang_cs.c, src/lang_ru.c, src/lang_sk.c: replaced slovak and russian + statistical data with some new (hope better), some hardcoded array sizes + now computed from sizeof() + * iconvcap.c: cosmetical changes + +2001-03-20 Yeti <yeti@physics.muni.cz> + * src/fileio.c, src/fileio.h, src/common.c, src/common.h: T_Buffer type + moved from fileio to common + * src/lang.c, src/lang.h, src/lang_cs.c, src/lang_ru.c, src/lang_sk.c: + use the new T_Buffer type + * configure.in: removed now-unused tests + * src/EVERYTHING: removed redundant header inclusion, ensured satisfying + header dependencies, try to use strings.h when string.h is not avaialble + * src/guess.c: fixed not initializing memory buffer + * src/options.c: exchagned -E and -C option letters (incompatibility!) + * src/guess.c: implemented quoted printable recognition (unused now) + +2001-03-19 Yeti <yeti@physics.muni.cz> + * src/fileio.c, src/fileio.h: some more magic employed, only initiated + can use them now + * src/convert.c, src/convert_iconv.c, src/convert_recode.c, src/lang.c: + changed to use the new file i/o interface + * src/convert_iconv.c: fixed a memory leak + +2001-03-18 Yeti <yeti@physics.muni.cz> + * src/fileio.c, src/fileio.h: finished implementation + * src/common.c, src/common.h: removed stuff belonging to fileio + * src/locale_detect.c, src/guess.c, src.guess.h, src/lang.h, src/enca.c, + src/convert.h: changed to use the new file i/o interface + * src/guess.c: UCS tests check remainder of file length instead of buffer + position (which is still used as a fallback in case of stdin) + +2001-03-17 Yeti <yeti@physics.muni.cz> + * configure.in, script/b-cstocs, script/b-cstocs.in, script/b-map, + script/b-map.in, script/b-recode, script/b-recode.in, script/Makefile.am: + (I'm stupid) reverted the last change + * src/fileio.c, src/fileio.h: created (unique file i/o interface, at last) + +2001-03-12 Yeti <yeti@physics.muni.cz> + * m4/tools.m4: AC_MSG_WARN is used to print warnings + * m4/iconv.m4: iconvenc.h is always created (the dark side is that iconv + usability is no longer cached) + * m4/tools.m4, configure.in, script/b-cstocs, script/b-cstocs.in, + script/b-map, script/b-map.in, script/b-recode, script/b-recode.in, + script/Makefile.am: external converters are located including path and + it's then used for configure-time substitution in the scripts + +v0.9.0pre5 +2001-03-12 Yeti <yeti@physics.muni.cz> + * src/common.h, src/common.c, src/encnames.h, src/guess.c, src/options.c, + src/printresult.c, src/convert.c: eliminated rest of Settings, replaced + by module methods, except read_limit which is still global + * enca.spec.in: various improvements (see the spec file changelog) + +2001-03-11 Yeti <yeti@physics.muni.cz> + * src/EVERYTHING: Settings.ProgName and Settings.Verbose made globals: + program_name and verbosity_level + * src/common.h, src/options.c, src/convert.c: Settings.ExtConverter made + convert.c module global extern_converter, set by set_external_converter() + * src/common.h, src/options.c, src/printresult.c: Settings.PreFName made + printresult.c module global extern_converter, set by + print_set_prefix_filename() + +2001-03-10 Yeti <yeti@physics.muni.cz> + * enca.spec.in: use global cache file + +2001-03-09 Yeti <yeti@physics.muni.cz> + * Makefile.am: (generated!) enca.spec included to distribution (rpm -tb) + +2001-03-02 Yeti <yeti@physics.muni.cz> + * man/enca.1: spell-checked + * src/options.c: corrected available lists in --list= help + +2001-02-28 Yeti <yeti@physics.muni.cz> + * src/lang.c: language is printed in lang_init() when verbose + * src/guess.c: all Latin, Cyrillic and Greek letters have equal weight in + UCS-2 and UCS-4 tests + * src/guess.c: fixed bad default endianess and initial makes-sense-check in + UCS-4 test + * src/printresult.c: UCS-* rating is printed, too + +v0.9.0pre4 +2001-02-26 Yeti <yeti@physics.muni.cz> + * just packaged + +2001-02-25 Yeti <yeti@physics.muni.cz> + * src/options.c, src/encnames.c, src/printresult.c: conversion from output + type to what-name is done in encnames.c, introduced new output types + and what-names ALIASES and NONE, --name=aliases prints list of aliases, + removed --list=aliases, --list=encodings is sensitive to value of --name= + instead, --list=names lists all valid --name= values, default output type + is now NONE (initialized after option processing when needed) + * updated rest of docs + * configure.in, m4/libm.m4: fixed `make install' fail due to dependance on + libtool: get rid of libtool dependance, created our own math library + test + +2001-02-24 Yeti <yeti@physics.muni.cz> + * configure.in, acinclude.m4, m4/: removed acinclude.m4, created m4 dir and + put the definitions there + +v0.9.0pre3 +2001-02-23 Yeti <yeti@physics.muni.cz> + * src/options.c: added --list=lists listing + * NEWS: updated + * man/enca.1: partly updated + +2001-02-22 Yeti <yeti@physics.muni.cz> + * configure.in: added feature and failure lists + * acinclude.m4: cleanup, defined some *_ok variables for feature list, + fixed some `! test ... = ...' to `test ... != ...' + * srcipt/b-cstocs, srcipt/b-map, srcipt/b-recode: `#!/bin/bash' changed + to `#! /bin/sh' (even if I'm not sure whether the scripts are 100% + sh-compatible) + * iconvcap.c: initial ASCII test changed back to ISO-8859-1 since the + former is not supported on some systems (SunOS, IRIX, ...) having + otherwise-usable iconv + * src/getopt_long.c: generated from getopt.c and getopt1.c, but distributed + (mainly because automake is unable to understand something we have in + LIBOBJS can be generated...) + +v0.9.0pre2 +2001-02-22 Yeti <yeti@physics.muni.cz> + * configure.in, src/Makefile.am: merged src/getopt.c and src/getopt1.c to + src/getopt_long.c to allow simple AC_REPLACE_FUNC() be used for + getopt_long optional build + * acinclude.m4: simplified iconv test and added check for libiconv + +2001-02-21 Yeti <yeti@physics.muni.cz> + * Makefile.am: corrected iconvconf.h to iconvenc.h + * src/options.c: fixed undefined and misused ENCA_ENV_VAR when we don't + have wordexp() to parse it + * acinclude.m4: iconvenc.h is always created since I'm not able to explain + automake we don't need it when we don't have iconv + +v0.9.0pre1 +2001-02-20 Yeti <yeti@physics.muni.cz> + * src/convert.c: trivial conversions from ASCII are carried out in built-in + converter + * src/EVERYTHING: cleaned terminology encoding vs. charset; encoding means + (charset,surface) pair + * src/options.c: converter names are case sensitive again + * config.h is included only when HAVE_CONFIG_H + * iconvenc.nul.h, acinclude.c, src/encnames.c: iconvenc.nul.h merged into + encnames.c (neede only there when !HAVE_ICONV) + * configure.in, src/getopt.c, src/getopt.h, src/getopt1.c, src/options.c: + added GNU getopt so long options can be used everywhere (needs testing) + * src/options.c: -m as complement to -M resets affected options to defaults + +2001-02-19 Yeti <yeti@physics.muni.cz> + * src/common.h, src/options.c, src/printresult.c: added iconv name output + type, `-i' (only when HAVE_ICONV) + * src/options.c: `-n' changed to `-e' + * src/options.c: output types (except `-x') can be specified as -n NAME + * iconvcap.c: updated for the new encodings and changed ICONV_ prefix to + ICONV_NAME_, also changed the suffixes to pure alphanumeric, ISO-8859-1 + test changed to ASCII + * src/convert_iconv.c: updated to the new encoding/surface model + * src/guess.c: try to detect swapped UCS-2 from the first byte pair, too + * src/options.c: pointer woodoo to comply ISO C in print_some_list(): one + more level of indirection in abbreviation table data + * src/options.c, src/encnames.c: iconv name output type defined always, but + when iconv names are not available error message is printed instead + * iconvconf.h, iconvenc.h: the former renamed to the latter + * iconvenc.h.nul: created. contains all iconv names defined to NULL + * acinclude.m4, src/encnames.c, src/convert_iconv.c: iconvenc.h is either + successfully generated by iconvcap or copied from iconvenc.h.nul so it + always exists and is always #included + * configure.in, src/options.c: getopt.h test (defines getopt_long(), etc.) + * src/common.c: expand_abbreviation() returns pointer to whole abbreviation + structure so it's possible to fetch the expanded name, too; all callers + changed + * script/bcstocs, script/brecode, script/b-cstocs, script/b-recode: the + first two renamed to the second two + * script/b-map: created. perl `map' wrapper + +2001-02-18 Yeti <yeti@physics.muni.cz> + * src/common.c: e_tmpfd() now returns empty string a file name when fails + * src/options.c: max read limit increased to 16MB + * src/options.c: default converter list changed, now is + "built-in,librecode" for +librecode-interface, [+-]iconv-interface + "built-in,iconv" for -librecode-interface, +iconv-interface + "built-in" for -librecode-interface, -iconv-interface + * src/convert_recode.c: cleaned-up to use the new encoding/surface model + * src/convert.c, src/convert_common.h, src/convert_recode.c: request + formatting (either for printing or for recode requests) function + format_request_string() + * src/convert_recode.c: temporary copy of original file is not deleted + when rescue of damaged original fails (what a paranoia!) + * src/common.c: e_fopen() and e_fclose(), fopen() and fclose() wrappers, + unsed in various places + * src/EVERYTHING: perror(NULL) changed to perror("") since some C libraries + don't understand the former to print empty prefix string + * src/encnames.c, src/options.c: added `surfaces' to --list option + * src/convert.c: valid converter names are printed one per line + * src/encnames.c: added iconv name to T_EncInfo, all defined to NULL when + iconv interface is not build + * src/common.c: implemented abbreviation searching expand_abbreviation() + * src/options.c: print_some_list() uses the new abbreviation engine + * src/convert.c: add_converter() uses the new abbreviation engine (needed + some data types shake-up) + * src/lang.c: got rid of `initialization discards qualifier...' warnings + by shaking up with the consts (no functionality changed) + +2001-02-17 Yeti <yeti@physics.muni.cz> + * src/common.h: surface type formalized to surfint (instead of uint16) + * src/encnames.c: implemented surface <-> name conversion + * src/encnames.c, src/guess.c: changed UCS surfaces to recode style + * src/options.c, src/enca.c: updated parse_x_arg(), removed + dull-converter-like beahviour + * src/locale_detect.c: get rid of str[c]spn() (they are ISO C, but autoscan + tries to convince me I should check for them), flag-table approach is + more efficient anyway + * src/common.c: commented out strstrcount() (not needed) + * src/encnames.c, src/encnames.h: empty surface SURF_REMOVE (to get only + "/" as surface name) (dirty) + +2001-02-14 Yeti <yeti@physics.muni.cz> + * src/options.c: option letter space polluted by various listing options + cleaned by introducing --list=WORD (incompatible with previous -l usage) + * src/encnames.c: print_encoding_aliases() prints list of accepted encoding + aliases (`recode -l' style) + * src/encnames.c: encodings sorted alphabetically (by canonical name) + * src/lang.c, src/lang_cs.c, src/lang_sk.c, src/lang_ru.c: ability to + print what regular encodings belong to this particular language + +2001-02-12 Yeti <yeti@physics.muni.cz> + * src/lang.c: fixed not initializing language filter report for language + `none' + * src/encnames.h, src/encnames.c: introduced ENCF_MULTI flag marking + multibyte encodings + * src/printresults: heavily improved details (but still misses surfaces) + * src/options.c: file name is printed with details except when user + specifically asks not to print it + * src/options.c: help texts updated + * src/encnames.c, src/printresults.c: cstocs names of encodings not known + to it changed to ???, but still printed the same in details + * src/defaults.h: removed. all definitions moved to appropriate C files + (or common.h) + * src/encnames.c, src/options.c, src/prinresult.c: removed option `-g' + * src/encnames.c: presqueezed aliases replaced by normal, we now squeeze + names when needed (with hashing it's OK), also changes canonical names + * config.h.top, configure.in: removed the former and add -D_GNU_SOURCE + directly to CFLAGS + * configure.in: removed warnings + * configure.in: integer type sizes tested only when system doesn't provide + stdint.h (and int's default changed to ISO C minimum) + * configure.in, acinclude.h: moved my tests to the latter (newly created) + to make the former more readable + * guess.c: TEX_* and UTF_* defines moved to appropriate functions (as const) + * guess.c: fixed missing print_flags_or() for language hooks (from ????) + +2001-02-11 Yeti <yeti@physics.muni.cz> + * src/encnames.c: hashing is used to find encoding names + * src/options.c: fixed not recognizing output encoding (from 2000-02-02) + * src/unicodemap.c: `-l' prints each group on separate line + +2001-02-10 Yeti <yeti@physics.muni.cz> + * src/guess.c: handle correctly case when a language has only one encoding + * src/guess.c: multibyte tests use count table for fast rejecting + * src/guess.c: surface detection, eol_surface() + +2001-02-08 Yeti <yeti@physics.muni.cz> + * src/lang_ru.c, src/encnames.c, src/unicodemap.c: added IBM 866 charset + * src/filters.h: made ibm866 filter alias to keybcs2 filter (they're + identical) + * src/guess.c: saved stdin is not restored and `up' is not recomputed when + nothing was filtered out + +2001-02-06 Yeti <yeti@physics.muni.cz> + * src/detect_lang.c, src/locale_detect.c: renamed the former to the latter + * src/filters.c, src/filters.h, src/lang_cs.c: first two created (language + filter repository) and all box-drawing filters moved there + * src/filters.c: added bow-draing filters for more encodings + * src/common.h, src/options.c, src/printresult.c: implemented -n output + type (prints `canonical' encoding name used internally in enca) + * src/lang_sk.c, src/lang_sk.h, src/lang_ru.c, src/lang_ru.h, src/lang.c, + src/encnames.c, src/unicodemap.c: added Slovak and Russian languages and + appropriate encodings + * src/unicodemap.c: introduced the idea of compatible encodings; LATIN2 + and CYRILLIC groups defined + * all headers: revised header file dependencies + * src/lang.c, src/locale_detect.c: implemented the notion of no + language---when user sets language to `none' no regular encodings are + processed (so when you say `-UL none' only pure ascii gets recognized) + * src/options.c: fixed broken `-P' (an old bug) + +2001-02-05 Yeti <yeti@physics.muni.cz> + * src/lang.c, src/lang.h, src/lang_cs.c, src/lang_cs.h: created the first + two and moved all regular encoding routines to them + * src/options.c: implemented language settings (added Language to Settings) + +2001-02-04 Yeti <yeti@physics.muni.cz> + * src/unicodemap.c: is_subset_consistent() now uses translation table for + checking + * src/guess.c: incorporated multibyte encodings into the guessing process + * src/guess.c: implemented an absolute likehood test of the applied to the + relative winner + +2001-02-03 Yeti <yeti@physics.muni.cz> + * src/common.c, src/common.h: introduced type flagint for tables of flags + (defined as short int), all callers changed + * src/options.c: fixed accepting invalid option values, ReadLimit must be + a multiple of 4 (to make UCS tests more reliable) + * src/guess.c, src/printresult.c: added number of 8bit's (up) to details + * src/guess.c: finished is_valid_utf8(), is_valid_utf7(), looks_like_tex(), + looks_like_ucs2() and looks_like_ucs4() tests (except surfaces) + +2001-02-02 Yeti <yeti@physics.muni.cz> + * src/unicodemap.c: added many missing characters to maps + * src/unicodemap.c: shortened maps by starting them from first character + that doesn't map to itself + * src/options.c: finally removed old dull-conversion syntax + * src/options.c, configure.in: long `GNU style' options---when + getopt_long() function is available, configure test added + * src/options.c, configure.in: program_invocation_short_name is used when + offered by system, otherwise strip_path() is used to make it + * src/options.c, configure.in: value of environment variable ENCAOPT is + prepended before command line options---when wordexp() function is + available, configure test added + +2001-02-01 Yeti <yeti@physics.muni.cz> + * src/EVERYTHING: encoding are no longer identified by name, but integer + eid is used; T_Encoding contains---beside eid---surface, but it's not + used for anything yet + * implemented name squeezing and alias recognition---almost any sensible + (and a whole bunch of stupid) encoding identifier is recognized + * introduced new, less stupid, `canonical' names---passed to external + converter and looked-up faster than the others + * src/guess.c, src/enca.c, src/printresult.c: result is passed as + T_Encoding type + * src/guess.c, src/printresults.c, src/lang_cs.c: print implemented as + `object', guess details are fed by different functions when needed + (no globals and circular dependencies anymore) + * src/printresults.c: mapping from output type to encoding name is used + instead of ugly switch () + * src/unicodemap.c: character 0xa4 from koi8cs2 converted to tilde (0x7f) + * src/options.c: refuse to serve as a dull converter when input encoding + is not known to us + * src/common.c, configure.in: implemented stpcpy() when not provided by + system (configure test added) + * src/guess.c, src/enca.c: 7bit ascii is no longer discriminated and no + longer causes enca return nonzero error code + +2001-01-30 Yeti <yeti@physics.muni.cz> + * src/langdata_cs.c, src/langhook_cs.c, src/lang_cs.c: the first two merged + to the third containing [almost?] all language specific stuff + +2001-01-29 Yeti <yeti@physics.muni.cz> + * src/encnames.c: created. (language independent encoding name handling) + +2001-01-28 Yeti <yeti@physics.muni.cz> + * src/common.h, configure.in: tests for stdint.h and integer type sizes + used to define uint16 and uint32 + * src/unicodemap.c: changed map storage type to uint16 thus saving several + kilobytes, removed need for an empty last table + * src/guess.c: added looks_like_ucs2(), looks_like_ucs4() and partially + looks_like_utf7() + +2001-01-27 Yeti <yeti@physics.muni.cz> + * src/guess:c reimplemented look_like_TeX() in a more efficient way + * src/EVERYTHING: static file globals used only in one function moved into + the appropriate function + * man/enca.1: made more human readable, different macros are used + +2001-01-26 Yeti <yeti@physics.muni.cz> + * src/detect_lang.c, src/detect_lang.h: detect_lang() accepts string + parameter now + * src/guess.c: implemented utf-8 parse test is_valid_utf8() and + (La)TeX-encoded accents test look_like_TeX() + +2001-01-25 Yeti <yeti@physics.muni.cz> + * src/detect_lang.c, src/detect_lang.h, src/Makefile.am, src/defaults.h: + guessing user's preferred language from locale (not used yet) + * configure.in, acconfig.h: implemented check for locale.alias + +v0.7.7 +2001-01-01 Yeti <yeti@physics.muni.cz> + * e_read4() now consistently sets number of bytes in buffer to zero even + when reading of zero bytes is requested (seems to break nothing, but...) + * documentation synchronized + +2000-12-31 Yeti <yeti@physics.muni.cz> + * `none' is accepted as converter name and causes clearing the converter + list + * finished iconv interface + * changed some messages, hope no one parses them + * ssize_t availability checked by configure + +2000-11-29 Yeti <yeti@physics.muni.cz> + * long long int availability is now explicitely checked by configure + * unsigned char -> byte + * implemented e_write4() and e_read4() that allow to specify buffer address + and size (e_read_with_limit replaced by e_read4()) + * fixed files closed twice in copy_and_convert() + * fixed bad return value tests for e_read() and e_write() in + copy_and_convert() + * implemented iconv_one_step() and enc_trans() for iconv, so it is almost + usable on iconv-transitive (GNU) systems now + +2000-11-28 Yeti <yeti@physics.muni.cz> + * iconv transitivity is now explicitely checked by iconvcap instead of + checking for gconv + +2000-11-26 Yeti <yeti@physics.muni.cz> + * misspelled `Europian' corrected to `European' in macce long name + +2000-11-21 Yeti <yeti@physics.muni.cz> + * fixed some nonsubstantial stuff, redundant #includes, docs and comments + forgotten in too hastily released v0.7.6 + * convert_iconv.c separated from convert.c + +v0.7.6 +2000-11-20 Yeti <yeti@physics.muni.cz> + * unicode mapping data made NULL terminated instead of fixed-length + * discovered bug in gcc :-( + * all upper-half-of-ascii structures promoted to 256 characters (too many + changes to record here) + * support for cork encoding ceased + * help text updated and divided to sections (thus fixing warning about + too long, ISO C violating, string) + * get_in_enc_list() and get_converters() changed to print_* printing the + lists, called directly from process_opt() + * convert_recode.c separated from convert.c to make the amount of #if's + bearable + * encoding list made NULL terminated instead of fixed-length + * reversed order of generating recoding table so, character with lowest + 8bit code is always outputed for synonyms (instead of highest) + * implemented converter flags CONV_EXTERN, we do not try to recover after + external converter failure, since it's impossible by definition + * xlat table cache bubble sorting on use + * man page and other documentation synchronized + +2000-11-19 Yeti <yeti@physics.muni.cz> + * a simple test suite introduced in test/ (not distributed) + * fixed stupid || -> && bug in e_close() causing failure in pipes + * copy_and_convert() now processes what is saved in io_buffer always when + called on stdin (not only when recoding is done too), this fixes bug in + conversion to the same encoding in pipe + * fixed comparing return value of e_tmpfd() with zero (instead of -1) + causing not calling external converter in redirection + * stdin is always copied to stdout when we are not able to perform + conversion, irregardles of reason + * some error messages improved + +2000-11-18 Yeti <yeti@physics.muni.cz> + * it's up to every converter to translate cstocs encoding names to its + native names---implemented recode's enc_trans(), others use cstocs + * rearranged converters to work in any order as expected, implemented ERR_* + (internal) error codes in convert.c + * implemented -c printing list of all valid converter names + (get_converters()) + * implemented e_tolower that cannot fail (and appropriate autoconf test) + * split process_opt() to make less monster from it + * error messages begin with enca file name without path (strip_path()) + * some preliminary iconv support, the converter doesn't actually exist yet + * errorneous values of most commandline parametres no longer cause enca to + abort + * request cache bubble sorting on use + +2000-11-16 Yeti <yeti@physics.muni.cz> + * fixed destroying outer and request after every use + * implemented librecode request chache optimization + * implemented e_unlink() + * any converter combination/order can be specified on command line with + -E option (meaning changed!) + * external converter failure made non-fatal + +2000-11-14 Yeti <yeti@physics.muni.cz> + * bcstocs and brecode return exit status and message is printed when it + fails + +2000-11-05 Yeti <yeti@physics.muni.cz> + * made iconv configure test, all configure results are cached + +2000-10-31 Yeti <yeti@physics.muni.cz> + * config.h is always included first (even before system headers) + +2000-10-30 Yeti <yeti@physics.muni.cz> + * fixed freeing not allocated request in convert_recode() + * implemented some more verbosity in converter + * strstr() alternative moved to common.c + * implemented strstrcount() conting occurences of needle + * '/' is added after both in_enc and out_enc when creating recode request + string, partially helps with touchy librecode, but sometimes it fails + anyway + * monstrous convert_recode() split to several functions, nevertheless + remains monstrous + +2000-10-25 Yeti <yeti@physics.muni.cz> + * more autoconf madness + +v0.7.5 +2000-10-25 Yeti <yeti@physics.muni.cz> + * strstr() defined in options.c when not provided by system library + +2000-10-22 Yeti <yeti@physics.muni.cz> + * copying policy changed to GNU/GPL version 2, explicitely, instead of + version 2 or any later version + * librecode autoabort feature finally disabled + * fixed request cache initialization bug + * fixed O_RDONLY zero/nonzero portability problem + * convert_recode() restores file from temporary copy when librecode + converter fails + * encoding names are not duplicated but assigned in get_encodings() + * heavy use of const modifier (too many changes to record here) + * solved cyclic dependancy between langdata and langhook headers by making + hookdata plain pointer (i.e. void*) and moving T_HookData definition + to .c file + +2000-10-18 Yeti <yeti@physics.muni.cz> + * removed ffname_[rw]() filename wrapper in cases we cannot get stdin/stdout + (like e_lseek()) + * stdin/stdout is internally passed as NULL (instead of empty string) so + one can no longer call enca '' '' to make it wait for several stdin's + * return values of recode_new_outer() and recode_new_request() are checked + * implemented librecode request caching, outer is now global and new + request_cache too, neverhteless caching strategy is poor + * implemented e_strdup() (strdup()) is not ISO/POSIX) and heavily used + instead of strlen/malloc/strcpy sequences + +2000-10-15 Yeti <yeti@physics.muni.cz> + * fixed closing stderr in e_close() (though calling it with filedescriptor 2 + would be bug anyway) + * cleaned types of variables library functions are called with + (unsigned long int -> size_t, etc.) + * unsigned long long int is used when available for weight/occurence + computations, mathint type introduced + * cleaned names possibly conflicting with POSIX reserved names and libc + header reserved names + * recode_scan_request() return value is now checked for success + * fails back to external converter when librecode cannot convert due to + errorneous request (as one would understand from man page) + * prints error message when conversion is impossible + * merged all file-copying code in convert.c to copy_and_convert(), + convert_internal_stdin() optimized out of existence + * return codes in convert.c changed, -1 is now returned as error code only + by low level i/o from common.c + * get/generate_xtable() are no longer able to generate identity (not needed) + +2000-10-14 Yeti <yeti@physics.muni.cz> + * cleaned some T_GResult.boxout residua + * addresses of language filter/hook reports printing functions passed in + T_GResult + * some #include <...> corrected to "..." for local files + * corrected filter reports in SMS mode + +2000-10-13 Yeti <yeti@physics.muni.cz> + * binary filter is more drastic, requires BIN_MIN_TEXT_CHAR letters + (instead of non-binary characters) to switch back to text mode + +v0.7.4 +2000-10-11 Yeti <yeti@physics.muni.cz> + * fixed behaviour in SMS mode (mismatched if([!]Settings.SMSMode); might + even cause coredumps?) + * implemented box-drawing character filter filter_boxdraw_out() and put it + into langdata_cz.c, again with interface lang_filter(); not run in SMS + mode (printresults.c updated accordingly) + +v0.7.3 +2000-10-08/09 Yeti <yeti@physics.muni.cz> + * fixed reading only 4096 bytes from pipe (by a crude way, even if trying to + lower number of system calls as much as possible) from 0.7.1 + * regenerated data (hope last time) and realized pair/... based guessing + is nonsense + * implemented filter that filters out blocks of probably binary data (stdin + is saved when conversion is required), filter_binary_out() number of + filtered characters is printed by -d + * stdin is copied to stdout when its encoding is unknown (much more logical, + but can break existing scripts) + +v0.7.2 +2000-10-05 Yeti <yeti@physics.muni.cz> + * corrected F_EMPTY message (F_EMPTY now really means file is empty) + * second best is marked in -d output by `-' (added p_esec to T_GResult) + +2000-10-04 Yeti <yeti@physics.muni.cz> + * *_cs filenames corrected to *_cz (Czechoslovakian -> Czech) + * lang_hook() divided to interface lang_hook() and lang_hook_stz() doing + the real work (preparation for more langhooks) + * information about active language hooks saved in active_hooks (for + printing) + * perhaps solved language hook info printing dependency (when -d): new + function print_lang_hook_data() is defined directly in langhook_cz and + called in print_results + +2000-10-02/03 Yeti <yeti@physics.muni.cz> + * recoding chains made possible by starting -x parameter with `..' + * BSD [s]random() changed to ISO [s]rand() + * fixed all remaining warnings except 1.4 kB long string containing help + text (compile tried with -Werror -Wall -pedantic -ansi + -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations + -Wnested-externs) + +v0.7.1 +2000-10-01 Yeti <yeti@physics.muni.cz> + * moved to low level i/o: e_fopen() changed to e_open(), etc., e_write(), + etc. introduced, convert_die() abadoned + * return codes slightly changed to distinguish between guessing failure + and i/o failure + * get_xtable() and generate_xtable() changed to be able to generate identity + (that is then used in convert_internal_stdin()) + * not all i/o failures cause aborting + * documentation improvements and corrections, as usual + +2000-09-30 Yeti <yeti@physics.muni.cz> + * temporary file creation is tried 3x and existing temporary files are not + overwirtten + +v0.7.0 +2000-09-25/26 Yeti <yeti@physics.muni.cz> + * removed option `disable external converter' (-e), empty -C parameter + can be used instead + * e_tmpf() divided to e_tmpf() creating the file and e_tmpfname() generating + temporary file name + * fixed memory leak (not freeing tmpfname) in convert_recode() and + convert_external() + * man page updated + +2000-09-24/25 Yeti <yeti@physics.muni.cz> + * fixed io_pos == 0 bug when enca converts stdin as dull converter + * unicode.* renamed to unicodemap.* + * -x encoding separator changed to .. to be compatible with recode and + comply RFC 1345 (allowing comma in encoding names) + * multiple .. allowed in -x argument to make possible specify recode chains + (but only recode understand them) + * ffname() divided to ffname_r() and ffname_w(), one returns stdin name one + stdout name + * implemented convert_recode() converting via recode library + * conditionaly added program_name and other stuff requred by librecode + * == changed to = in bcstocs and brecode to make them work in older bash + * conversion to the same encoding no longer causes warnings + * conversion to the same encoding works correctly even for stdin + * ascii no longer considered unknown encoding + * introduced verbose option (-V), converter now prints what is doing on + -V not on -p + * librecode interface _disabled_ by default in configure.in + +2000-09-23/24 Yeti <yeti@physics.muni.cz> + * two underscores removed from begin (and end) of #defines to comply ISO C + * guess read buffer and convert read/write buffer merged (the same applies + to BUFFER_SIZE and Settings.ReadLimit) and this io_buffer made persistent + (created by new functions enca_init(), destroyed by enca_done()) so + information from stdin does not get lost + * user specified read limit is rounded up to nearest multiple of 16 + * convert_internal() splitted to convert_internal_file() and + convert_internal_stdin(), that converts stdin to stdout + * introduced e_tmpf() creating temporary files since none of glibc functions + does The Right Thing (execept maybe non-POSIX tempnam()) + * convert_external() creates temporary file and put stdin there if stdin is + to be converted and passes `-' as fourth parameter to converter + instructing it to send output to stdout + * bcstocs and brecode rewritten to recognize the fourth parameter and put + under GNU GPL + * a new output type OT_ALIAS (option -g) introduced that lists all known + aliases and -f does approximately the same as in 0.6 serie again + * resloved strange dependencies between langdata and langhook + * fixed e_tmpf() passing-by-value bug + * encoding names specified as -x parameters are converted to lowercase + * fixed terrible typo || -> && in bcstocs and brecode + +2000-09-22/23 Yeti <yeti@physics.muni.cz> + * introduced recode wrapper script, brecode + * introduced is_subset_consistent() checking if characters have the same + meaning in two encodings (unfortunately makes guess.c dependent on + unicode.h) + * implemented -M (by function sms_hook()) + * activation and usefulness of sms_hook() reported by -d + * added Cork encoding to unicode.c to make -M useful (but conversion from/to + Cork is still quite bad, and should be done by cstocs/librecode only) + * implemented e_malloc(), e_calloc() and e_realloc() aborting on failure, + declared free() in common.h, defined NEW() allocator [this one is really + braindead] + +2000-09-21/22 Yeti <yeti@physics.muni.cz> + * fixed not-initalizing-encoding-table coredump + * added new output type OT_RFC1345 (option -r), some OT's renamed + * added -r and -M options (-M accepted, but not implemented yet) + * prefixing with filename is now on by default when run on more than one + file + * added RFC 1345 names and in consequence renamed name* memebers of + S_EncRaw and S_EncStat to keep namespace consistent + * much more (in fact all known) aliases listed in full names -- maybe too + many + * in detailed output is now file name printed on the top and cstocs and RFC + 1345 names are printed separately in (bottom) result part + * hook name is not fixed, but part of langdata_cs.c (still not very clean, + though) + +2000-09-17/18 Yeti <yeti@physics.muni.cz> + * moved to autoconf/automake (not respected by the C sources yet) + * reorganized to deep package + * fixed `cd . && pwd` bug in automake :-( + * old config.h renamed to defaults.h + * rawdata.c and rawuni.c merged with encdata.c and encuni.c mainly to avoid + problems with automake + * bcstocs now prints error message when it fails, to make things clear + * encopt* renamed to options*, encuni* to unicode* and encdata* to + langdata* + * enca.c split to convert.c, guess.c, printresult.c and langhook.c, + header files introduced, some functions renamed and their parameters + changed (too many changes to list here) + (greetings to Halef) + * process_file() now only controls what actions should be taken and no + longer does anything itself + * print_results() no longer calls converter, this is done in process_file() + * results of guessing passed encapsulated in struct S_GResult + * language specific files (lang*) got _cs extension + * HELP_TEXT and VERSION_TEXT defined as strings instead of macros + * common stuff moved to common.c/common.h + [enca now compiles but doesn't work yet] + +v0.6.2 +2000-08-17 Yeti <yeti@physics.muni.cz> + * help texts (-h and -v) improved, thanx to Halef + * some other minor changes in docs + +v0.6.1 +2000-08-15 Yeti <yeti@physics.muni.cz> + * tarball repacked with files encuni.c, rawuni.c, rawuni.h missing in + 0.6.0 tarball + * bcstocs magic line changed to #!/bin/bash + * TODO updated to reflect current work on 0.7 + +v0.6.0 +2000-07-20 Yeti <yeti@physics.muni.cz> + * formal changes in rawdata.c + * internal converter implemented (rawuni.c, encuni.c, enca.c) + * -x can now take form -x in_enc,out_enc + * introduced options -e and -E + * introduced option -l + * READLIMIT_MAX changed back to 1MB + * man page improved(?) + +v0.5.0 +2000-07-17 Yeti<yeti@physics.muni.cz> + * waits for converter to return (much slower conversion, but doesn't + produce `cannot fork()'s) + * -p makes -x print what is doing + * fixed `Unrecognized encoding' when winner is 1250 (from 0.4.3) + * _exit() in converter caller corrected to exit() since we don't use + vfork() + * use EXIT_SUCCESS and EXIT_FAILURE instead of 0 and 1 + * aborts when it cannot close open file (since it means something very + bad is happening) + * added forgotten z-with-check to il2/1250 hack + * il2/1250 hack put to separate function + * (minimalistic) config.h introduced + * READLIMIT_MAX put to config.h and changed to 4MB + * recomputed statistical data (probably not the last time) + * also other defaults put to config.h + * corrected -d table alignment + * fixed not initializing significancy table + * added -f to cp and rm in Makefile + * some other code clean-ups + +v0.4.3 +2000-07-14 Yeti <yeti@physics.muni.cz> + * corrected short encoding name t1 -> cork + * corrected some dividing by zero resulting inf/nan rating + * il2/1250 hack made more logical + * -d prints encodings alphabetically sorted + * significancy table is computed only once + +v0.4.2 +2000-07-13 Yeti <yeti@physics.muni.cz> + * removed options -m/-M since it's nonsense to maintain something marked + `do not use' in man page + * -p now shows stdin as <STDIN>, instead of empty string + * ascii and ??? made `encodings' + * bcstocs doesn't depend on mktemp + * some other code clean-ups + +v0.4.1 +2000-07-12 Yeti <yeti@physics.muni.cz> + * silly default of 60 significant characters changed to 10 + * minor bugfixes and corrections + +v0.4.0 +2000-07-10 Yeti <yeti@physics.muni.cz> + * rewritten from scratch in ISO C diff --git a/wlx/wayland_qt_base/build/enca-1.19/DEVELOP.md b/wlx/wayland_qt_base/build/enca-1.19/DEVELOP.md new file mode 100644 index 0000000..e217d8e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/DEVELOP.md @@ -0,0 +1,95 @@ +# Developing programs utilizing libenca + +* Look at libenca API documentation in devel-docs/html. +* Look into enca source how it uses libenca. Note enca is quite a simple + application (practically all libenca interaction is in `src/enca.c`). It's + single-threaded and uses one language and one analyser all the time. + Provided each thread has its own analyser, libenca should be thread-safe + (untested). +* Take names starting with `ENCA`, `Enca`, `enca`, `_ENCA`, `_Enca`, and + `_enca` as reserved. +* pkgconfig is supported, you can use `PKG_CHECK_MODULES` to check for libenca + in your configure scripts + +# How to add a new charset/encoding + +(optional steps are marked _[optional]_): + +* `iconvcap.c`: + * Add a new test (even if you are 100% sure iconv will never support it), + please see top of `iconvcap.c` for some documentation how it works. +* `tools/encodings.dat`: + * Add a new entry. + * Use `@ICONV_NAME_<name>@` (as it will appear in iconvcap output) for + iconv names. +* `tools/iconvenc.null`: + * Add it (with NULL) + +Specifically, for regular 8bit (language dependent) charsets: + +* `lib/unicodemap.c`: + * Add a new map to Unicode (UCS-2) `unicode_map_...[]`. + * Add a new `UNICODE_MAP[]` entry. +* `lib/filters.c`: _[optional]_ + * Create a new filter or make an alias of an existing filter. +* `lib/lang_??.c`: + * Add the new encoding to some existing language(s). + * Add appropriate filters or hooks _[optional]_. +* `data/maps/??.map`: + * Add a new map to Unicode (UCS-2) + + +Specifically, for multibyte encodings: + +* `lib/multibyte.c`: + * Create a new check function. + * Put it into appropriate ascii/8bit/binary test group + `ENCA_MULTIBYTE_TESTS_ASCII[]`, `ENCA_MULTIBYTE_TESTS_8BIT[]`, + `ENCA_MULTIBYTE_TESTS_BINARY[]`. + * Put strict tests (i.e. test which may fail) first, looks-like tests + last. + + +# How to add a new surface + +* Try to ask the author what to do, since this may be complicated, or +* Hack, basically it must be added to `lib/enca.h` `EncaSurface enum`, to + `lib/encnames.c` `SURFACE_INFO[]` a detection method must be added to + `lib/guess.c` and now the most complicated part: this new method must be used + in the right places in `lib/guess.c` `make_guess()`. + + + +# How to add a new language + +* Create a new language file: + * Create new `lib/lang_....c` files by copying some existing (use locale + code for names) + * Fill all encoding and occurence data, create filters and hooks (see + `filters.c` too). You can do it manually, but look how it's done for + existing languages in `data/*` and read `data/README`. +* `lib/internal.h`: + * Add new `ENCA_LANGUAGE_....` +* `src/lang.c`: + * Add a new `LANGUAGE_LIST[]` entry pointing to the `ENCA_LANGUAGE_....` + + +# Automake, autoconf, libtool, ... note + +If you run `./autogen.sh` and it finishes OK, you are lucky and can expect +things to work. + +You have to give `--enable-maintainer-mode` to `./configure` (or `./autogen`) +to build dists and/or the strange stuff in `tools/`, `data/`, `tests/`, and +`devel-docs/`. + + +# Repository and continuous integration + +The git repository is located at GitHub: + + http://github.com/nijel/enca + +There is also continuous integration on Travis: + + https://travis-ci.org/nijel/enca diff --git a/wlx/wayland_qt_base/build/enca-1.19/FAQ b/wlx/wayland_qt_base/build/enca-1.19/FAQ new file mode 100644 index 0000000..0a13ea9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/FAQ @@ -0,0 +1,66 @@ +#============================================================================ +# Enca v1.19 (2016-09-05) guess and convert encoding of text files +# Copyright (C) 2000-2003 David Necas (Yeti) <yeti@physics.muni.cz> +# Copyright (C) 2009-2016 Michal Cihar <michal@cihar.com> +#============================================================================ + +Frequently Asked Questions about Enca + +* Q: What obscure encoding the FAQ, THANKS, and other files use? +* A: Run Enca on them and you'll see. + +* Q: How do I specify input encoding? +* A: You can't. If you know the encoding, you don't need Enca. Use some + fully-fledged converter. + +* Q: Why Enca can't detect both language and encoding? +* A: Because this is impossible. Well, it's possible for natural, long + enough texts. But Enca can detect encoding of nonsense and people + are used to it. No program can tell you “ěčřýáíéú” is both Czech + and e.g. ISO-8859-2. Incidentally, interpreting the same bytes as + Win-1251 one gets “мишэбнйъ”, which is equally good Russian nonsense. + +* Q: Why Enca can't recognise encoding of all-uppercase texts? +* A: Mostly again because there's a trade-off between nonsense detection and + low-probability natural text detection. But it's possible to detect + both, I'm working on that. + +* Q: Why Enca needs LC_CTYPE to be set? +* A: No, it doesn't need it. But you need to use “-L language-code” then. + It's possible to put it into ENCAOPT environment variable, if you want + to make your life easier. (Never versions of Enca try to guess your + language from other locale settings too.) + +* Q: Why “enca -x ascii” doesn't work? +* A: Unfortunately there are several different things people call “conversion + to ASCII”. Consider following characters: ě (Latin small letter e with + caron) and ≫ (Much greater-than). By conversion to ASCII you may mean: + 1a. Omitting these characters in output, because they are not + representable in ASCII. + 1b. Keeping these characters intact in output, because they are not + representable in ASCII. + 1c. Failing (possibly damaging the file), because they are not + representable in ASCII + 2. Approximating them with single, close ASCII characters; in this case + probably plain “e” and “>”. + 3. Expanding them to sequences of ASCII characters which may be less + readable then the approximations above, but generally allow + reconstruction of the original characters. Such sequences could + be e.g. RFC-1345 mnemonics “e<” and “>>”. + What happens when you run “enca -x ascii” on something, depends on + the converter used. + + The usual scenario is: Enca uses librecode or libiconv, which do (1), + and you get upset. The only tool doing (2) known to me is cstocs, and + does it only for Latin2 characters (install cstocs and specify cstocs + as the converter to be used, if you want (2)). AFAIK, there's no tool + doing reasonably (3), though recode can expand to mnemonics (use rfc1345 + as target charset instead of ascii). + +* Q: Why “enca -E cstocs” doesn't work in my RedHat/Fedora? +* A: This is a cstocs problem. Cstocs is broken for Perl ≥ 5.8 and UTF-8 + locales. Perl Unicode handling changes with every version so an + advanced charset converter working in mutiple Perl versions is something + between impossible and a big mess. Either set your locales to non-UTF-8 + (e.g. ISO-8859-2) or don't use cstocs until this is resolved somehow. + diff --git a/wlx/wayland_qt_base/build/enca-1.19/INSTALL b/wlx/wayland_qt_base/build/enca-1.19/INSTALL new file mode 100644 index 0000000..2099840 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/INSTALL @@ -0,0 +1,370 @@ +Installation Instructions +************************* + +Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, +Inc. + + Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. This file is offered as-is, +without warranty of any kind. + +Basic Installation +================== + + Briefly, the shell command `./configure && make && make install' +should configure, build, and install this package. The following +more-detailed instructions are generic; see the `README' file for +instructions specific to this package. Some packages provide this +`INSTALL' file but do not implement all of the features documented +below. The lack of an optional feature in a given package is not +necessarily a bug. More recommendations for GNU packages can be found +in *note Makefile Conventions: (standards)Makefile Conventions. + + The `configure' shell script attempts to guess correct values for +various system-dependent variables used during compilation. It uses +those values to create a `Makefile' in each directory of the package. +It may also create one or more `.h' files containing system-dependent +definitions. Finally, it creates a shell script `config.status' that +you can run in the future to recreate the current configuration, and a +file `config.log' containing compiler output (useful mainly for +debugging `configure'). + + It can also use an optional file (typically called `config.cache' +and enabled with `--cache-file=config.cache' or simply `-C') that saves +the results of its tests to speed up reconfiguring. Caching is +disabled by default to prevent problems with accidental use of stale +cache files. + + If you need to do unusual things to compile the package, please try +to figure out how `configure' could check whether to do them, and mail +diffs or instructions to the address given in the `README' so they can +be considered for the next release. If you are using the cache, and at +some point `config.cache' contains results you don't want to keep, you +may remove or edit it. + + The file `configure.ac' (or `configure.in') is used to create +`configure' by a program called `autoconf'. You need `configure.ac' if +you want to change it or regenerate `configure' using a newer version +of `autoconf'. + + The simplest way to compile this package is: + + 1. `cd' to the directory containing the package's source code and type + `./configure' to configure the package for your system. + + Running `configure' might take a while. While running, it prints + some messages telling which features it is checking for. + + 2. Type `make' to compile the package. + + 3. Optionally, type `make check' to run any self-tests that come with + the package, generally using the just-built uninstalled binaries. + + 4. Type `make install' to install the programs and any data files and + documentation. When installing into a prefix owned by root, it is + recommended that the package be configured and built as a regular + user, and only the `make install' phase executed with root + privileges. + + 5. Optionally, type `make installcheck' to repeat any self-tests, but + this time using the binaries in their final installed location. + This target does not install anything. Running this target as a + regular user, particularly if the prior `make install' required + root privileges, verifies that the installation completed + correctly. + + 6. You can remove the program binaries and object files from the + source code directory by typing `make clean'. To also remove the + files that `configure' created (so you can compile the package for + a different kind of computer), type `make distclean'. There is + also a `make maintainer-clean' target, but that is intended mainly + for the package's developers. If you use it, you may have to get + all sorts of other programs in order to regenerate files that came + with the distribution. + + 7. Often, you can also type `make uninstall' to remove the installed + files again. In practice, not all packages have tested that + uninstallation works correctly, even though it is required by the + GNU Coding Standards. + + 8. Some packages, particularly those that use Automake, provide `make + distcheck', which can by used by developers to test that all other + targets like `make install' and `make uninstall' work correctly. + This target is generally not run by end users. + +Compilers and Options +===================== + + Some systems require unusual options for compilation or linking that +the `configure' script does not know about. Run `./configure --help' +for details on some of the pertinent environment variables. + + You can give `configure' initial values for configuration parameters +by setting variables in the command line or in the environment. Here +is an example: + + ./configure CC=c99 CFLAGS=-g LIBS=-lposix + + *Note Defining Variables::, for more details. + +Compiling For Multiple Architectures +==================================== + + You can compile the package for more than one kind of computer at the +same time, by placing the object files for each architecture in their +own directory. To do this, you can use GNU `make'. `cd' to the +directory where you want the object files and executables to go and run +the `configure' script. `configure' automatically checks for the +source code in the directory that `configure' is in and in `..'. This +is known as a "VPATH" build. + + With a non-GNU `make', it is safer to compile the package for one +architecture at a time in the source code directory. After you have +installed the package for one architecture, use `make distclean' before +reconfiguring for another architecture. + + On MacOS X 10.5 and later systems, you can create libraries and +executables that work on multiple system types--known as "fat" or +"universal" binaries--by specifying multiple `-arch' options to the +compiler but only a single `-arch' option to the preprocessor. Like +this: + + ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ + CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ + CPP="gcc -E" CXXCPP="g++ -E" + + This is not guaranteed to produce working output in all cases, you +may have to build one architecture at a time and combine the results +using the `lipo' tool if you have problems. + +Installation Names +================== + + By default, `make install' installs the package's commands under +`/usr/local/bin', include files under `/usr/local/include', etc. You +can specify an installation prefix other than `/usr/local' by giving +`configure' the option `--prefix=PREFIX', where PREFIX must be an +absolute file name. + + You can specify separate installation prefixes for +architecture-specific files and architecture-independent files. If you +pass the option `--exec-prefix=PREFIX' to `configure', the package uses +PREFIX as the prefix for installing programs and libraries. +Documentation and other data files still use the regular prefix. + + In addition, if you use an unusual directory layout you can give +options like `--bindir=DIR' to specify different values for particular +kinds of files. Run `configure --help' for a list of the directories +you can set and what kinds of files go in them. In general, the +default for these options is expressed in terms of `${prefix}', so that +specifying just `--prefix' will affect all of the other directory +specifications that were not explicitly provided. + + The most portable way to affect installation locations is to pass the +correct locations to `configure'; however, many packages provide one or +both of the following shortcuts of passing variable assignments to the +`make install' command line to change installation locations without +having to reconfigure or recompile. + + The first method involves providing an override variable for each +affected directory. For example, `make install +prefix=/alternate/directory' will choose an alternate location for all +directory configuration variables that were expressed in terms of +`${prefix}'. Any directories that were specified during `configure', +but not in terms of `${prefix}', must each be overridden at install +time for the entire installation to be relocated. The approach of +makefile variable overrides for each directory variable is required by +the GNU Coding Standards, and ideally causes no recompilation. +However, some platforms have known limitations with the semantics of +shared libraries that end up requiring recompilation when using this +method, particularly noticeable in packages that use GNU Libtool. + + The second method involves providing the `DESTDIR' variable. For +example, `make install DESTDIR=/alternate/directory' will prepend +`/alternate/directory' before all installation names. The approach of +`DESTDIR' overrides is not required by the GNU Coding Standards, and +does not work on platforms that have drive letters. On the other hand, +it does better at avoiding recompilation issues, and works well even +when some directory options were not specified in terms of `${prefix}' +at `configure' time. + +Optional Features +================= + + If the package supports it, you can cause programs to be installed +with an extra prefix or suffix on their names by giving `configure' the +option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. + + Some packages pay attention to `--enable-FEATURE' options to +`configure', where FEATURE indicates an optional part of the package. +They may also pay attention to `--with-PACKAGE' options, where PACKAGE +is something like `gnu-as' or `x' (for the X Window System). The +`README' should mention any `--enable-' and `--with-' options that the +package recognizes. + + For packages that use the X Window System, `configure' can usually +find the X include and library files automatically, but if it doesn't, +you can use the `configure' options `--x-includes=DIR' and +`--x-libraries=DIR' to specify their locations. + + Some packages offer the ability to configure how verbose the +execution of `make' will be. For these packages, running `./configure +--enable-silent-rules' sets the default to minimal output, which can be +overridden with `make V=1'; while running `./configure +--disable-silent-rules' sets the default to verbose, which can be +overridden with `make V=0'. + +Particular systems +================== + + On HP-UX, the default C compiler is not ANSI C compatible. If GNU +CC is not installed, it is recommended to use the following options in +order to use an ANSI C compiler: + + ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" + +and if that doesn't work, install pre-built binaries of GCC for HP-UX. + + HP-UX `make' updates targets which have the same time stamps as +their prerequisites, which makes it generally unusable when shipped +generated files such as `configure' are involved. Use GNU `make' +instead. + + On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot +parse its `<wchar.h>' header file. The option `-nodtk' can be used as +a workaround. If GNU CC is not installed, it is therefore recommended +to try + + ./configure CC="cc" + +and if that doesn't work, try + + ./configure CC="cc -nodtk" + + On Solaris, don't put `/usr/ucb' early in your `PATH'. This +directory contains several dysfunctional programs; working variants of +these programs are available in `/usr/bin'. So, if you need `/usr/ucb' +in your `PATH', put it _after_ `/usr/bin'. + + On Haiku, software installed for all users goes in `/boot/common', +not `/usr/local'. It is recommended to use the following options: + + ./configure --prefix=/boot/common + +Specifying the System Type +========================== + + There may be some features `configure' cannot figure out +automatically, but needs to determine by the type of machine the package +will run on. Usually, assuming the package is built to be run on the +_same_ architectures, `configure' can figure that out, but if it prints +a message saying it cannot guess the machine type, give it the +`--build=TYPE' option. TYPE can either be a short name for the system +type, such as `sun4', or a canonical name which has the form: + + CPU-COMPANY-SYSTEM + +where SYSTEM can have one of these forms: + + OS + KERNEL-OS + + See the file `config.sub' for the possible values of each field. If +`config.sub' isn't included in this package, then this package doesn't +need to know the machine type. + + If you are _building_ compiler tools for cross-compiling, you should +use the option `--target=TYPE' to select the type of system they will +produce code for. + + If you want to _use_ a cross compiler, that generates code for a +platform different from the build platform, you should specify the +"host" platform (i.e., that on which the generated programs will +eventually be run) with `--host=TYPE'. + +Sharing Defaults +================ + + If you want to set default values for `configure' scripts to share, +you can create a site shell script called `config.site' that gives +default values for variables like `CC', `cache_file', and `prefix'. +`configure' looks for `PREFIX/share/config.site' if it exists, then +`PREFIX/etc/config.site' if it exists. Or, you can set the +`CONFIG_SITE' environment variable to the location of the site script. +A warning: not all `configure' scripts look for a site script. + +Defining Variables +================== + + Variables not defined in a site shell script can be set in the +environment passed to `configure'. However, some packages may run +configure again during the build, and the customized values of these +variables may be lost. In order to avoid this problem, you should set +them in the `configure' command line, using `VAR=value'. For example: + + ./configure CC=/usr/local2/bin/gcc + +causes the specified `gcc' to be used as the C compiler (unless it is +overridden in the site shell script). + +Unfortunately, this technique does not work for `CONFIG_SHELL' due to +an Autoconf limitation. Until the limitation is lifted, you can use +this workaround: + + CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash + +`configure' Invocation +====================== + + `configure' recognizes the following options to control how it +operates. + +`--help' +`-h' + Print a summary of all of the options to `configure', and exit. + +`--help=short' +`--help=recursive' + Print a summary of the options unique to this package's + `configure', and exit. The `short' variant lists options used + only in the top level, while the `recursive' variant lists options + also present in any nested packages. + +`--version' +`-V' + Print the version of Autoconf used to generate the `configure' + script, and exit. + +`--cache-file=FILE' + Enable the cache: use and save the results of the tests in FILE, + traditionally `config.cache'. FILE defaults to `/dev/null' to + disable caching. + +`--config-cache' +`-C' + Alias for `--cache-file=config.cache'. + +`--quiet' +`--silent' +`-q' + Do not print messages saying which checks are being made. To + suppress all normal output, redirect it to `/dev/null' (any error + messages will still be shown). + +`--srcdir=DIR' + Look for the package's source code in directory DIR. Usually + `configure' can determine that directory automatically. + +`--prefix=DIR' + Use DIR as the installation prefix. *note Installation Names:: + for more details, including other options available for fine-tuning + the installation locations. + +`--no-create' +`-n' + Run the configure checks, but stop before creating any output + files. + +`configure' also accepts some other, not widely useful, options. Run +`configure --help' for more details. diff --git a/wlx/wayland_qt_base/build/enca-1.19/Makefile b/wlx/wayland_qt_base/build/enca-1.19/Makefile new file mode 100644 index 0000000..5291593 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/Makefile @@ -0,0 +1,1031 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + + +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/enca +pkgincludedir = $(includedir)/enca +pkglibdir = $(libdir)/enca +pkglibexecdir = $(libexecdir)/enca +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-pc-linux-gnu +host_triplet = x86_64-pc-linux-gnu +subdir = . +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ + $(am__configure_deps) $(am__DIST_COMMON) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = config.h +CONFIG_CLEAN_FILES = enca.spec enca.pc +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +man1dir = $(mandir)/man1 +am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(pkgconfigdir)" +NROFF = nroff +MANS = $(man_MANS) +DATA = $(pkgconfig_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + cscope distdir dist dist-all distcheck +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ + $(LISP)config.h.in +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +CSCOPE = cscope +DIST_SUBDIRS = tools script lib src devel-docs test data +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \ + $(srcdir)/enca.pc.in $(srcdir)/enca.spec.in AUTHORS COPYING \ + ChangeLog INSTALL NEWS README THANKS TODO compile config.guess \ + config.rpath config.sub depcomp install-sh ltmain.sh missing \ + mkinstalldirs +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + if test -d "$(distdir)"; then \ + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -rf "$(distdir)" \ + || { sleep 5 && rm -rf "$(distdir)"; }; \ + else :; fi +am__post_remove_distdir = $(am__remove_distdir) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz +GZIP_ENV = --best +DIST_TARGETS = dist-xz dist-gzip +distuninstallcheck_listfiles = find . -type f -print +am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ + | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' +distcleancheck_listfiles = find . -type f -print +ACLOCAL = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing aclocal-1.15 -I m4 +AMTAR = $${TAR-tar} +AM_DEFAULT_VERBOSITY = 1 +AR = ar +AUTOCONF = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoconf +AUTOHEADER = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoheader +AUTOMAKE = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing automake-1.15 +AWK = gawk +CC = /usr/bin/cc +CCDEPMODE = depmode=gcc3 +CFLAGS = -Wall -Wextra -W -pedantic -g -O2 +CONVERTER_LIBS = +CPP = /usr/bin/cc -E +CPPFLAGS = +CSTOCS_PROG = +CYGPATH_W = echo +DEFAULT_CONVERTER_LIST = built-in,iconv +DEFAULT_EXTERNAL_CONVERTER = recode +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +FGREP = /usr/bin/grep -F +GCOV = /usr/bin/gcov +GCOV_CPPFLAGS = +GCOV_FLAGS = +GCOV_LDFLAGS = +GREP = /usr/bin/grep +GTKDOC = false +HTML_DIR = ${datarootdir}/gtk-doc/html +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBICONV = +LIBM = -lm +LIBOBJS = +LIBS = -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LN_S = ln -s +LTLIBICONV = +LTLIBOBJS = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing makeinfo +MANIFEST_TOOL = : +MAP_PROG = +MKDIR_P = /usr/bin/mkdir -p +MKTEMP_PROG = /usr/bin/mktemp +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = enca +PACKAGE_BUGREPORT = https://github.com/nijel/enca/issues +PACKAGE_NAME = Enca +PACKAGE_STRING = Enca 1.19 +PACKAGE_TARNAME = enca +PACKAGE_URL = +PACKAGE_VERSION = 1.19 +PATH_SEPARATOR = : +PICONV_PROG = /usr/bin/core_perl/piconv +RANLIB = ranlib +RECODE_PROG = /usr/bin/recode +RELEASE = 1 +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SHELL_RANDOM_FILENAME = `/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` +STRIP = strip +UMAP_PROG = +VERSION = 1.19 +abs_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +abs_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +abs_top_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +abs_top_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +ac_ct_AR = ar +ac_ct_CC = /usr/bin/cc +ac_ct_DUMPBIN = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-pc-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = pc +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} +dvidir = ${docdir} +exec_prefix = ${prefix} +host = x86_64-pc-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = pc +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /usr/local +program_transform_name = s,x,x, +psdir = ${docdir} +runstatedir = ${localstatedir}/run +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = . +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = +top_builddir = . +top_srcdir = . +SUBDIRS = tools script lib src devel-docs test +#SUBDIRS = tools data script lib src devel-docs test +man_MANS = man/enca.1 +DISTCHECK_CONFIGURE_FLAGS = --enable-maintainer-mode +ACLOCAL_AMFLAGS = -I m4 +M4TESTS = \ + m4/crash-me \ + m4/gtk-doc.m4 \ + m4/libiconv.m4 \ + m4/libm.m4 \ + m4/librecode.m4 \ + m4/localias.m4 \ + m4/long-text.l2 \ + m4/recode-bugs.m4 \ + m4/tools.m4 \ + m4/typevar.m4 + +EXTRA_DIST = \ + FAQ \ + DEVELOP.md \ + README.md \ + TODO \ + ChangeLog.prelib \ + autogen.sh \ + config.rpath \ + enca.pc.in \ + enca.spec \ + enca.spec.in \ + iconvcap.c \ + topline.sh \ + man/enca.1 \ + $(M4TESTS) + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = enca.pc +all: config.h + $(MAKE) $(AM_MAKEFLAGS) all-recursive + +.SUFFIXES: +am--refresh: Makefile + @: +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --gnits'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --gnits \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck + +$(top_srcdir)/configure: # $(am__configure_deps) + $(am__cd) $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +$(am__aclocal_m4_deps): + +config.h: stamp-h1 + @test -f $@ || rm -f stamp-h1 + @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 + +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status + @rm -f stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status config.h +$(srcdir)/config.h.in: # $(am__configure_deps) + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) + rm -f stamp-h1 + touch $@ + +distclean-hdr: + -rm -f config.h stamp-h1 +enca.spec: $(top_builddir)/config.status $(srcdir)/enca.spec.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +enca.pc: $(top_builddir)/config.status $(srcdir)/enca.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool config.lt +install-man1: $(man_MANS) + @$(NORMAL_INSTALL) + @list1=''; \ + list2='$(man_MANS)'; \ + test -n "$(man1dir)" \ + && test -n "`echo $$list1$$list2`" \ + || exit 0; \ + echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ + { for i in $$list1; do echo "$$i"; done; \ + if test -n "$$list2"; then \ + for i in $$list2; do echo "$$i"; done \ + | sed -n '/\.1[a-z]*$$/p'; \ + fi; \ + } | while read p; do \ + if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; echo "$$p"; \ + done | \ + sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ + -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ + sed 'N;N;s,\n, ,g' | { \ + list=; while read file base inst; do \ + if test "$$base" = "$$inst"; then list="$$list $$file"; else \ + echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ + $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ + fi; \ + done; \ + for i in $$list; do echo "$$i"; done | $(am__base_list) | \ + while read files; do \ + test -z "$$files" || { \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ + done; } + +uninstall-man1: + @$(NORMAL_UNINSTALL) + @list=''; test -n "$(man1dir)" || exit 0; \ + files=`{ for i in $$list; do echo "$$i"; done; \ + l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ + sed -n '/\.1[a-z]*$$/p'; \ + } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ + -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ + dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) +install-pkgconfigDATA: $(pkgconfig_DATA) + @$(NORMAL_INSTALL) + @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ + done + +uninstall-pkgconfigDATA: + @$(NORMAL_UNINSTALL) + @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscope: cscope.files + test ! -s cscope.files \ + || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) +clean-cscope: + -rm -f cscope.files +cscope.files: clean-cscope cscopelist +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + -rm -f cscope.out cscope.in.out cscope.po.out cscope.files + +distdir: $(DISTFILES) + @case `sed 15q $(srcdir)/NEWS` in \ + *"$(VERSION)"*) : ;; \ + *) \ + echo "NEWS not updated; not releasing" 1>&2; \ + exit 1;; \ + esac + $(am__remove_distdir) + test -d "$(distdir)" || mkdir "$(distdir)" + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" distdir="$(distdir)" \ + dist-hook + -test -n "$(am__skip_mode_fix)" \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r "$(distdir)" +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__post_remove_distdir) + +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + $(am__post_remove_distdir) + +dist-lzip: distdir + tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz + $(am__post_remove_distdir) +dist-xz: distdir + tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz + $(am__post_remove_distdir) + +dist-tarZ: distdir + @echo WARNING: "Support for distribution archives compressed with" \ + "legacy program 'compress' is deprecated." >&2 + @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__post_remove_distdir) + +dist-shar: distdir + @echo WARNING: "Support for shar distribution archives is" \ + "deprecated." >&2 + @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__post_remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__post_remove_distdir) + +dist dist-all: + $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' + $(am__post_remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lz*) \ + lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ + *.tar.xz*) \ + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir) + chmod u+w $(distdir) + mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst + chmod a-w $(distdir) + test -d $(distdir)/_build || exit 0; \ + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && am__cwd=`pwd` \ + && $(am__cd) $(distdir)/_build/sub \ + && ../../configure \ + $(AM_DISTCHECK_CONFIGURE_FLAGS) \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + --srcdir=../.. --prefix="$$dc_install_base" \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ + && cd "$$am__cwd" \ + || exit 1 + $(am__post_remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @test -n '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: trying to run $@ with an empty' \ + '$$(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + $(am__cd) '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am +check: check-recursive +all-am: Makefile $(MANS) $(DATA) config.h +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(pkgconfigdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool clean-local mostlyclean-am + +distclean: distclean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-hdr \ + distclean-libtool distclean-local distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-man install-pkgconfigDATA + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-data-hook +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: install-man1 + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-man uninstall-pkgconfigDATA + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) uninstall-hook +uninstall-man: uninstall-man1 + +.MAKE: $(am__recursive_targets) all install-am install-data-am \ + install-strip uninstall-am + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ + am--refresh check check-am clean clean-cscope clean-generic \ + clean-libtool clean-local cscope cscopelist-am ctags ctags-am \ + dist dist-all dist-bzip2 dist-gzip dist-hook dist-lzip \ + dist-shar dist-tarZ dist-xz dist-zip distcheck distclean \ + distclean-generic distclean-hdr distclean-libtool \ + distclean-local distclean-tags distcleancheck distdir \ + distuninstallcheck dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-hook install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-man1 install-pdf \ + install-pdf-am install-pkgconfigDATA install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ + ps ps-am tags tags-am uninstall uninstall-am uninstall-hook \ + uninstall-man uninstall-man1 uninstall-pkgconfigDATA + +.PRECIOUS: Makefile + + +####################### maintainer's targets ###################### +# alias test=check +test: check + +docs: + cd $(srcdir)/devel-docs && $(MAKE) docs + +.PHONY: test docs + +$(pkgconfig_DATA): config.status + +install-data-hook: + cd $(DESTDIR)$(man1dir); \ + inst1=`echo enca | sed '$(transform)'`.1; \ + inst2=`echo enconv | sed '$(transform)'`.1; \ + $(LN_S) -f $$inst1 $$inst2 + +uninstall-hook: + inst=`echo enconv | sed '$(transform)'`.1; \ + rm -f $(DESTDIR)$(man1dir)/$$inst + +clean-local: + rm -f iconvcap iconvcap.o *~ core.* + +distclean-local: + rm -f iconvenc.h + +#dist-check-maintainer: +dist-check-maintainer: + @echo "*** maintainer mode must be enabled in order to make dist" + @false + +dist-hook: dist-check-maintainer + cat $(distdir)/tools/iconvenc.null >$(distdir)/iconvenc.h + +# To be run [by hand] before release (not the same as before making dists). +#update: +# ./topline.sh + +.PHONY: update + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/Makefile.am b/wlx/wayland_qt_base/build/enca-1.19/Makefile.am new file mode 100644 index 0000000..f4a70fe --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/Makefile.am @@ -0,0 +1,88 @@ +if MAINTAINER_MODE +SUBDIRS = tools data script lib src devel-docs test +else +SUBDIRS = tools script lib src devel-docs test +endif +man_MANS = man/enca.1 + +DISTCHECK_CONFIGURE_FLAGS = --enable-maintainer-mode + +ACLOCAL_AMFLAGS = -I m4 + +M4TESTS = \ + m4/crash-me \ + m4/gtk-doc.m4 \ + m4/libiconv.m4 \ + m4/libm.m4 \ + m4/librecode.m4 \ + m4/localias.m4 \ + m4/long-text.l2 \ + m4/recode-bugs.m4 \ + m4/tools.m4 \ + m4/typevar.m4 + +EXTRA_DIST = \ + FAQ \ + DEVELOP.md \ + README.md \ + TODO \ + ChangeLog.prelib \ + autogen.sh \ + config.rpath \ + enca.pc.in \ + enca.spec \ + enca.spec.in \ + iconvcap.c \ + topline.sh \ + man/enca.1 \ + $(M4TESTS) + +####################### maintainer's targets ###################### +# alias test=check +test: check + +docs: + cd $(srcdir)/devel-docs && $(MAKE) docs + +.PHONY: test docs + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = enca.pc + +$(pkgconfig_DATA): config.status + +install-data-hook: + cd $(DESTDIR)$(man1dir); \ + inst1=`echo enca | sed '$(transform)'`.1; \ + inst2=`echo enconv | sed '$(transform)'`.1; \ + $(LN_S) -f $$inst1 $$inst2 + +uninstall-hook: + inst=`echo enconv | sed '$(transform)'`.1; \ + rm -f $(DESTDIR)$(man1dir)/$$inst + +clean-local: + rm -f iconvcap iconvcap.o *~ core.* + +distclean-local: + rm -f iconvenc.h + +if MAINTAINER_MODE +dist-check-maintainer: +else +dist-check-maintainer: + @echo "*** maintainer mode must be enabled in order to make dist" + @false +endif + +dist-hook: dist-check-maintainer + cat $(distdir)/tools/iconvenc.null >$(distdir)/iconvenc.h + +if MAINTAINER_MODE +# To be run [by hand] before release (not the same as before making dists). +update: + ./topline.sh + +endif +.PHONY: update + diff --git a/wlx/wayland_qt_base/build/enca-1.19/Makefile.in b/wlx/wayland_qt_base/build/enca-1.19/Makefile.in new file mode 100644 index 0000000..92c4b77 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/Makefile.in @@ -0,0 +1,1031 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = . +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ + $(am__configure_deps) $(am__DIST_COMMON) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = config.h +CONFIG_CLEAN_FILES = enca.spec enca.pc +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +man1dir = $(mandir)/man1 +am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(pkgconfigdir)" +NROFF = nroff +MANS = $(man_MANS) +DATA = $(pkgconfig_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + cscope distdir dist dist-all distcheck +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ + $(LISP)config.h.in +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +CSCOPE = cscope +DIST_SUBDIRS = tools script lib src devel-docs test data +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \ + $(srcdir)/enca.pc.in $(srcdir)/enca.spec.in AUTHORS COPYING \ + ChangeLog INSTALL NEWS README THANKS TODO compile config.guess \ + config.rpath config.sub depcomp install-sh ltmain.sh missing \ + mkinstalldirs +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + if test -d "$(distdir)"; then \ + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -rf "$(distdir)" \ + || { sleep 5 && rm -rf "$(distdir)"; }; \ + else :; fi +am__post_remove_distdir = $(am__remove_distdir) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz +GZIP_ENV = --best +DIST_TARGETS = dist-xz dist-gzip +distuninstallcheck_listfiles = find . -type f -print +am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ + | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' +distcleancheck_listfiles = find . -type f -print +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERTER_LIBS = @CONVERTER_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CSTOCS_PROG = @CSTOCS_PROG@ +CYGPATH_W = @CYGPATH_W@ +DEFAULT_CONVERTER_LIST = @DEFAULT_CONVERTER_LIST@ +DEFAULT_EXTERNAL_CONVERTER = @DEFAULT_EXTERNAL_CONVERTER@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCOV = @GCOV@ +GCOV_CPPFLAGS = @GCOV_CPPFLAGS@ +GCOV_FLAGS = @GCOV_FLAGS@ +GCOV_LDFLAGS = @GCOV_LDFLAGS@ +GREP = @GREP@ +GTKDOC = @GTKDOC@ +HTML_DIR = @HTML_DIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBM = @LIBM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MAP_PROG = @MAP_PROG@ +MKDIR_P = @MKDIR_P@ +MKTEMP_PROG = @MKTEMP_PROG@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PICONV_PROG = @PICONV_PROG@ +RANLIB = @RANLIB@ +RECODE_PROG = @RECODE_PROG@ +RELEASE = @RELEASE@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SHELL_RANDOM_FILENAME = @SHELL_RANDOM_FILENAME@ +STRIP = @STRIP@ +UMAP_PROG = @UMAP_PROG@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +@MAINTAINER_MODE_FALSE@SUBDIRS = tools script lib src devel-docs test +@MAINTAINER_MODE_TRUE@SUBDIRS = tools data script lib src devel-docs test +man_MANS = man/enca.1 +DISTCHECK_CONFIGURE_FLAGS = --enable-maintainer-mode +ACLOCAL_AMFLAGS = -I m4 +M4TESTS = \ + m4/crash-me \ + m4/gtk-doc.m4 \ + m4/libiconv.m4 \ + m4/libm.m4 \ + m4/librecode.m4 \ + m4/localias.m4 \ + m4/long-text.l2 \ + m4/recode-bugs.m4 \ + m4/tools.m4 \ + m4/typevar.m4 + +EXTRA_DIST = \ + FAQ \ + DEVELOP.md \ + README.md \ + TODO \ + ChangeLog.prelib \ + autogen.sh \ + config.rpath \ + enca.pc.in \ + enca.spec \ + enca.spec.in \ + iconvcap.c \ + topline.sh \ + man/enca.1 \ + $(M4TESTS) + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = enca.pc +all: config.h + $(MAKE) $(AM_MAKEFLAGS) all-recursive + +.SUFFIXES: +am--refresh: Makefile + @: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --gnits'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --gnits \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + $(am__cd) $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +$(am__aclocal_m4_deps): + +config.h: stamp-h1 + @test -f $@ || rm -f stamp-h1 + @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 + +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status + @rm -f stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status config.h +$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) + rm -f stamp-h1 + touch $@ + +distclean-hdr: + -rm -f config.h stamp-h1 +enca.spec: $(top_builddir)/config.status $(srcdir)/enca.spec.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +enca.pc: $(top_builddir)/config.status $(srcdir)/enca.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool config.lt +install-man1: $(man_MANS) + @$(NORMAL_INSTALL) + @list1=''; \ + list2='$(man_MANS)'; \ + test -n "$(man1dir)" \ + && test -n "`echo $$list1$$list2`" \ + || exit 0; \ + echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ + { for i in $$list1; do echo "$$i"; done; \ + if test -n "$$list2"; then \ + for i in $$list2; do echo "$$i"; done \ + | sed -n '/\.1[a-z]*$$/p'; \ + fi; \ + } | while read p; do \ + if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; echo "$$p"; \ + done | \ + sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ + -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ + sed 'N;N;s,\n, ,g' | { \ + list=; while read file base inst; do \ + if test "$$base" = "$$inst"; then list="$$list $$file"; else \ + echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ + $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ + fi; \ + done; \ + for i in $$list; do echo "$$i"; done | $(am__base_list) | \ + while read files; do \ + test -z "$$files" || { \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ + done; } + +uninstall-man1: + @$(NORMAL_UNINSTALL) + @list=''; test -n "$(man1dir)" || exit 0; \ + files=`{ for i in $$list; do echo "$$i"; done; \ + l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ + sed -n '/\.1[a-z]*$$/p'; \ + } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ + -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ + dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) +install-pkgconfigDATA: $(pkgconfig_DATA) + @$(NORMAL_INSTALL) + @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ + done + +uninstall-pkgconfigDATA: + @$(NORMAL_UNINSTALL) + @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscope: cscope.files + test ! -s cscope.files \ + || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) +clean-cscope: + -rm -f cscope.files +cscope.files: clean-cscope cscopelist +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + -rm -f cscope.out cscope.in.out cscope.po.out cscope.files + +distdir: $(DISTFILES) + @case `sed 15q $(srcdir)/NEWS` in \ + *"$(VERSION)"*) : ;; \ + *) \ + echo "NEWS not updated; not releasing" 1>&2; \ + exit 1;; \ + esac + $(am__remove_distdir) + test -d "$(distdir)" || mkdir "$(distdir)" + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" distdir="$(distdir)" \ + dist-hook + -test -n "$(am__skip_mode_fix)" \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r "$(distdir)" +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__post_remove_distdir) + +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + $(am__post_remove_distdir) + +dist-lzip: distdir + tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz + $(am__post_remove_distdir) +dist-xz: distdir + tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz + $(am__post_remove_distdir) + +dist-tarZ: distdir + @echo WARNING: "Support for distribution archives compressed with" \ + "legacy program 'compress' is deprecated." >&2 + @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__post_remove_distdir) + +dist-shar: distdir + @echo WARNING: "Support for shar distribution archives is" \ + "deprecated." >&2 + @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__post_remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__post_remove_distdir) + +dist dist-all: + $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' + $(am__post_remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lz*) \ + lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ + *.tar.xz*) \ + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir) + chmod u+w $(distdir) + mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst + chmod a-w $(distdir) + test -d $(distdir)/_build || exit 0; \ + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && am__cwd=`pwd` \ + && $(am__cd) $(distdir)/_build/sub \ + && ../../configure \ + $(AM_DISTCHECK_CONFIGURE_FLAGS) \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + --srcdir=../.. --prefix="$$dc_install_base" \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ + && cd "$$am__cwd" \ + || exit 1 + $(am__post_remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @test -n '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: trying to run $@ with an empty' \ + '$$(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + $(am__cd) '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am +check: check-recursive +all-am: Makefile $(MANS) $(DATA) config.h +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(pkgconfigdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool clean-local mostlyclean-am + +distclean: distclean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-hdr \ + distclean-libtool distclean-local distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-man install-pkgconfigDATA + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-data-hook +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: install-man1 + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-man uninstall-pkgconfigDATA + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) uninstall-hook +uninstall-man: uninstall-man1 + +.MAKE: $(am__recursive_targets) all install-am install-data-am \ + install-strip uninstall-am + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ + am--refresh check check-am clean clean-cscope clean-generic \ + clean-libtool clean-local cscope cscopelist-am ctags ctags-am \ + dist dist-all dist-bzip2 dist-gzip dist-hook dist-lzip \ + dist-shar dist-tarZ dist-xz dist-zip distcheck distclean \ + distclean-generic distclean-hdr distclean-libtool \ + distclean-local distclean-tags distcleancheck distdir \ + distuninstallcheck dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-hook install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-man1 install-pdf \ + install-pdf-am install-pkgconfigDATA install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ + ps ps-am tags tags-am uninstall uninstall-am uninstall-hook \ + uninstall-man uninstall-man1 uninstall-pkgconfigDATA + +.PRECIOUS: Makefile + + +####################### maintainer's targets ###################### +# alias test=check +test: check + +docs: + cd $(srcdir)/devel-docs && $(MAKE) docs + +.PHONY: test docs + +$(pkgconfig_DATA): config.status + +install-data-hook: + cd $(DESTDIR)$(man1dir); \ + inst1=`echo enca | sed '$(transform)'`.1; \ + inst2=`echo enconv | sed '$(transform)'`.1; \ + $(LN_S) -f $$inst1 $$inst2 + +uninstall-hook: + inst=`echo enconv | sed '$(transform)'`.1; \ + rm -f $(DESTDIR)$(man1dir)/$$inst + +clean-local: + rm -f iconvcap iconvcap.o *~ core.* + +distclean-local: + rm -f iconvenc.h + +@MAINTAINER_MODE_TRUE@dist-check-maintainer: +@MAINTAINER_MODE_FALSE@dist-check-maintainer: +@MAINTAINER_MODE_FALSE@ @echo "*** maintainer mode must be enabled in order to make dist" +@MAINTAINER_MODE_FALSE@ @false + +dist-hook: dist-check-maintainer + cat $(distdir)/tools/iconvenc.null >$(distdir)/iconvenc.h + +# To be run [by hand] before release (not the same as before making dists). +@MAINTAINER_MODE_TRUE@update: +@MAINTAINER_MODE_TRUE@ ./topline.sh + +.PHONY: update + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/NEWS b/wlx/wayland_qt_base/build/enca-1.19/NEWS new file mode 100644 index 0000000..a17766a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/NEWS @@ -0,0 +1,406 @@ +#============================================================================ +# Enca v1.19 (2016-09-05) guess and convert encoding of text files +# Copyright (C) 2000-2003 David Necas (Yeti) <yeti@physics.muni.cz> +# Copyright (C) 2009-2016 Michal Cihar <michal@cihar.com> +#============================================================================ + +List of user-visible changes in Enca +More detailed log can be obtained from older changelogs or git log. + +Legend: + new feature + * change of behaviour (including disappearing of a feature) + - bugfix + +enca-1.19-dev + - fix possible memory leak + - make utf-8 detection work even on one character + +enca-1.18 2016-01-07 + - fix installation of devhelp documentation + +enca-1.17 2016-01-04 + - Fixed conversion of GB2312 encoding with iconv + - Fixed iconv conversion on OSX + - Documentation improvements + - Fixed execution of external converters with ACLs + - Improved test coverage to 80% + +enca-1.16 2014-10-20 + - Fixed typo in Belarusian language name + - Added aliases for Chinese and Yugoslavian languages + +enca-1.15 2013-09-30 + - Documentation improvement + - Development moved to GitHub + - Do not use deprecated autoconf macros + +enca-1.14 2012-09-11 + - Allow standard names for belarusian and slovenian languages, thanks + to Branislav Geržo for suggestion. + - Reset strictness when check buffer less than file size, thanks to + Sam Liao. + - Fixed typos in man page, thanks to A. Costa. + +enca-1.13 2010-02-09 + - Reverse usage of temp file while converting using recode to prevent + file truncation (bug #1135). + +enca-1.12 2009-10-29 + - Fixes some minor memory leaks. + - Fixes little problems in autoconf scripts. + +enca-1.11 2009-09-25 + - Dropped scanf configure test which is not used at all. + - Fixes some wrong format strings. + +enca-1.10 2009-08-25 + + Enca is back alive or at least in maintenance mode. + * Enca now lives in git repository, see <http://gitorious.org/enca>. + - Add missing charset koi8u to belarusian language. + - Fixed some typos in program and documentation. + +enca-1.9 2005-12-18 + + support for HZ encoding + * Big5 and GBK detection improved + - enca.spec no longer installs docs to world-unreadable directory + +enca-1.8 2005-11-24 + + Chinese (Big5 and GBK) support (thanks to Zuxy) + * deb/ subdirectory is gone as there is finally an Enca package in Debian + (thanks to Michal Cihar) + - manual page clean-up (thanks to Michal Cihar) + +enca-1.7 2005-02-27 + + new name type: preferred MIME name (option -m) + - broken iconv detection on some system was fixed + +enca-1.6 2004-09-01 + * English language names (--list=languages, enca_language_english_name()) + were changed to lowercase to match common locale aliases + - Win32, i.e. MinGW and Cygwin, build problems were fixed + +enca-1.5 2004-05-30 + - crash on impossible recovery after iconv failure in pipe was fixed + - rpm building problems on Mandrake Linux were fixed + +enca-1.4 2004-05-12 + - dependency of guessing API on locales (via ctype functions) was fixed + - --help text generation failure on some systems was fixed + +enca-1.3 2003-12-24 + + [libenca] it's possible to get analyser option values, not just set them + * a good BOM (byte order mark) increases the chance of being recognized for + UCS-4 and UTF-8 too + * external converter wrappers were moved from bin to libexec and the b- + prefix was removed (though it still works) + * external converters are no longer searched in PATH, nonstandard ones + has to be specified with full path + +enca-1.2 2003-11-26 + - fixed segfault in language detection for some locale setups + +enca-1.1 2003-11-17 + - fixed losing data at the end of file when using external converters in a + pipe (and maybe in other situations) + - [libenca] enca_analyser_free() not freeing analyser completely was fixed + +enca-1.0 2003-11-06 + * deprectated options -T, -R, -S, -u, -U, -m, and -M were finally removed + * default HTML API docs installation path changed to the new gtk-doc style + (DATADIR/gtk-doc/html/enca) + * debian/ subdir moved to deb/ to allow official deb creation w/o too much + hassle + +enca-0.99.4 2003-07-15 + - several race conditions in librecode and iconv interfaces were fixed + - temporary file names are much less predictable now + +enca-0.99.3 2003-06-30 + * Debian package is back from death + * failure to find external converter is now fatal + - fixed build problems on FreeBSD (and probably other Unices) + - libiconv is not used for `conversion to ASCII' since never does the + Right Thing, whatever it is + - when conversion with libiconv fails, the file should now survive intact + - fixed build problems on systems w/o libiconv (hopefully) + - fixed distclean and uninstall targets to really clean and uninstall + everything + - fixed builds with separate source (read-only) and build directories + - fixed builds with --without-libiconv and --without-librecode on GNU/Linux + - external converter is not checked when it's not going to be used + +enca-0.99.2 2003-06-25 + + EOL type is used to decide ambiguous cases, e.g. CP1250 is reported + instead of ISO-8859-2/CRLF + * --list languages by default prints English names, instead of ISO-639a + codes, use -e or -r to get the old listing + * if LC_CTYPE is something like en_US, more locale categories are examined + to detect the language + * cork charset was modified to contain \n, \r and \t in the same places as + ASCII + * some heuristics tuning + +enca-0.99.1 2003-06-22 + + libenca pkg-config support + * all libenca tuning parameters (-T, -R, -S, -u, -U, -m, and -M) were + marked deprecated and are noop, Enca should DWIM + * ambiguity is now always OK when the sample has the same meaning in all the + charsets + * deprecated `built-in-encodings' and `encodings' lists were removed + * PAGER feature was removed + - exchanged `latvian' and `lithuanian' language names were fixed (`lv' and + `lt' were always OK) + - missing tests for the new languages was added to the test suit + +enca-0.99.0 2003-06-14 + + added some support for: Bulgarian, Croatian, Estonian, Hungarian, Latvian, + Lithuanian, Slovene + + a new algorithm for 8bit-dense languages (cyrillics), the old one is used + as a fallback + * removed support for non-transitive iconv (such a thing should not exist) + * auxiliary tools in data are not longer built in regular builds, + use --enable-maintainer-mode to rebuild them, create dists, etc. + - fixed iconv interface surface check pickier than iconv itself inhibiting + some otherwise possible conversions + - fixed u+x permissions on temporary files (from 0.10.7) + - fixed not deleting temporary files in iconv interface + - fixed broken iconv interface behaviour in pipes + - fixed iconvcap misdetecting Latin5 as ISO-8859-5 + - fixed casual `make distclean' failures + +enca-0.10.7 2003-01-28 + - fixed interchanged iconv and cstocs encoding names + - corrected(?) librecode surface interaction + - fixed a temporary file creation race condition + * added tex and utf8 to cstocs (names and b-cstocs) + +enca-0.10.6 2002-10-22 + + enconv uses DEFAULT_CHARSET variable, exactly as recode + - ENCAOPT works everywhere, albeit imperfectly + - options -P and -p no longer imply -M too + - ambiguous mode (-M) works again + - pager is run so that help text doesn't disappear + - standard input it printed as STDIN with -d, not as null + - make check works again + - it compiles wihtout recode again + +enca-0.10.5 2002-10-13 + + UTF-8 recognition in binary and otherwise messy files + + detection of double-encoding from some 8bit charset to UTF-8 + + Cork encoding conversion + * librecode interaction was (hopefully) improved + - fixed some build-time problems + +enca-0.10.4 2002-10-10 + + added Cork encoding support for Czech, Slovak and Polish + - empty files are now considered convertible to any encoding + - removed the so-called faster (in fact slower) I/O + - fixed some more compile-time search path issues + +enca-0.10.3 2002-09-22 + * added support for perl umap as external converter + - fixed external converter wrappers to work with standard sh + - fixed some compile-time library search path issues + +enca-0.10.2 2002-09-15 + + target charset is automatically obtained from locales when called as + enconv, new options --guess, --auto-convert + + English language names can be used instead of ISO-639 codes everywhere + - cs_SK and ru_UA locales are properly recognised as Slovak and Ukrainian + +enca-0.10.1 2002-08-29 + + faster I/O + * external converters can be disabled at build time + - `-' is accepted for standard input + - fixed broken built-in converter + - fixed crasing on an unknown language + - trivial (identity) conversions are not performed any more + - help is now printed when input is a terminal and no argument specified + - changed braindamaged <STDIN>, <STDOUT> to STDIN, STDOUT in messages + - various small fixes and build-time improvements + +enca-0.10.0 2002-08-26 + + added support for Ukraininan (CP1251, IBM855, ISO-8859-5, KOI8-U, maccyr + CP1125), Belarusian (CP1251, IBM866, ISO-8859-5, KOI8-UNI, maccyr, + IBM855) and Polish (ISO-8859-2, ISO-8859-12, ISO-8859-16, Baltic, macce, + IBM852, CP1250) + + Enca library introduced + * dropped native Debian package + * --details no longer prints guessing details (now is mostly like --human) + * --list=encodings, --list=built-in-encodings corrected to --list=charsets, + --list-built-in charsets (old names supported with a warning) + * improved Czech and Slovak charsets detection + +enca-0.9.4: 2002-03-03 + - built-in converter didn't convert more than first 64kB of a file + +enca-0.9.3: 2001-07-16 + + a native Debian package + - fixed random reporting of nonsense results + - fixed self-contradictory --details output when file was quoted-printable + encoded + - fixed poor performance on non-GNU/Linux + - made pager less intrusive (instead of intrusive `less' ;-) + - --list=encodings prints only `known' encodings + - fixed several compile-time/portability problems + +enca-0.9.2: 2001-07-13 + * --help and --license are displayed through pager (when possible) + - fixed broken language hooks--they were never activated (from 0.9.1) + - fixed reporting ASCII when a 7bit encoding was detected + - fixed boundary-case behaviour when recovering from librecode failures + +enca-0.9.1: 2001-06-25 + + support for Macintosh Cyrillic, including conversion + + support for unusual UCS-4 byte orders (3412 and 2143) + + new option --license printing full enca license + * exit codes now make sense (0, 1, 2; where 2 means serious troubles) + - temporary files are no longer world-readable + +enca-0.9.0: 2001-03-26 + Serious incompatibilities: + * -E and -C option letters exchanged (much better mnemonics) + * converter wrappers renamed to b-cstocs and b-recode + * finding only 7bit ASCII is no longer considered failure + * need to use --language to set language (sometimes) + * dull converter behaviour no longer supported, -x syntax changed + * option -g removed (try --name=aliases) + * option -c changed to --list=converters, listing format changed + * option -l changed to --list=encodings, listing format changed + * converter names are no longer case insensitive + * no longer uses cstocs names as canonical + * external converters are called with Enca's names, not cstocs's + + Other changes: + + support for slovak and russian (and `none') language + + support for CP1251, IBM866, ISO-8859-5 and KOI8-R, including conversion + + UCS-2, UCS-4, UTF-8, UTF-7 and LaTeX encoding recognition + + much more encoding aliases accepted + + long `GNU style' command line options + + new output types: --enca-name, --iconv-name + + output type --name=WORD allowing to select output type by name + + ENCAOPT environment variable + + language detection from locales + + support for surfaces (experimental) + + new option --list printing various listings + + new converter wrapper b-map (for perl `map') + + new option -m to reset -M back + + new language filters + + new options -u and -U to control multibyte encoding checks + + included [generated] enca.spec into the tarball to allow `rpm -tb' + * -d output improved + * read limit changed to 16MB + * librecode now run with flags diacritics_only and ascii_graphics + - fixed broken -P options + - fixed several build problems on non-GNU/Linux systems + - fixed some missing and wrong characters in Unicode data + - temporary copy of damaged original file is not deleted when rescue fails + +enca-0.8.x: Since features planned for 0.8 and 0.9 happened to be developed + simultaneously, this version number has been skipped. + +enca-0.7.7: 2001-01-01 + + ability to use UNIX98 iconv conversion functions + + the word `none' can be used as -E parameter causing clearing of converter + list + - fixed disarranged help text, misspelled word `European' in macce long + name, obsolete statements in manual page and other stuff of this kind + +enca-0.7.6: 2000-11-20 + + any converter combination/order can be now specified with -E, old -E + meaning is no longer valid + + new option -c (list all valid converter names) + * cork encoding not supported anymore + * better verbosity + * `/' is added to recode recoding requests thus partially solving the + surface problem---surface never changes + * some errors like specifying invalid value of threshold are no longer fatal, + the bad values are ignored instead + * handling of some exotic characters in bulit-in converter slightly changed + - fixed several fatal bugs regarding stdin to stdout conversion + - stdin is copied to stdout in case of failure whenever possible/applicable + +enca-0.7.5: 2000-10-25 + * license changed to GNU GPL Version 2 (i.e. license version is explicitly + specified) + * prints error message when conversion is impossible + * binary data filter improved/changed + - fails back to external converter when GNU recode library cannot convert + due to errorneous request + - '' no longer causes enca to read from stdin + - tries to restore files damaged by GNU recode library + +enca-0.7.4: 2000-10-12 + + box-drawing characters are (carefully) filtered out when guessing + - fixed intermixed behaviour in SMS/nonSMS modes + +enca-0.7.3: 2000-10-09 + + blocks of probably binary data are filtered out when guessing + * standard input is copied to standard output when its encoding is unknown + - fixed reading only 4096 bytes from pipe (from 0.7.1) + +enca-0.7.2: has been never released + + GNU recode recoding chains made possible by starting -x (convert) parameter + with `..' + + second best guess is marked with `-' in -d (print details) output + +enca-0.7.1: 2000-10-02 + * in case of nonfatal i/o failure enca continues processing remaining files + +enca-0.7.0: 2000-09-26 + + standard input to standard output conversion + + short message mode -M + + ability to use GNU recode library + + new output type -r (encoding name after RFC1345) + + ability to convert cork internally + + new external converter brecode (recode wrapper) + + new output type -g (list of aliases) + + new option -V (verbose) + * -x (convert) paramteres syntax changed to in_enc..out_enc (old syntax still + supported, will be removed in 0.8.x) + * option -e (disable external) no longer supported, empty string as -C + (external converter) parameter can be used instead + * encoding names specified as -x (convert) parameters are case insensitive + * ascii is not considered unknown encoding (i.e. failure) so enca returns 0 + * -d (print details) output improved/changed/updated + * -p (prefix result with file name) no longer prints conversion details + * by default result is prefixed by file name when enca is run on more than + one file + +enca-0.6.2: 2000-08-17 + + help texts (-h and -v) made usable (thanx to Halef) + +enca-0.6.1: 2000-08-15 + - tarball bugfix + +enca-0.6.0: 2000-07-20 + + bulilt-in converter + + -x (convert) can now take form -x in_enc,out_enc causing enca to behave + like a dull converter + + new options -e and -E (disable internal/external converter) + + new option -l (print internally-convertible encodings) + +enca-0.5.0: 2000-07-17 + * -p (prefix result with file name) causes enca to print what is converted + and how + * iso8859-2/cp1250 recognition improved + - doesn't spawn external converters as fast as is possbile, but waits for + them to return + - fixed `Unrecognized encoding' when winner is 1250 (from 0.4.3) + - corrected -d (print details) table alignment + +enca-0.4.3: 2000-07-14 + * -d (print details) prints encodings alphabetically sorted + - corrected short encoding name t1 -> cork + - division-by-zero bugfixes + +enca-0.4.2: has been never released + * options -m/-M ([don't] use iso8892-2/cp1250 hack) no longer supported + - fixed showing standard input as empty string (<STDIN> is printed now) + +enca-0.4.1: 2000-07-12 + * default of 60 significant characters changed to 10 + +enca-0.4.0: 2000-07-10 + + first public release + diff --git a/wlx/wayland_qt_base/build/enca-1.19/README b/wlx/wayland_qt_base/build/enca-1.19/README new file mode 100644 index 0000000..0bdbc8b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/README @@ -0,0 +1,106 @@ +# Enca - guess and convert encoding of text files + +[![build status](https://secure.travis-ci.org/nijel/enca.png)](https://travis-ci.org/nijel/enca) +[![codecov.io](https://codecov.io/github/nijel/enca/coverage.svg?branch=master)](https://codecov.io/github/nijel/enca?branch=master) +[![Coverity Scan Build Status](https://scan.coverity.com/projects/3292/badge.svg)](https://scan.coverity.com/projects/nijel-enca) +[![Coverage Status](https://coveralls.io/repos/nijel/enca/badge.png?branch=master)](https://coveralls.io/r/nijel/enca?branch=master) + +## Copyright + +Copyright (C) 2000-2003 David Necas (Yeti) <yeti@physics.muni.cz> + +Copyright (C) 2009-2016 Michal Cihar <michal@cihar.com> + +## Description + +Enca (Extremely Naive Charset Analyser) consists of two main components: + + * libenca, an encoding detection library. It currently supports + Belarusian, Bulgarian, Croatian, Czech, Estonian, Hungarian, Latvian, + Lithuanian, Polish, Russian, Slovak, Slovene, Ukrainian, Chinese, and + some multibyte encodings independently on language. The API should be + relatively stable (to be read as `it will either change only + marginally, or very drastically'). + + * enca, a command line frontend, integrating libenca and several + charset conversion libraries and tools (GNU recode, UNIX98 iconv, + perl Unicode::Map, cstocs). + + +## Installation + +Enca should compile and work on every POSIX.1 compliant system with ISO C +compiler, and actually compiles on many noncompliant systems too (see below +for list dependencies). If you have some of following additional tools, +Enca can use them as external converters: + +* GNU recode and the associated recoding library +* Perl charset converters Unicode::Map8 or Unicode::Map +* cstocs, the famous Czech charset converter + +Optional features: + +* Compilation of GNU recode library interface is controlled by + `--with-librecode[=DIR]`, `--without-librecode` + configure parameters. It is compiled in by default when found. + Optionally, you can specify a DIR; librecode include files will be + then searched in DIR/include and the library itself in DIR/lib. + +* Compilation of UNIX98 iconv interface is controlled by + `--with-libiconv=[DIR]`, `--without-libiconv` + configure parameters. It is compiled in by default when found + and considered usable. Optionally, you can specify a DIR; libiconv + include files will be then searched in DIR/include and the library + itself in DIR/lib. + +* Compilation of interface to external converter programs is controlled by + `--enable-external`, `--disable-external` + configure parameters. By default is is compiled in. + +Don't even try to compile Enca on system not supporting following ISO C and +POSIX features: +* Function prototypes. +* Basic ISO C headers and functions declared there: + - assert.h, ctype.h, math.h, stdarg.h, stdio.h, stdlib.h + - any (working) one of string.h, strings.h, memory.h + - unistd.h, sys/stat.h, sys/types.h + +For the impatient: Run + + ./configure + make + make check + make install + +as usual. + + +## License + +Enca can be copied and/or modified under the terms of version 2 of +GNU General Public License. Please see COPYING for details. + + +## Web resources + +Enca can be found at http://github.com/nijel/enca/, you can download +tarballs from http://dl.cihar.com/enca/. + + +## Bugs + +Report problems at <https://github.com/nijel/enca/issues>. Some known bugs have +been collected in BUGS section of enca manual page. + + +## Hacking (with) Enca + +Please see TODO for list of things that should be fixed and features to +be implemented and their priority and also for list of things that +definitely shouldn't be implemented. + +The file DEVELOP.md describes what needs to be done to add a new +encoding or language to Enca. + +The directory devel-docs/html contains Enca library API documentation in +HTML form. diff --git a/wlx/wayland_qt_base/build/enca-1.19/README.md b/wlx/wayland_qt_base/build/enca-1.19/README.md new file mode 100644 index 0000000..0bdbc8b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/README.md @@ -0,0 +1,106 @@ +# Enca - guess and convert encoding of text files + +[![build status](https://secure.travis-ci.org/nijel/enca.png)](https://travis-ci.org/nijel/enca) +[![codecov.io](https://codecov.io/github/nijel/enca/coverage.svg?branch=master)](https://codecov.io/github/nijel/enca?branch=master) +[![Coverity Scan Build Status](https://scan.coverity.com/projects/3292/badge.svg)](https://scan.coverity.com/projects/nijel-enca) +[![Coverage Status](https://coveralls.io/repos/nijel/enca/badge.png?branch=master)](https://coveralls.io/r/nijel/enca?branch=master) + +## Copyright + +Copyright (C) 2000-2003 David Necas (Yeti) <yeti@physics.muni.cz> + +Copyright (C) 2009-2016 Michal Cihar <michal@cihar.com> + +## Description + +Enca (Extremely Naive Charset Analyser) consists of two main components: + + * libenca, an encoding detection library. It currently supports + Belarusian, Bulgarian, Croatian, Czech, Estonian, Hungarian, Latvian, + Lithuanian, Polish, Russian, Slovak, Slovene, Ukrainian, Chinese, and + some multibyte encodings independently on language. The API should be + relatively stable (to be read as `it will either change only + marginally, or very drastically'). + + * enca, a command line frontend, integrating libenca and several + charset conversion libraries and tools (GNU recode, UNIX98 iconv, + perl Unicode::Map, cstocs). + + +## Installation + +Enca should compile and work on every POSIX.1 compliant system with ISO C +compiler, and actually compiles on many noncompliant systems too (see below +for list dependencies). If you have some of following additional tools, +Enca can use them as external converters: + +* GNU recode and the associated recoding library +* Perl charset converters Unicode::Map8 or Unicode::Map +* cstocs, the famous Czech charset converter + +Optional features: + +* Compilation of GNU recode library interface is controlled by + `--with-librecode[=DIR]`, `--without-librecode` + configure parameters. It is compiled in by default when found. + Optionally, you can specify a DIR; librecode include files will be + then searched in DIR/include and the library itself in DIR/lib. + +* Compilation of UNIX98 iconv interface is controlled by + `--with-libiconv=[DIR]`, `--without-libiconv` + configure parameters. It is compiled in by default when found + and considered usable. Optionally, you can specify a DIR; libiconv + include files will be then searched in DIR/include and the library + itself in DIR/lib. + +* Compilation of interface to external converter programs is controlled by + `--enable-external`, `--disable-external` + configure parameters. By default is is compiled in. + +Don't even try to compile Enca on system not supporting following ISO C and +POSIX features: +* Function prototypes. +* Basic ISO C headers and functions declared there: + - assert.h, ctype.h, math.h, stdarg.h, stdio.h, stdlib.h + - any (working) one of string.h, strings.h, memory.h + - unistd.h, sys/stat.h, sys/types.h + +For the impatient: Run + + ./configure + make + make check + make install + +as usual. + + +## License + +Enca can be copied and/or modified under the terms of version 2 of +GNU General Public License. Please see COPYING for details. + + +## Web resources + +Enca can be found at http://github.com/nijel/enca/, you can download +tarballs from http://dl.cihar.com/enca/. + + +## Bugs + +Report problems at <https://github.com/nijel/enca/issues>. Some known bugs have +been collected in BUGS section of enca manual page. + + +## Hacking (with) Enca + +Please see TODO for list of things that should be fixed and features to +be implemented and their priority and also for list of things that +definitely shouldn't be implemented. + +The file DEVELOP.md describes what needs to be done to add a new +encoding or language to Enca. + +The directory devel-docs/html contains Enca library API documentation in +HTML form. diff --git a/wlx/wayland_qt_base/build/enca-1.19/THANKS b/wlx/wayland_qt_base/build/enca-1.19/THANKS new file mode 100644 index 0000000..89ea595 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/THANKS @@ -0,0 +1,46 @@ +Daniel Polanský (Halef) <xpolansk@informatics.muni.cz> + for the original usable help and version texts + +Václav Říkal (Vac) <vaclavr@physics.muni.cz> +Jiří Polcar <polcar@physics.muni.cz> +Jan Martínek (Johny) <honza@uf.fyz.fce.vutbr.cz> + for help with testing on non-GNU/Linux platforms + +Михаил Шигорин <mike@osdn.org.ua> + for the initial impulse to add Ukrainian and Belarusian support, + and invaluable help during its implementation + +Александр Боковой <a.bokovoy@sam-solutions.net> + for enlightening of dark corners of Cyrillic charsets + +Александр Коваленко <never@nevermind.kiev.ua> + for finding many portability problems and the FreeBSD port + +David Voříšek <vorisekd@seznam.cz> + for speed testing and hints, and pointing to some code problems + +Martin Man <Martin.Man@seznam.cz> + for Debian packages + +Michal Čihař <michal@cihar.com> + for Debian packages that actually made it to Debian + +Nick Rezmerski <nick@bpsi.net> +David Kamholz <davekam@pobox.com> + for testing on Mac OS X + +Jindřich Makovička <makovick@kmlinux.fjfi.cvut.cz> + for MPlayer integration + +Jan Bílek <bilek@centrum.cz> + for Win32 (MinGW and Cygwin) testing + +Михаил Рамендик <mr@ramendik.ru> + for the idea of preferred MIME charset name style + +François Pinard <pinard@iro.umontreal.ca> + for his infinitely powerful, though incredibly buggy, recode + +All the wise men who devised Unicode, + though it was too late. + diff --git a/wlx/wayland_qt_base/build/enca-1.19/TODO b/wlx/wayland_qt_base/build/enca-1.19/TODO new file mode 100644 index 0000000..2df0b6a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/TODO @@ -0,0 +1,86 @@ +#============================================================================ +# Enca v1.19 (2016-09-05) guess and convert encoding of text files +# Copyright (C) 2000-2003 David Necas (Yeti) <yeti@physics.muni.cz> +# Copyright (C) 2009-2016 Michal Cihar <michal@cihar.com> +#============================================================================ + +TO THE NEXT RELEASE: +(this list must be empty at the time of release) + +IN FUTURE: +(should be done, but maybe not right now) + +* LCUC check for cyrillic charsets. +* Backups -- like cp, mv, etc. This will be hard to get right with all the + silly converters. +* More tests +* Structured documentation (the manual page is ugly) + - keep a reasonably brief manual page + - put all the boring doc stuff somewhere else, there are possibilities: + info: searchable, has links, partly portable, has console viewers + HTML: poorly searchable, has links, most portable, has console viewers + TeX (ps): not searchable, no links, portable, most pleasant to read, + no console viewers + => use SGML (or info itself?) and generate the others + + +MAYBE SOMEDAY: +(when I will have mood for it, items are freely moved here and removed again) + +* Detect all-caps texts OK. + After several experiments it seems we have to + - use pair occurences, at least, with specificaly computed + difference-maximising weights + - guess in two steps + - first with uncapitalization and pair weights, and check whether the + sample looks like natural text (garbageness test, but better) + - if the first approach fails, do it as we do it now +* design better levels of verbosity/warnings (or: remove the --verbose option, + keep important messages and remove all others?) + 0: only messages followed by exit(EXIT_FAILURE) (or abort()) are printed + plus `cannot convert...' + 1: all nonfatal errors/warnings + 2: what converters are tried, what language gets detected (do not duplicate + --details) + >2: debug +* _real_ paranoiac behaviour assuring that nothing gets lost and that + conversion output is either correctly converted text or untouched original + (requires major redesign of all the conversion stuff) + + +NEVER: +(you can do anything GNU GPL v2 allows, but I'll restrain) + +* features that nobody needs (mm, well, ... ok, let it be) +* duplicate other tools functionality more than necessary, use them instead +* dependency on anything that is not ISO C and/or POSIX (moreover do not use + braindead features of both); important functionallity must be present + everywhere nevertheless, enca can be smaller, faster or cleverer on some + (GNU) systems +* localization; please correct my english instead ;-> +* converter calling generalization (would require inlcuding the whole wordexp + thing in enca, and: launching external converter is Bad Thing(TM) anyway) +* data in run-time files (needs parser (could live with) and disallows hooks + (can't live without)) +* loadable module support (it's not very portable) +------------- + + +KNOWN ISO C CONFLICTS: +(perhaps to be solved someday) + +All constants and typedefs. They start with ENCA_ and Enca, but: + + Names beginning with a capital `E' followed a digit or uppercase + letter may be used for additional error code names. [errno.h] + +And additionally inside libenca (i.e. not so serious): +* libenca.h: #define EPSILON [errno.h] +* filters.c: isvbox[] [ctype.h] +* guess.c: #define isbinary [ctype.h] +* guess.c: #define istext [ctype.h] +* multibyte.c: is_valid_utf7() [ctype.h] +* multibyte.c: is_valid_utf8() [ctype.h] + +Some probably can't conflict. + diff --git a/wlx/wayland_qt_base/build/enca-1.19/aclocal.m4 b/wlx/wayland_qt_base/build/enca-1.19/aclocal.m4 new file mode 100644 index 0000000..89fe04d --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/aclocal.m4 @@ -0,0 +1,2596 @@ +# generated automatically by aclocal 1.15 -*- Autoconf -*- + +# Copyright (C) 1996-2014 Free Software Foundation, Inc. + +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, +[m4_warning([this file was generated for autoconf 2.69. +You have another version of autoconf. It may work, but is not guaranteed to. +If you have problems, you may need to regenerate the build system entirely. +To do so, use the procedure documented by the package, typically 'autoreconf'.])]) + +# iconv.m4 serial 19 (gettext-0.18.2) +dnl Copyright (C) 2000-2002, 2007-2014, 2016 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +dnl From Bruno Haible. + +AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], +[ + dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + AC_REQUIRE([AC_LIB_RPATH]) + + dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV + dnl accordingly. + AC_LIB_LINKFLAGS_BODY([iconv]) +]) + +AC_DEFUN([AM_ICONV_LINK], +[ + dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and + dnl those with the standalone portable GNU libiconv installed). + AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles + + dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV + dnl accordingly. + AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) + + dnl Add $INCICONV to CPPFLAGS before performing the following checks, + dnl because if the user has installed libiconv and not disabled its use + dnl via --without-libiconv-prefix, he wants to use it. The first + dnl AC_LINK_IFELSE will then fail, the second AC_LINK_IFELSE will succeed. + am_save_CPPFLAGS="$CPPFLAGS" + AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) + + AC_CACHE_CHECK([for iconv], [am_cv_func_iconv], [ + am_cv_func_iconv="no, consider installing GNU libiconv" + am_cv_lib_iconv=no + AC_LINK_IFELSE( + [AC_LANG_PROGRAM( + [[ +#include <stdlib.h> +#include <iconv.h> + ]], + [[iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd);]])], + [am_cv_func_iconv=yes]) + if test "$am_cv_func_iconv" != yes; then + am_save_LIBS="$LIBS" + LIBS="$LIBS $LIBICONV" + AC_LINK_IFELSE( + [AC_LANG_PROGRAM( + [[ +#include <stdlib.h> +#include <iconv.h> + ]], + [[iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd);]])], + [am_cv_lib_iconv=yes] + [am_cv_func_iconv=yes]) + LIBS="$am_save_LIBS" + fi + ]) + if test "$am_cv_func_iconv" = yes; then + AC_CACHE_CHECK([for working iconv], [am_cv_func_iconv_works], [ + dnl This tests against bugs in AIX 5.1, AIX 6.1..7.1, HP-UX 11.11, + dnl Solaris 10. + am_save_LIBS="$LIBS" + if test $am_cv_lib_iconv = yes; then + LIBS="$LIBS $LIBICONV" + fi + am_cv_func_iconv_works=no + for ac_iconv_const in '' 'const'; do + AC_RUN_IFELSE( + [AC_LANG_PROGRAM( + [[ +#include <iconv.h> +#include <string.h> + +#ifndef ICONV_CONST +# define ICONV_CONST $ac_iconv_const +#endif + ]], + [[int result = 0; + /* Test against AIX 5.1 bug: Failures are not distinguishable from successful + returns. */ + { + iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); + if (cd_utf8_to_88591 != (iconv_t)(-1)) + { + static ICONV_CONST char input[] = "\342\202\254"; /* EURO SIGN */ + char buf[10]; + ICONV_CONST char *inptr = input; + size_t inbytesleft = strlen (input); + char *outptr = buf; + size_t outbytesleft = sizeof (buf); + size_t res = iconv (cd_utf8_to_88591, + &inptr, &inbytesleft, + &outptr, &outbytesleft); + if (res == 0) + result |= 1; + iconv_close (cd_utf8_to_88591); + } + } + /* Test against Solaris 10 bug: Failures are not distinguishable from + successful returns. */ + { + iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); + if (cd_ascii_to_88591 != (iconv_t)(-1)) + { + static ICONV_CONST char input[] = "\263"; + char buf[10]; + ICONV_CONST char *inptr = input; + size_t inbytesleft = strlen (input); + char *outptr = buf; + size_t outbytesleft = sizeof (buf); + size_t res = iconv (cd_ascii_to_88591, + &inptr, &inbytesleft, + &outptr, &outbytesleft); + if (res == 0) + result |= 2; + iconv_close (cd_ascii_to_88591); + } + } + /* Test against AIX 6.1..7.1 bug: Buffer overrun. */ + { + iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1"); + if (cd_88591_to_utf8 != (iconv_t)(-1)) + { + static ICONV_CONST char input[] = "\304"; + static char buf[2] = { (char)0xDE, (char)0xAD }; + ICONV_CONST char *inptr = input; + size_t inbytesleft = 1; + char *outptr = buf; + size_t outbytesleft = 1; + size_t res = iconv (cd_88591_to_utf8, + &inptr, &inbytesleft, + &outptr, &outbytesleft); + if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD) + result |= 4; + iconv_close (cd_88591_to_utf8); + } + } +#if 0 /* This bug could be worked around by the caller. */ + /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ + { + iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); + if (cd_88591_to_utf8 != (iconv_t)(-1)) + { + static ICONV_CONST char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; + char buf[50]; + ICONV_CONST char *inptr = input; + size_t inbytesleft = strlen (input); + char *outptr = buf; + size_t outbytesleft = sizeof (buf); + size_t res = iconv (cd_88591_to_utf8, + &inptr, &inbytesleft, + &outptr, &outbytesleft); + if ((int)res > 0) + result |= 8; + iconv_close (cd_88591_to_utf8); + } + } +#endif + /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is + provided. */ + if (/* Try standardized names. */ + iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) + /* Try IRIX, OSF/1 names. */ + && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) + /* Try AIX names. */ + && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) + /* Try HP-UX names. */ + && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) + result |= 16; + return result; +]])], + [am_cv_func_iconv_works=yes], , + [case "$host_os" in + aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; + *) am_cv_func_iconv_works="guessing yes" ;; + esac]) + test "$am_cv_func_iconv_works" = no || break + done + LIBS="$am_save_LIBS" + ]) + case "$am_cv_func_iconv_works" in + *no) am_func_iconv=no am_cv_lib_iconv=no ;; + *) am_func_iconv=yes ;; + esac + else + am_func_iconv=no am_cv_lib_iconv=no + fi + if test "$am_func_iconv" = yes; then + AC_DEFINE([HAVE_ICONV], [1], + [Define if you have the iconv() function and it works.]) + fi + if test "$am_cv_lib_iconv" = yes; then + AC_MSG_CHECKING([how to link with libiconv]) + AC_MSG_RESULT([$LIBICONV]) + else + dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV + dnl either. + CPPFLAGS="$am_save_CPPFLAGS" + LIBICONV= + LTLIBICONV= + fi + AC_SUBST([LIBICONV]) + AC_SUBST([LTLIBICONV]) +]) + +dnl Define AM_ICONV using AC_DEFUN_ONCE for Autoconf >= 2.64, in order to +dnl avoid warnings like +dnl "warning: AC_REQUIRE: `AM_ICONV' was expanded before it was required". +dnl This is tricky because of the way 'aclocal' is implemented: +dnl - It requires defining an auxiliary macro whose name ends in AC_DEFUN. +dnl Otherwise aclocal's initial scan pass would miss the macro definition. +dnl - It requires a line break inside the AC_DEFUN_ONCE and AC_DEFUN expansions. +dnl Otherwise aclocal would emit many "Use of uninitialized value $1" +dnl warnings. +m4_define([gl_iconv_AC_DEFUN], + m4_version_prereq([2.64], + [[AC_DEFUN_ONCE( + [$1], [$2])]], + [m4_ifdef([gl_00GNULIB], + [[AC_DEFUN_ONCE( + [$1], [$2])]], + [[AC_DEFUN( + [$1], [$2])]])])) +gl_iconv_AC_DEFUN([AM_ICONV], +[ + AM_ICONV_LINK + if test "$am_cv_func_iconv" = yes; then + AC_MSG_CHECKING([for iconv declaration]) + AC_CACHE_VAL([am_cv_proto_iconv], [ + AC_COMPILE_IFELSE( + [AC_LANG_PROGRAM( + [[ +#include <stdlib.h> +#include <iconv.h> +extern +#ifdef __cplusplus +"C" +#endif +#if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus) +size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); +#else +size_t iconv(); +#endif + ]], + [[]])], + [am_cv_proto_iconv_arg1=""], + [am_cv_proto_iconv_arg1="const"]) + am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) + am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` + AC_MSG_RESULT([ + $am_cv_proto_iconv]) + AC_DEFINE_UNQUOTED([ICONV_CONST], [$am_cv_proto_iconv_arg1], + [Define as const if the declaration of iconv() needs const.]) + dnl Also substitute ICONV_CONST in the gnulib generated <iconv.h>. + m4_ifdef([gl_ICONV_H_DEFAULTS], + [AC_REQUIRE([gl_ICONV_H_DEFAULTS]) + if test -n "$am_cv_proto_iconv_arg1"; then + ICONV_CONST="const" + fi + ]) + fi +]) + +# lib-ld.m4 serial 6 +dnl Copyright (C) 1996-2003, 2009-2016 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +dnl Subroutines of libtool.m4, +dnl with replacements s/_*LT_PATH/AC_LIB_PROG/ and s/lt_/acl_/ to avoid +dnl collision with libtool.m4. + +dnl From libtool-2.4. Sets the variable with_gnu_ld to yes or no. +AC_DEFUN([AC_LIB_PROG_LD_GNU], +[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], [acl_cv_prog_gnu_ld], +[# I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 </dev/null` in +*GNU* | *'with BFD'*) + acl_cv_prog_gnu_ld=yes + ;; +*) + acl_cv_prog_gnu_ld=no + ;; +esac]) +with_gnu_ld=$acl_cv_prog_gnu_ld +]) + +dnl From libtool-2.4. Sets the variable LD. +AC_DEFUN([AC_LIB_PROG_LD], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl + +AC_ARG_WITH([gnu-ld], + [AS_HELP_STRING([--with-gnu-ld], + [assume the C compiler uses GNU ld [default=no]])], + [test "$withval" = no || with_gnu_ld=yes], + [with_gnu_ld=no])dnl + +# Prepare PATH_SEPARATOR. +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which + # contains only /bin. Note that ksh looks also at the FPATH variable, + # so we have to set that as well for the test. + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ + && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ + || PATH_SEPARATOR=';' + } +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by $CC]) + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [[\\/]]* | ?:[[\\/]]*) + re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`echo "$ac_prog"| sed 's%\\\\%/%g'` + while echo "$ac_prog" | grep "$re_direlt" > /dev/null 2>&1; do + ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + AC_MSG_CHECKING([for GNU ld]) +else + AC_MSG_CHECKING([for non-GNU ld]) +fi +AC_CACHE_VAL([acl_cv_path_LD], +[if test -z "$LD"; then + acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$acl_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + acl_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$acl_cv_path_LD" -v 2>&1 </dev/null` in + *GNU* | *'with BFD'*) + test "$with_gnu_ld" != no && break + ;; + *) + test "$with_gnu_ld" != yes && break + ;; + esac + fi + done + IFS="$acl_save_ifs" +else + acl_cv_path_LD="$LD" # Let the user override the test with a path. +fi]) +LD="$acl_cv_path_LD" +if test -n "$LD"; then + AC_MSG_RESULT([$LD]) +else + AC_MSG_RESULT([no]) +fi +test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) +AC_LIB_PROG_LD_GNU +]) + +# lib-link.m4 serial 26 (gettext-0.18.2) +dnl Copyright (C) 2001-2016 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +dnl From Bruno Haible. + +AC_PREREQ([2.54]) + +dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and +dnl the libraries corresponding to explicit and implicit dependencies. +dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and +dnl augments the CPPFLAGS variable. +dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname +dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. +AC_DEFUN([AC_LIB_LINKFLAGS], +[ + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + AC_REQUIRE([AC_LIB_RPATH]) + pushdef([Name],[m4_translit([$1],[./+-], [____])]) + pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], + [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) + AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ + AC_LIB_LINKFLAGS_BODY([$1], [$2]) + ac_cv_lib[]Name[]_libs="$LIB[]NAME" + ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" + ac_cv_lib[]Name[]_cppflags="$INC[]NAME" + ac_cv_lib[]Name[]_prefix="$LIB[]NAME[]_PREFIX" + ]) + LIB[]NAME="$ac_cv_lib[]Name[]_libs" + LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" + INC[]NAME="$ac_cv_lib[]Name[]_cppflags" + LIB[]NAME[]_PREFIX="$ac_cv_lib[]Name[]_prefix" + AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) + AC_SUBST([LIB]NAME) + AC_SUBST([LTLIB]NAME) + AC_SUBST([LIB]NAME[_PREFIX]) + dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the + dnl results of this search when this library appears as a dependency. + HAVE_LIB[]NAME=yes + popdef([NAME]) + popdef([Name]) +]) + +dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode, [missing-message]) +dnl searches for libname and the libraries corresponding to explicit and +dnl implicit dependencies, together with the specified include files and +dnl the ability to compile and link the specified testcode. The missing-message +dnl defaults to 'no' and may contain additional hints for the user. +dnl If found, it sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} +dnl and LTLIB${NAME} variables and augments the CPPFLAGS variable, and +dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs +dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. +dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname +dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. +AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], +[ + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + AC_REQUIRE([AC_LIB_RPATH]) + pushdef([Name],[m4_translit([$1],[./+-], [____])]) + pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], + [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) + + dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME + dnl accordingly. + AC_LIB_LINKFLAGS_BODY([$1], [$2]) + + dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, + dnl because if the user has installed lib[]Name and not disabled its use + dnl via --without-lib[]Name-prefix, he wants to use it. + ac_save_CPPFLAGS="$CPPFLAGS" + AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) + + AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ + ac_save_LIBS="$LIBS" + dnl If $LIB[]NAME contains some -l options, add it to the end of LIBS, + dnl because these -l options might require -L options that are present in + dnl LIBS. -l options benefit only from the -L options listed before it. + dnl Otherwise, add it to the front of LIBS, because it may be a static + dnl library that depends on another static library that is present in LIBS. + dnl Static libraries benefit only from the static libraries listed after + dnl it. + case " $LIB[]NAME" in + *" -l"*) LIBS="$LIBS $LIB[]NAME" ;; + *) LIBS="$LIB[]NAME $LIBS" ;; + esac + AC_LINK_IFELSE( + [AC_LANG_PROGRAM([[$3]], [[$4]])], + [ac_cv_lib[]Name=yes], + [ac_cv_lib[]Name='m4_if([$5], [], [no], [[$5]])']) + LIBS="$ac_save_LIBS" + ]) + if test "$ac_cv_lib[]Name" = yes; then + HAVE_LIB[]NAME=yes + AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the lib][$1 library.]) + AC_MSG_CHECKING([how to link with lib[]$1]) + AC_MSG_RESULT([$LIB[]NAME]) + else + HAVE_LIB[]NAME=no + dnl If $LIB[]NAME didn't lead to a usable library, we don't need + dnl $INC[]NAME either. + CPPFLAGS="$ac_save_CPPFLAGS" + LIB[]NAME= + LTLIB[]NAME= + LIB[]NAME[]_PREFIX= + fi + AC_SUBST([HAVE_LIB]NAME) + AC_SUBST([LIB]NAME) + AC_SUBST([LTLIB]NAME) + AC_SUBST([LIB]NAME[_PREFIX]) + popdef([NAME]) + popdef([Name]) +]) + +dnl Determine the platform dependent parameters needed to use rpath: +dnl acl_libext, +dnl acl_shlibext, +dnl acl_libname_spec, +dnl acl_library_names_spec, +dnl acl_hardcode_libdir_flag_spec, +dnl acl_hardcode_libdir_separator, +dnl acl_hardcode_direct, +dnl acl_hardcode_minus_L. +AC_DEFUN([AC_LIB_RPATH], +[ + dnl Tell automake >= 1.10 to complain if config.rpath is missing. + m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])]) + AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS + AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld + AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host + AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir + AC_CACHE_CHECK([for shared library run path origin], [acl_cv_rpath], [ + CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ + ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh + . ./conftest.sh + rm -f ./conftest.sh + acl_cv_rpath=done + ]) + wl="$acl_cv_wl" + acl_libext="$acl_cv_libext" + acl_shlibext="$acl_cv_shlibext" + acl_libname_spec="$acl_cv_libname_spec" + acl_library_names_spec="$acl_cv_library_names_spec" + acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" + acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" + acl_hardcode_direct="$acl_cv_hardcode_direct" + acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" + dnl Determine whether the user wants rpath handling at all. + AC_ARG_ENABLE([rpath], + [ --disable-rpath do not hardcode runtime library paths], + :, enable_rpath=yes) +]) + +dnl AC_LIB_FROMPACKAGE(name, package) +dnl declares that libname comes from the given package. The configure file +dnl will then not have a --with-libname-prefix option but a +dnl --with-package-prefix option. Several libraries can come from the same +dnl package. This declaration must occur before an AC_LIB_LINKFLAGS or similar +dnl macro call that searches for libname. +AC_DEFUN([AC_LIB_FROMPACKAGE], +[ + pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], + [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) + define([acl_frompackage_]NAME, [$2]) + popdef([NAME]) + pushdef([PACK],[$2]) + pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-], + [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) + define([acl_libsinpackage_]PACKUP, + m4_ifdef([acl_libsinpackage_]PACKUP, [m4_defn([acl_libsinpackage_]PACKUP)[, ]],)[lib$1]) + popdef([PACKUP]) + popdef([PACK]) +]) + +dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and +dnl the libraries corresponding to explicit and implicit dependencies. +dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. +dnl Also, sets the LIB${NAME}_PREFIX variable to nonempty if libname was found +dnl in ${LIB${NAME}_PREFIX}/$acl_libdirstem. +AC_DEFUN([AC_LIB_LINKFLAGS_BODY], +[ + AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) + pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], + [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) + pushdef([PACK],[m4_ifdef([acl_frompackage_]NAME, [acl_frompackage_]NAME, lib[$1])]) + pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-], + [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) + pushdef([PACKLIBS],[m4_ifdef([acl_frompackage_]NAME, [acl_libsinpackage_]PACKUP, lib[$1])]) + dnl Autoconf >= 2.61 supports dots in --with options. + pushdef([P_A_C_K],[m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]),[2.61]),[-1],[m4_translit(PACK,[.],[_])],PACK)]) + dnl By default, look in $includedir and $libdir. + use_additional=yes + AC_LIB_WITH_FINAL_PREFIX([ + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + ]) + AC_ARG_WITH(P_A_C_K[-prefix], +[[ --with-]]P_A_C_K[[-prefix[=DIR] search for ]PACKLIBS[ in DIR/include and DIR/lib + --without-]]P_A_C_K[[-prefix don't search for ]PACKLIBS[ in includedir and libdir]], +[ + if test "X$withval" = "Xno"; then + use_additional=no + else + if test "X$withval" = "X"; then + AC_LIB_WITH_FINAL_PREFIX([ + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + ]) + else + additional_includedir="$withval/include" + additional_libdir="$withval/$acl_libdirstem" + if test "$acl_libdirstem2" != "$acl_libdirstem" \ + && ! test -d "$withval/$acl_libdirstem"; then + additional_libdir="$withval/$acl_libdirstem2" + fi + fi + fi +]) + dnl Search the library and its dependencies in $additional_libdir and + dnl $LDFLAGS. Using breadth-first-seach. + LIB[]NAME= + LTLIB[]NAME= + INC[]NAME= + LIB[]NAME[]_PREFIX= + dnl HAVE_LIB${NAME} is an indicator that LIB${NAME}, LTLIB${NAME} have been + dnl computed. So it has to be reset here. + HAVE_LIB[]NAME= + rpathdirs= + ltrpathdirs= + names_already_handled= + names_next_round='$1 $2' + while test -n "$names_next_round"; do + names_this_round="$names_next_round" + names_next_round= + for name in $names_this_round; do + already_handled= + for n in $names_already_handled; do + if test "$n" = "$name"; then + already_handled=yes + break + fi + done + if test -z "$already_handled"; then + names_already_handled="$names_already_handled $name" + dnl See if it was already located by an earlier AC_LIB_LINKFLAGS + dnl or AC_LIB_HAVE_LINKFLAGS call. + uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` + eval value=\"\$HAVE_LIB$uppername\" + if test -n "$value"; then + if test "$value" = yes; then + eval value=\"\$LIB$uppername\" + test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" + eval value=\"\$LTLIB$uppername\" + test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" + else + dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined + dnl that this library doesn't exist. So just drop it. + : + fi + else + dnl Search the library lib$name in $additional_libdir and $LDFLAGS + dnl and the already constructed $LIBNAME/$LTLIBNAME. + found_dir= + found_la= + found_so= + found_a= + eval libname=\"$acl_libname_spec\" # typically: libname=lib$name + if test -n "$acl_shlibext"; then + shrext=".$acl_shlibext" # typically: shrext=.so + else + shrext= + fi + if test $use_additional = yes; then + dir="$additional_libdir" + dnl The same code as in the loop below: + dnl First look for a shared library. + if test -n "$acl_shlibext"; then + if test -f "$dir/$libname$shrext"; then + found_dir="$dir" + found_so="$dir/$libname$shrext" + else + if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then + ver=`(cd "$dir" && \ + for f in "$libname$shrext".*; do echo "$f"; done \ + | sed -e "s,^$libname$shrext\\\\.,," \ + | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ + | sed 1q ) 2>/dev/null` + if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then + found_dir="$dir" + found_so="$dir/$libname$shrext.$ver" + fi + else + eval library_names=\"$acl_library_names_spec\" + for f in $library_names; do + if test -f "$dir/$f"; then + found_dir="$dir" + found_so="$dir/$f" + break + fi + done + fi + fi + fi + dnl Then look for a static library. + if test "X$found_dir" = "X"; then + if test -f "$dir/$libname.$acl_libext"; then + found_dir="$dir" + found_a="$dir/$libname.$acl_libext" + fi + fi + if test "X$found_dir" != "X"; then + if test -f "$dir/$libname.la"; then + found_la="$dir/$libname.la" + fi + fi + fi + if test "X$found_dir" = "X"; then + for x in $LDFLAGS $LTLIB[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + case "$x" in + -L*) + dir=`echo "X$x" | sed -e 's/^X-L//'` + dnl First look for a shared library. + if test -n "$acl_shlibext"; then + if test -f "$dir/$libname$shrext"; then + found_dir="$dir" + found_so="$dir/$libname$shrext" + else + if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then + ver=`(cd "$dir" && \ + for f in "$libname$shrext".*; do echo "$f"; done \ + | sed -e "s,^$libname$shrext\\\\.,," \ + | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ + | sed 1q ) 2>/dev/null` + if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then + found_dir="$dir" + found_so="$dir/$libname$shrext.$ver" + fi + else + eval library_names=\"$acl_library_names_spec\" + for f in $library_names; do + if test -f "$dir/$f"; then + found_dir="$dir" + found_so="$dir/$f" + break + fi + done + fi + fi + fi + dnl Then look for a static library. + if test "X$found_dir" = "X"; then + if test -f "$dir/$libname.$acl_libext"; then + found_dir="$dir" + found_a="$dir/$libname.$acl_libext" + fi + fi + if test "X$found_dir" != "X"; then + if test -f "$dir/$libname.la"; then + found_la="$dir/$libname.la" + fi + fi + ;; + esac + if test "X$found_dir" != "X"; then + break + fi + done + fi + if test "X$found_dir" != "X"; then + dnl Found the library. + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" + if test "X$found_so" != "X"; then + dnl Linking with a shared library. We attempt to hardcode its + dnl directory into the executable's runpath, unless it's the + dnl standard /usr/lib. + if test "$enable_rpath" = no \ + || test "X$found_dir" = "X/usr/$acl_libdirstem" \ + || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then + dnl No hardcoding is needed. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" + else + dnl Use an explicit option to hardcode DIR into the resulting + dnl binary. + dnl Potentially add DIR to ltrpathdirs. + dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $found_dir" + fi + dnl The hardcoding into $LIBNAME is system dependent. + if test "$acl_hardcode_direct" = yes; then + dnl Using DIR/libNAME.so during linking hardcodes DIR into the + dnl resulting binary. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" + else + if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then + dnl Use an explicit option to hardcode DIR into the resulting + dnl binary. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" + dnl Potentially add DIR to rpathdirs. + dnl The rpathdirs will be appended to $LIBNAME at the end. + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $found_dir" + fi + else + dnl Rely on "-L$found_dir". + dnl But don't add it if it's already contained in the LDFLAGS + dnl or the already constructed $LIBNAME + haveit= + for x in $LDFLAGS $LIB[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-L$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" + fi + if test "$acl_hardcode_minus_L" != no; then + dnl FIXME: Not sure whether we should use + dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" + dnl here. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" + else + dnl We cannot use $acl_hardcode_runpath_var and LD_RUN_PATH + dnl here, because this doesn't fit in flags passed to the + dnl compiler. So give up. No hardcoding. This affects only + dnl very old systems. + dnl FIXME: Not sure whether we should use + dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" + dnl here. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" + fi + fi + fi + fi + else + if test "X$found_a" != "X"; then + dnl Linking with a static library. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" + else + dnl We shouldn't come here, but anyway it's good to have a + dnl fallback. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" + fi + fi + dnl Assume the include files are nearby. + additional_includedir= + case "$found_dir" in + */$acl_libdirstem | */$acl_libdirstem/) + basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` + if test "$name" = '$1'; then + LIB[]NAME[]_PREFIX="$basedir" + fi + additional_includedir="$basedir/include" + ;; + */$acl_libdirstem2 | */$acl_libdirstem2/) + basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` + if test "$name" = '$1'; then + LIB[]NAME[]_PREFIX="$basedir" + fi + additional_includedir="$basedir/include" + ;; + esac + if test "X$additional_includedir" != "X"; then + dnl Potentially add $additional_includedir to $INCNAME. + dnl But don't add it + dnl 1. if it's the standard /usr/include, + dnl 2. if it's /usr/local/include and we are using GCC on Linux, + dnl 3. if it's already present in $CPPFLAGS or the already + dnl constructed $INCNAME, + dnl 4. if it doesn't exist as a directory. + if test "X$additional_includedir" != "X/usr/include"; then + haveit= + if test "X$additional_includedir" = "X/usr/local/include"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + for x in $CPPFLAGS $INC[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-I$additional_includedir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_includedir"; then + dnl Really add $additional_includedir to $INCNAME. + INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" + fi + fi + fi + fi + fi + dnl Look for dependencies. + if test -n "$found_la"; then + dnl Read the .la file. It defines the variables + dnl dlname, library_names, old_library, dependency_libs, current, + dnl age, revision, installed, dlopen, dlpreopen, libdir. + save_libdir="$libdir" + case "$found_la" in + */* | *\\*) . "$found_la" ;; + *) . "./$found_la" ;; + esac + libdir="$save_libdir" + dnl We use only dependency_libs. + for dep in $dependency_libs; do + case "$dep" in + -L*) + additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` + dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. + dnl But don't add it + dnl 1. if it's the standard /usr/lib, + dnl 2. if it's /usr/local/lib and we are using GCC on Linux, + dnl 3. if it's already present in $LDFLAGS or the already + dnl constructed $LIBNAME, + dnl 4. if it doesn't exist as a directory. + if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ + && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then + haveit= + if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ + || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + haveit= + for x in $LDFLAGS $LIB[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + dnl Really add $additional_libdir to $LIBNAME. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" + fi + fi + haveit= + for x in $LDFLAGS $LTLIB[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + dnl Really add $additional_libdir to $LTLIBNAME. + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" + fi + fi + fi + fi + ;; + -R*) + dir=`echo "X$dep" | sed -e 's/^X-R//'` + if test "$enable_rpath" != no; then + dnl Potentially add DIR to rpathdirs. + dnl The rpathdirs will be appended to $LIBNAME at the end. + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $dir" + fi + dnl Potentially add DIR to ltrpathdirs. + dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $dir" + fi + fi + ;; + -l*) + dnl Handle this in the next round. + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` + ;; + *.la) + dnl Handle this in the next round. Throw away the .la's + dnl directory; it is already contained in a preceding -L + dnl option. + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` + ;; + *) + dnl Most likely an immediate library name. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" + ;; + esac + done + fi + else + dnl Didn't find the library; assume it is in the system directories + dnl known to the linker and runtime loader. (All the system + dnl directories known to the linker should also be known to the + dnl runtime loader, otherwise the system is severely misconfigured.) + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" + fi + fi + fi + done + done + if test "X$rpathdirs" != "X"; then + if test -n "$acl_hardcode_libdir_separator"; then + dnl Weird platform: only the last -rpath option counts, the user must + dnl pass all path elements in one option. We can arrange that for a + dnl single library, but not when more than one $LIBNAMEs are used. + alldirs= + for found_dir in $rpathdirs; do + alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" + done + dnl Note: acl_hardcode_libdir_flag_spec uses $libdir and $wl. + acl_save_libdir="$libdir" + libdir="$alldirs" + eval flag=\"$acl_hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" + else + dnl The -rpath options are cumulative. + for found_dir in $rpathdirs; do + acl_save_libdir="$libdir" + libdir="$found_dir" + eval flag=\"$acl_hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" + done + fi + fi + if test "X$ltrpathdirs" != "X"; then + dnl When using libtool, the option that works for both libraries and + dnl executables is -R. The -R options are cumulative. + for found_dir in $ltrpathdirs; do + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" + done + fi + popdef([P_A_C_K]) + popdef([PACKLIBS]) + popdef([PACKUP]) + popdef([PACK]) + popdef([NAME]) +]) + +dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, +dnl unless already present in VAR. +dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes +dnl contains two or three consecutive elements that belong together. +AC_DEFUN([AC_LIB_APPENDTOVAR], +[ + for element in [$2]; do + haveit= + for x in $[$1]; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X$element"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + [$1]="${[$1]}${[$1]:+ }$element" + fi + done +]) + +dnl For those cases where a variable contains several -L and -l options +dnl referring to unknown libraries and directories, this macro determines the +dnl necessary additional linker options for the runtime path. +dnl AC_LIB_LINKFLAGS_FROM_LIBS([LDADDVAR], [LIBSVALUE], [USE-LIBTOOL]) +dnl sets LDADDVAR to linker options needed together with LIBSVALUE. +dnl If USE-LIBTOOL evaluates to non-empty, linking with libtool is assumed, +dnl otherwise linking without libtool is assumed. +AC_DEFUN([AC_LIB_LINKFLAGS_FROM_LIBS], +[ + AC_REQUIRE([AC_LIB_RPATH]) + AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) + $1= + if test "$enable_rpath" != no; then + if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then + dnl Use an explicit option to hardcode directories into the resulting + dnl binary. + rpathdirs= + next= + for opt in $2; do + if test -n "$next"; then + dir="$next" + dnl No need to hardcode the standard /usr/lib. + if test "X$dir" != "X/usr/$acl_libdirstem" \ + && test "X$dir" != "X/usr/$acl_libdirstem2"; then + rpathdirs="$rpathdirs $dir" + fi + next= + else + case $opt in + -L) next=yes ;; + -L*) dir=`echo "X$opt" | sed -e 's,^X-L,,'` + dnl No need to hardcode the standard /usr/lib. + if test "X$dir" != "X/usr/$acl_libdirstem" \ + && test "X$dir" != "X/usr/$acl_libdirstem2"; then + rpathdirs="$rpathdirs $dir" + fi + next= ;; + *) next= ;; + esac + fi + done + if test "X$rpathdirs" != "X"; then + if test -n ""$3""; then + dnl libtool is used for linking. Use -R options. + for dir in $rpathdirs; do + $1="${$1}${$1:+ }-R$dir" + done + else + dnl The linker is used for linking directly. + if test -n "$acl_hardcode_libdir_separator"; then + dnl Weird platform: only the last -rpath option counts, the user + dnl must pass all path elements in one option. + alldirs= + for dir in $rpathdirs; do + alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$dir" + done + acl_save_libdir="$libdir" + libdir="$alldirs" + eval flag=\"$acl_hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + $1="$flag" + else + dnl The -rpath options are cumulative. + for dir in $rpathdirs; do + acl_save_libdir="$libdir" + libdir="$dir" + eval flag=\"$acl_hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + $1="${$1}${$1:+ }$flag" + done + fi + fi + fi + fi + fi + AC_SUBST([$1]) +]) + +# lib-prefix.m4 serial 7 (gettext-0.18) +dnl Copyright (C) 2001-2005, 2008-2016 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +dnl From Bruno Haible. + +dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and +dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't +dnl require excessive bracketing. +ifdef([AC_HELP_STRING], +[AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], +[AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) + +dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed +dnl to access previously installed libraries. The basic assumption is that +dnl a user will want packages to use other packages he previously installed +dnl with the same --prefix option. +dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate +dnl libraries, but is otherwise very convenient. +AC_DEFUN([AC_LIB_PREFIX], +[ + AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) + AC_REQUIRE([AC_PROG_CC]) + AC_REQUIRE([AC_CANONICAL_HOST]) + AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + dnl By default, look in $includedir and $libdir. + use_additional=yes + AC_LIB_WITH_FINAL_PREFIX([ + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + ]) + AC_LIB_ARG_WITH([lib-prefix], +[ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib + --without-lib-prefix don't search for libraries in includedir and libdir], +[ + if test "X$withval" = "Xno"; then + use_additional=no + else + if test "X$withval" = "X"; then + AC_LIB_WITH_FINAL_PREFIX([ + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + ]) + else + additional_includedir="$withval/include" + additional_libdir="$withval/$acl_libdirstem" + fi + fi +]) + if test $use_additional = yes; then + dnl Potentially add $additional_includedir to $CPPFLAGS. + dnl But don't add it + dnl 1. if it's the standard /usr/include, + dnl 2. if it's already present in $CPPFLAGS, + dnl 3. if it's /usr/local/include and we are using GCC on Linux, + dnl 4. if it doesn't exist as a directory. + if test "X$additional_includedir" != "X/usr/include"; then + haveit= + for x in $CPPFLAGS; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-I$additional_includedir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test "X$additional_includedir" = "X/usr/local/include"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + if test -d "$additional_includedir"; then + dnl Really add $additional_includedir to $CPPFLAGS. + CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" + fi + fi + fi + fi + dnl Potentially add $additional_libdir to $LDFLAGS. + dnl But don't add it + dnl 1. if it's the standard /usr/lib, + dnl 2. if it's already present in $LDFLAGS, + dnl 3. if it's /usr/local/lib and we are using GCC on Linux, + dnl 4. if it doesn't exist as a directory. + if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then + haveit= + for x in $LDFLAGS; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then + if test -n "$GCC"; then + case $host_os in + linux*) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + dnl Really add $additional_libdir to $LDFLAGS. + LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" + fi + fi + fi + fi + fi +]) + +dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, +dnl acl_final_exec_prefix, containing the values to which $prefix and +dnl $exec_prefix will expand at the end of the configure script. +AC_DEFUN([AC_LIB_PREPARE_PREFIX], +[ + dnl Unfortunately, prefix and exec_prefix get only finally determined + dnl at the end of configure. + if test "X$prefix" = "XNONE"; then + acl_final_prefix="$ac_default_prefix" + else + acl_final_prefix="$prefix" + fi + if test "X$exec_prefix" = "XNONE"; then + acl_final_exec_prefix='${prefix}' + else + acl_final_exec_prefix="$exec_prefix" + fi + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" + prefix="$acl_save_prefix" +]) + +dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the +dnl variables prefix and exec_prefix bound to the values they will have +dnl at the end of the configure script. +AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], +[ + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + $1 + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" +]) + +dnl AC_LIB_PREPARE_MULTILIB creates +dnl - a variable acl_libdirstem, containing the basename of the libdir, either +dnl "lib" or "lib64" or "lib/64", +dnl - a variable acl_libdirstem2, as a secondary possible value for +dnl acl_libdirstem, either the same as acl_libdirstem or "lib/sparcv9" or +dnl "lib/amd64". +AC_DEFUN([AC_LIB_PREPARE_MULTILIB], +[ + dnl There is no formal standard regarding lib and lib64. + dnl On glibc systems, the current practice is that on a system supporting + dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under + dnl $prefix/lib64 and 32-bit libraries go under $prefix/lib. We determine + dnl the compiler's default mode by looking at the compiler's library search + dnl path. If at least one of its elements ends in /lib64 or points to a + dnl directory whose absolute pathname ends in /lib64, we assume a 64-bit ABI. + dnl Otherwise we use the default, namely "lib". + dnl On Solaris systems, the current practice is that on a system supporting + dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under + dnl $prefix/lib/64 (which is a symlink to either $prefix/lib/sparcv9 or + dnl $prefix/lib/amd64) and 32-bit libraries go under $prefix/lib. + AC_REQUIRE([AC_CANONICAL_HOST]) + acl_libdirstem=lib + acl_libdirstem2= + case "$host_os" in + solaris*) + dnl See Solaris 10 Software Developer Collection > Solaris 64-bit Developer's Guide > The Development Environment + dnl <http://docs.sun.com/app/docs/doc/816-5138/dev-env?l=en&a=view>. + dnl "Portable Makefiles should refer to any library directories using the 64 symbolic link." + dnl But we want to recognize the sparcv9 or amd64 subdirectory also if the + dnl symlink is missing, so we set acl_libdirstem2 too. + AC_CACHE_CHECK([for 64-bit host], [gl_cv_solaris_64bit], + [AC_EGREP_CPP([sixtyfour bits], [ +#ifdef _LP64 +sixtyfour bits +#endif + ], [gl_cv_solaris_64bit=yes], [gl_cv_solaris_64bit=no]) + ]) + if test $gl_cv_solaris_64bit = yes; then + acl_libdirstem=lib/64 + case "$host_cpu" in + sparc*) acl_libdirstem2=lib/sparcv9 ;; + i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; + esac + fi + ;; + *) + searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` + if test -n "$searchpath"; then + acl_save_IFS="${IFS= }"; IFS=":" + for searchdir in $searchpath; do + if test -d "$searchdir"; then + case "$searchdir" in + */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; + */../ | */.. ) + # Better ignore directories of this form. They are misleading. + ;; + *) searchdir=`cd "$searchdir" && pwd` + case "$searchdir" in + */lib64 ) acl_libdirstem=lib64 ;; + esac ;; + esac + fi + done + IFS="$acl_save_IFS" + fi + ;; + esac + test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" +]) + +# Copyright (C) 2002-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_AUTOMAKE_VERSION(VERSION) +# ---------------------------- +# Automake X.Y traces this macro to ensure aclocal.m4 has been +# generated from the m4 files accompanying Automake X.Y. +# (This private macro should not be called outside this file.) +AC_DEFUN([AM_AUTOMAKE_VERSION], +[am__api_version='1.15' +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to +dnl require some minimum version. Point them to the right macro. +m4_if([$1], [1.15], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +]) + +# _AM_AUTOCONF_VERSION(VERSION) +# ----------------------------- +# aclocal traces this macro to find the Autoconf version. +# This is a private macro too. Using m4_define simplifies +# the logic in aclocal, which can simply ignore this definition. +m4_define([_AM_AUTOCONF_VERSION], []) + +# AM_SET_CURRENT_AUTOMAKE_VERSION +# ------------------------------- +# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +[AM_AUTOMAKE_VERSION([1.15])dnl +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) + +# AM_AUX_DIR_EXPAND -*- Autoconf -*- + +# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +# $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to +# '$srcdir', '$srcdir/..', or '$srcdir/../..'. +# +# Of course, Automake must honor this variable whenever it calls a +# tool from the auxiliary directory. The problem is that $srcdir (and +# therefore $ac_aux_dir as well) can be either absolute or relative, +# depending on how configure is run. This is pretty annoying, since +# it makes $ac_aux_dir quite unusable in subdirectories: in the top +# source directory, any form will work fine, but in subdirectories a +# relative path needs to be adjusted first. +# +# $ac_aux_dir/missing +# fails when called from a subdirectory if $ac_aux_dir is relative +# $top_srcdir/$ac_aux_dir/missing +# fails if $ac_aux_dir is absolute, +# fails when called from a subdirectory in a VPATH build with +# a relative $ac_aux_dir +# +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +# are both prefixed by $srcdir. In an in-source build this is usually +# harmless because $srcdir is '.', but things will broke when you +# start a VPATH build or use an absolute $srcdir. +# +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +# and then we would define $MISSING as +# MISSING="\${SHELL} $am_aux_dir/missing" +# This will work as long as MISSING is not called from configure, because +# unfortunately $(top_srcdir) has no meaning in configure. +# However there are other variables, like CC, which are often used in +# configure, and could therefore not use this "fixed" $ac_aux_dir. +# +# Another solution, used here, is to always expand $ac_aux_dir to an +# absolute PATH. The drawback is that using absolute paths prevent a +# configured tree to be moved without reconfiguration. + +AC_DEFUN([AM_AUX_DIR_EXPAND], +[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl +# Expand $ac_aux_dir to an absolute path. +am_aux_dir=`cd "$ac_aux_dir" && pwd` +]) + +# AM_CONDITIONAL -*- Autoconf -*- + +# Copyright (C) 1997-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_CONDITIONAL(NAME, SHELL-CONDITION) +# ------------------------------------- +# Define a conditional. +AC_DEFUN([AM_CONDITIONAL], +[AC_PREREQ([2.52])dnl + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE])dnl +AC_SUBST([$1_FALSE])dnl +_AM_SUBST_NOTMAKE([$1_TRUE])dnl +_AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl +if $2; then + $1_TRUE= + $1_FALSE='#' +else + $1_TRUE='#' + $1_FALSE= +fi +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) + +# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + + +# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be +# written in clear, in which case automake, when reading aclocal.m4, +# will think it sees a *use*, and therefore will trigger all it's +# C support machinery. Also note that it means that autoscan, seeing +# CC etc. in the Makefile, will ask for an AC_PROG_CC use... + + +# _AM_DEPENDENCIES(NAME) +# ---------------------- +# See how the compiler implements dependency checking. +# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". +# We try a few techniques and use that to set a single cache variable. +# +# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was +# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular +# dependency, and given that the user is not expected to run this macro, +# just rely on AC_PROG_CC. +AC_DEFUN([_AM_DEPENDENCIES], +[AC_REQUIRE([AM_SET_DEPDIR])dnl +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +AC_REQUIRE([AM_MAKE_INCLUDE])dnl +AC_REQUIRE([AM_DEP_TRACK])dnl + +m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], + [$1], [CXX], [depcc="$CXX" am_compiler_list=], + [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], + [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], + [$1], [UPC], [depcc="$UPC" am_compiler_list=], + [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], + [depcc="$$1" am_compiler_list=]) + +AC_CACHE_CHECK([dependency style of $depcc], + [am_cv_$1_dependencies_compiler_type], +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named 'D' -- because '-MD' means "put the output + # in D". + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_$1_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi + am__universal=false + m4_case([$1], [CC], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac], + [CXX], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac]) + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with + # Solaris 10 /bin/sh. + echo '/* dummy */' > sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with '-c' and '-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle '-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs. + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # After this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested. + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok '-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_$1_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_$1_dependencies_compiler_type=none +fi +]) +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +AM_CONDITIONAL([am__fastdep$1], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +]) + + +# AM_SET_DEPDIR +# ------------- +# Choose a directory name for dependency files. +# This macro is AC_REQUIREd in _AM_DEPENDENCIES. +AC_DEFUN([AM_SET_DEPDIR], +[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +]) + + +# AM_DEP_TRACK +# ------------ +AC_DEFUN([AM_DEP_TRACK], +[AC_ARG_ENABLE([dependency-tracking], [dnl +AS_HELP_STRING( + [--enable-dependency-tracking], + [do not reject slow dependency extractors]) +AS_HELP_STRING( + [--disable-dependency-tracking], + [speeds up one-time build])]) +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +AC_SUBST([AMDEPBACKSLASH])dnl +_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl +AC_SUBST([am__nodep])dnl +_AM_SUBST_NOTMAKE([am__nodep])dnl +]) + +# Generate code to set up dependency tracking. -*- Autoconf -*- + +# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + + +# _AM_OUTPUT_DEPENDENCY_COMMANDS +# ------------------------------ +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +[{ + # Older Autoconf quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named 'Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`AS_DIRNAME("$mf")` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running 'make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "$am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`AS_DIRNAME(["$file"])` + AS_MKDIR_P([$dirpart/$fdir]) + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} +])# _AM_OUTPUT_DEPENDENCY_COMMANDS + + +# AM_OUTPUT_DEPENDENCY_COMMANDS +# ----------------------------- +# This macro should only be invoked once -- use via AC_REQUIRE. +# +# This code is only required when automatic dependency tracking +# is enabled. FIXME. This creates each '.P' file that we will +# need in order to bootstrap the dependency handling code. +AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], +[AC_CONFIG_COMMANDS([depfiles], + [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], + [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) +]) + +# Do all the work for Automake. -*- Autoconf -*- + +# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This macro actually does too much. Some checks are only needed if +# your package does certain things. But this isn't really a big deal. + +dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. +m4_define([AC_PROG_CC], +m4_defn([AC_PROG_CC]) +[_AM_PROG_CC_C_O +]) + +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +# AM_INIT_AUTOMAKE([OPTIONS]) +# ----------------------------------------------- +# The call with PACKAGE and VERSION arguments is the old style +# call (pre autoconf-2.50), which is being phased out. PACKAGE +# and VERSION should now be passed to AC_INIT and removed from +# the call to AM_INIT_AUTOMAKE. +# We support both call styles for the transition. After +# the next Automake release, Autoconf can make the AC_INIT +# arguments mandatory, and then we can depend on a new Autoconf +# release and drop the old call support. +AC_DEFUN([AM_INIT_AUTOMAKE], +[AC_PREREQ([2.65])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[AC_DIAGNOSE([obsolete], + [$0: two- and three-arguments forms are deprecated.]) +m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. +m4_if( + m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), + [ok:ok],, + [m4_fatal([AC_INIT should be called with package and version arguments])])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) + AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) +AM_MISSING_PROG([AUTOCONF], [autoconf]) +AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) +AM_MISSING_PROG([AUTOHEADER], [autoheader]) +AM_MISSING_PROG([MAKEINFO], [makeinfo]) +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl +AC_REQUIRE([AC_PROG_MKDIR_P])dnl +# For better backward compatibility. To be removed once Automake 1.9.x +# dies out for good. For more background, see: +# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> +# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> +AC_SUBST([mkdir_p], ['$(MKDIR_P)']) +# We need awk for the "check" target (and possibly the TAP driver). The +# system "awk" is bad on some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES([CC])], + [m4_define([AC_PROG_CC], + m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES([CXX])], + [m4_define([AC_PROG_CXX], + m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES([OBJC])], + [m4_define([AC_PROG_OBJC], + m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], + [_AM_DEPENDENCIES([OBJCXX])], + [m4_define([AC_PROG_OBJCXX], + m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl +]) +AC_REQUIRE([AM_SILENT_RULES])dnl +dnl The testsuite driver may need to know about EXEEXT, so add the +dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This +dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. +AC_CONFIG_COMMANDS_PRE(dnl +[m4_provide_if([_AM_COMPILER_EXEEXT], + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl + +# POSIX will say in a future version that running "rm -f" with no argument +# is OK; and we want to be able to make that assumption in our Makefile +# recipes. So use an aggressive probe to check that the usage we want is +# actually supported "in the wild" to an acceptable degree. +# See automake bug#10828. +# To make any issue more visible, cause the running configure to be aborted +# by default if the 'rm' program in use doesn't match our expectations; the +# user can still override this though. +if rm -f && rm -fr && rm -rf; then : OK; else + cat >&2 <<'END' +Oops! + +Your 'rm' program seems unable to run without file operands specified +on the command line, even when the '-f' option is present. This is contrary +to the behaviour of most rm programs out there, and not conforming with +the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542> + +Please tell bug-automake@gnu.org about your system, including the value +of your $PATH and any error possibly output before this message. This +can help us improve future automake versions. + +END + if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then + echo 'Configuration will proceed anyway, since you have set the' >&2 + echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 + echo >&2 + else + cat >&2 <<'END' +Aborting the configuration process, to ensure you take notice of the issue. + +You can download and install GNU coreutils to get an 'rm' implementation +that behaves properly: <http://www.gnu.org/software/coreutils/>. + +If you want to complete the configuration process using your problematic +'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM +to "yes", and re-run configure. + +END + AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) + fi +fi +dnl The trailing newline in this macro's definition is deliberate, for +dnl backward compatibility and to allow trailing 'dnl'-style comments +dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. +]) + +dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not +dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further +dnl mangled by Autoconf and run in a shell conditional statement. +m4_define([_AC_COMPILER_EXEEXT], +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) + +# When config.status generates a header, we must update the stamp-h file. +# This file resides in the same directory as the config header +# that is generated. The stamp files are numbered to have different names. + +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +# loop where config.status creates the headers, so we can generate +# our stamp files there. +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +[# Compute $1's index in $config_headers. +_am_arg=$1 +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) + +# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +if test x"${install_sh+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi +AC_SUBST([install_sh])]) + +# Copyright (C) 2003-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# Check whether the underlying file-system supports filenames +# with a leading dot. For instance MS-DOS doesn't. +AC_DEFUN([AM_SET_LEADING_DOT], +[rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) + +# Add --enable-maintainer-mode option to configure. -*- Autoconf -*- +# From Jim Meyering + +# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_MAINTAINER_MODE([DEFAULT-MODE]) +# ---------------------------------- +# Control maintainer-specific portions of Makefiles. +# Default is to disable them, unless 'enable' is passed literally. +# For symmetry, 'disable' may be passed as well. Anyway, the user +# can override the default with the --enable/--disable switch. +AC_DEFUN([AM_MAINTAINER_MODE], +[m4_case(m4_default([$1], [disable]), + [enable], [m4_define([am_maintainer_other], [disable])], + [disable], [m4_define([am_maintainer_other], [enable])], + [m4_define([am_maintainer_other], [enable]) + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) +AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) + dnl maintainer-mode's default is 'disable' unless 'enable' is passed + AC_ARG_ENABLE([maintainer-mode], + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], + am_maintainer_other[ make rules and dependencies not useful + (and sometimes confusing) to the casual installer])], + [USE_MAINTAINER_MODE=$enableval], + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) + MAINT=$MAINTAINER_MODE_TRUE + AC_SUBST([MAINT])dnl +] +) + +# Check to see how 'make' treats includes. -*- Autoconf -*- + +# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_MAKE_INCLUDE() +# ----------------- +# Check to see how make treats includes. +AC_DEFUN([AM_MAKE_INCLUDE], +[am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +AC_MSG_CHECKING([for style of include used by $am_make]) +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from 'make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi +AC_SUBST([am__include]) +AC_SUBST([am__quote]) +AC_MSG_RESULT([$_am_result]) +rm -f confinc confmf +]) + +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +# Copyright (C) 1997-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_MISSING_PROG(NAME, PROGRAM) +# ------------------------------ +AC_DEFUN([AM_MISSING_PROG], +[AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) + +# AM_MISSING_HAS_RUN +# ------------------ +# Define MISSING if not defined so far and test if it is modern enough. +# If it is, set am_missing_run to use it, otherwise, to nothing. +AC_DEFUN([AM_MISSING_HAS_RUN], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([missing])dnl +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --is-lightweight"; then + am_missing_run="$MISSING " +else + am_missing_run= + AC_MSG_WARN(['missing' script is too old or missing]) +fi +]) + +# Helper functions for option handling. -*- Autoconf -*- + +# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +# _AM_SET_OPTION(NAME) +# -------------------- +# Set option NAME. Presently that only means defining a flag for this option. +AC_DEFUN([_AM_SET_OPTION], +[m4_define(_AM_MANGLE_OPTION([$1]), [1])]) + +# _AM_SET_OPTIONS(OPTIONS) +# ------------------------ +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +# ------------------------------------------- +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +AC_DEFUN([_AM_IF_OPTION], +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) + +# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_PROG_CC_C_O +# --------------- +# Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC +# to automatically call this. +AC_DEFUN([_AM_PROG_CC_C_O], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([compile])dnl +AC_LANG_PUSH([C])dnl +AC_CACHE_CHECK( + [whether $CC understands -c and -o together], + [am_cv_prog_cc_c_o], + [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) + # Make sure it works both with $CC and with simple cc. + # Following AC_PROG_CC_C_O, we do the test twice because some + # compilers refuse to overwrite an existing .o file with -o, + # though they will create one. + am_cv_prog_cc_c_o=yes + for am_i in 1 2; do + if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ + && test -f conftest2.$ac_objext; then + : OK + else + am_cv_prog_cc_c_o=no + break + fi + done + rm -f core conftest* + unset am_i]) +if test "$am_cv_prog_cc_c_o" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi +AC_LANG_POP([C])]) + +# For backward compatibility. +AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) + +# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_RUN_LOG(COMMAND) +# ------------------- +# Run COMMAND, save the exit status in ac_status, and log it. +# (This has been adapted from Autoconf's _AC_RUN_LOG macro.) +AC_DEFUN([AM_RUN_LOG], +[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD + ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + (exit $ac_status); }]) + +# Check to make sure that the build environment is sane. -*- Autoconf -*- + +# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_SANITY_CHECK +# --------------- +AC_DEFUN([AM_SANITY_CHECK], +[AC_MSG_CHECKING([whether build environment is sane]) +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[[\\\"\#\$\&\'\`$am_lf]]*) + AC_MSG_ERROR([unsafe absolute working directory name]);; +esac +case $srcdir in + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) + AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; +esac + +# Do 'set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + am_has_slept=no + for am_try in 1 2; do + echo "timestamp, slept: $am_has_slept" > conftest.file + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken + alias in your environment]) + fi + if test "$[2]" = conftest.file || test $am_try -eq 2; then + break + fi + # Just in case. + sleep 1 + am_has_slept=yes + done + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT([yes]) +# If we didn't sleep, we still need to ensure time stamps of config.status and +# generated files are strictly newer. +am_sleep_pid= +if grep 'slept: no' conftest.file >/dev/null 2>&1; then + ( sleep 1 ) & + am_sleep_pid=$! +fi +AC_CONFIG_COMMANDS_PRE( + [AC_MSG_CHECKING([that generated files are newer than configure]) + if test -n "$am_sleep_pid"; then + # Hide warnings about reused PIDs. + wait $am_sleep_pid 2>/dev/null + fi + AC_MSG_RESULT([done])]) +rm -f conftest.file +]) + +# Copyright (C) 2009-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_SILENT_RULES([DEFAULT]) +# -------------------------- +# Enable less verbose build rules; with the default set to DEFAULT +# ("yes" being less verbose, "no" or empty being verbose). +AC_DEFUN([AM_SILENT_RULES], +[AC_ARG_ENABLE([silent-rules], [dnl +AS_HELP_STRING( + [--enable-silent-rules], + [less verbose build output (undo: "make V=1")]) +AS_HELP_STRING( + [--disable-silent-rules], + [verbose build output (undo: "make V=0")])dnl +]) +case $enable_silent_rules in @%:@ ((( + yes) AM_DEFAULT_VERBOSITY=0;; + no) AM_DEFAULT_VERBOSITY=1;; + *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; +esac +dnl +dnl A few 'make' implementations (e.g., NonStop OS and NextStep) +dnl do not support nested variable expansions. +dnl See automake bug#9928 and bug#10237. +am_make=${MAKE-make} +AC_CACHE_CHECK([whether $am_make supports nested variables], + [am_cv_make_support_nested_variables], + [if AS_ECHO([['TRUE=$(BAR$(V)) +BAR0=false +BAR1=true +V=1 +am__doit: + @$(TRUE) +.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then + am_cv_make_support_nested_variables=yes +else + am_cv_make_support_nested_variables=no +fi]) +if test $am_cv_make_support_nested_variables = yes; then + dnl Using '$V' instead of '$(V)' breaks IRIX make. + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi +AC_SUBST([AM_V])dnl +AM_SUBST_NOTMAKE([AM_V])dnl +AC_SUBST([AM_DEFAULT_V])dnl +AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl +AM_BACKSLASH='\' +AC_SUBST([AM_BACKSLASH])dnl +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl +]) + +# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_INSTALL_STRIP +# --------------------- +# One issue with vendor 'install' (even GNU) is that you can't +# specify the program used to strip binaries. This is especially +# annoying in cross-compiling environments, where the build's strip +# is unlikely to handle the host's binaries. +# Fortunately install-sh will honor a STRIPPROG variable, so we +# always use install-sh in "make install-strip", and initialize +# STRIPPROG with the value of the STRIP variable (set by the user). +AC_DEFUN([AM_PROG_INSTALL_STRIP], +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using 'strip' when the user +# run "make install-strip". However 'strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the 'STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +# Copyright (C) 2006-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. +# This macro is traced by Automake. +AC_DEFUN([_AM_SUBST_NOTMAKE]) + +# AM_SUBST_NOTMAKE(VARIABLE) +# -------------------------- +# Public sister of _AM_SUBST_NOTMAKE. +AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + +# Check how to create a tarball. -*- Autoconf -*- + +# Copyright (C) 2004-2014 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of 'v7', 'ustar', or 'pax'. +# +# Substitute a variable $(am__tar) that is a command +# writing to stdout a FORMAT-tarball containing the directory +# $tardir. +# tardir=directory && $(am__tar) > result.tar +# +# Substitute a variable $(am__untar) that extract such +# a tarball read from stdin. +# $(am__untar) < result.tar +# +AC_DEFUN([_AM_PROG_TAR], +[# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AC_SUBST([AMTAR], ['$${TAR-tar}']) + +# We'll loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' + +m4_if([$1], [v7], + [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], + + [m4_case([$1], + [ustar], + [# The POSIX 1988 'ustar' format is defined with fixed-size fields. + # There is notably a 21 bits limit for the UID and the GID. In fact, + # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 + # and bug#13588). + am_max_uid=2097151 # 2^21 - 1 + am_max_gid=$am_max_uid + # The $UID and $GID variables are not portable, so we need to resort + # to the POSIX-mandated id(1) utility. Errors in the 'id' calls + # below are definitely unexpected, so allow the users to see them + # (that is, avoid stderr redirection). + am_uid=`id -u || echo unknown` + am_gid=`id -g || echo unknown` + AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) + if test $am_uid -le $am_max_uid; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + _am_tools=none + fi + AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) + if test $am_gid -le $am_max_gid; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + _am_tools=none + fi], + + [pax], + [], + + [m4_fatal([Unknown tar format])]) + + AC_MSG_CHECKING([how to create a $1 tar archive]) + + # Go ahead even if we have the value already cached. We do so because we + # need to set the values for the 'am__tar' and 'am__untar' variables. + _am_tools=${am_cv_prog_tar_$1-$_am_tools} + + for _am_tool in $_am_tools; do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works. + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar <conftest.tar]) + AM_RUN_LOG([cat conftest.dir/file]) + grep GrepMe conftest.dir/file >/dev/null 2>&1 && break + fi + done + rm -rf conftest.dir + + AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) + AC_MSG_RESULT([$am_cv_prog_tar_$1])]) + +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) # _AM_PROG_TAR + +m4_include([m4/gcov.m4]) +m4_include([m4/gtk-doc.m4]) +m4_include([m4/libiconv.m4]) +m4_include([m4/libm.m4]) +m4_include([m4/librecode.m4]) +m4_include([m4/libtool.m4]) +m4_include([m4/localias.m4]) +m4_include([m4/ltoptions.m4]) +m4_include([m4/ltsugar.m4]) +m4_include([m4/ltversion.m4]) +m4_include([m4/lt~obsolete.m4]) +m4_include([m4/tools.m4]) +m4_include([m4/typevar.m4]) diff --git a/wlx/wayland_qt_base/build/enca-1.19/autogen.sh b/wlx/wayland_qt_base/build/enca-1.19/autogen.sh new file mode 100755 index 0000000..9741811 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/autogen.sh @@ -0,0 +1,184 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. +# Tweaked by David Necas (Yeti) <yeti@physics.muni.cz> from various other +# autogen.sh's. This file is in public domain. + +DIE=0 + +PROJECT=Enca +ACLOCAL_FLAGS="-I m4" + +(autoconf --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**ERROR**: You must have \`autoconf' installed to re-generate" + echo "all the $PROJECT Makefiles." + echo "Download the appropriate package for your distribution," + echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/." + DIE=1 + NO_AUTOCONF=yes +} + +(grep "^AM_PROG_LIBTOOL" ./configure.ac >/dev/null) && { + (libtoolize --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**Error**: You must have \`libtoolize' installed." + echo "Get ftp://ftp.gnu.org/pub/gnu/libtool-1.4.tar.gz" + echo "(or a newer version if it is available)" + DIE=1 + NO_LIBTOOL=yes + } +} + +(automake --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**ERROR**: You must have \`automake' installed to re-generate" + echo "all the $PROJECT Makefiles." + echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.8.3.tar.gz" + echo "(or a newer version if it is available) and read DEVELOP.md." + DIE=1 + NO_AUTOMAKE=yes +} + +version_check ( ) { + if [ "x$1" = "x" ] ; then + echo "INTERNAL ERROR: version_check was not provided a minimum version" + exit 1 + fi + _min="$1" + if [ "x$2" = "x" ] ; then + echo "INTERNAL ERROR: version check was not provided a comparison version" + exit 1 + fi + _cur="$2" + + # needed to handle versions like 1.10 and 1.4-p6 + _min="`echo ${_min}. | sed 's/[^0-9]/./g' | sed 's/\.\././g'`" + _cur="`echo ${_cur}. | sed 's/[^0-9]/./g' | sed 's/\.\././g'`" + + _min_major="`echo $_min | cut -d. -f1`" + _min_minor="`echo $_min | cut -d. -f2`" + _min_patch="`echo $_min | cut -d. -f3`" + + _cur_major="`echo $_cur | cut -d. -f1`" + _cur_minor="`echo $_cur | cut -d. -f2`" + _cur_patch="`echo $_cur | cut -d. -f3`" + + if [ "x$_min_major" = "x" ] ; then + _min_major=0 + fi + if [ "x$_min_minor" = "x" ] ; then + _min_minor=0 + fi + if [ "x$_min_patch" = "x" ] ; then + _min_patch=0 + fi + if [ "x$_cur_minor" = "x" ] ; then + _cur_major=0 + fi + if [ "x$_cur_minor" = "x" ] ; then + _cur_minor=0 + fi + if [ "x$_cur_patch" = "x" ] ; then + _cur_patch=0 + fi + + if [ $_min_major -lt $_cur_major ] ; then + return 0 + elif [ $_min_major -eq $_cur_major ] ; then + if [ $_min_minor -lt $_cur_minor ] ; then + return 0 + elif [ $_min_minor -eq $_cur_minor ] ; then + if [ $_min_patch -lt $_cur_patch ] ; then + return 0 + elif [ $_min_patch -eq $_cur_patch ] ; then + return 0 + fi + fi + fi + return 1 +} + + +# The world is cruel. +if test -z "$NO_AUTOCONF"; then + AC_VERSION=`autoconf --version | sed -e '2,$ d' -e 's/ *([^()]*)$//' -e 's/.* \(.*\)/\1/' -e 's/-p[0-9]\+//'` + if ! version_check "2.52" "$AC_VERSION" ; then + echo + echo "**ERROR**: You need at least autoconf-2.52 installed to re-generate" + echo "all the $PROJECT Makefiles." + echo "Download the appropriate package for your distribution," + echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/." + DIE=1 + else + echo "Autoconf $AC_VERSION: OK" + fi +fi + +if test -z "$NO_AUTOMAKE"; then + AM_VERSION=`automake --version | sed -e '2,$ d' -e 's/ *([^()]*)$//' -e 's/.* \(.*\)/\1/' -e 's/-p[0-9]\+//'` + if ! version_check "1.8" "$AM_VERSION" ; then + echo + echo "**ERROR**: You need at least automake-1.8 installed to re-generate" + echo "all the $PROJECT Makefiles." + echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.8.3.tar.gz" + echo "(or a newer version if it is available) and read DEVELOP.md." + DIE=1 + else + echo "Automake $AM_VERSION: OK" + fi +fi + +# if no automake, don't bother testing for aclocal +test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**ERROR**: Missing \`aclocal'. The version of \`automake'" + echo "installed doesn't appear recent enough." + echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.8.3.tar.gz" + echo "(or a newer version if it is available) and read DEVELOP.md." + DIE=1 +} + +if test -z "$NO_LIBTOOL"; then + LT_VERSION=`libtoolize --version | sed -e '2,$ d' -e 's/ *([^()]*)$//' -e 's/.* \(.*\)/\1/' -e 's/-p[0-9]\+//' -e 's/^[a-zA-z]*-//'` + if ! version_check "1.4" "$LT_VERSION" ; then + echo + echo "**ERROR**: You need at least libtool-1.4 installed to re-generate" + echo "all the $PROJECT Makefiles." + echo "Get ftp://ftp.gnu.org/pub/gnu/libtool-1.4.tar.gz" + echo "(or a newer version if it is available) and read DEVELOP.md." + DIE=1 + else + echo "Libtool $LT_VERSION: OK" + fi +fi + +if test "$DIE" -eq 1; then + exit 1 +fi + +case $CC in +*xlc | *xlc\ * | *lcc | *lcc\ * ) + am_opt=--include-deps;; +esac + +dir=. +echo processing $dir +(cd $dir && \ + libtoolize --force --copy && \ + aclocal $ACLOCAL_FLAGS && \ + autoheader && \ + automake --add-missing $am_opt && \ + autoconf) || { + echo "**ERROR**: Re-generating failed. You are allowed to shoot $PROJECT maintainer." + echo "(BTW, why are you re-generating everything? Have you read DEVELOP.md?)" + exit 1 + } + +if test -z "$*"; then + echo "**Warning**: I am going to run \`configure' with no arguments." + echo "If you wish to pass any to it, please specify them on the" + echo "\`$0' command line." + echo +fi + +./configure "$@" diff --git a/wlx/wayland_qt_base/build/enca-1.19/compile b/wlx/wayland_qt_base/build/enca-1.19/compile new file mode 100755 index 0000000..a85b723 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/compile @@ -0,0 +1,347 @@ +#! /bin/sh +# Wrapper for compilers which do not understand '-c -o'. + +scriptversion=2012-10-14.11; # UTC + +# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Written by Tom Tromey <tromey@cygnus.com>. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# This file is maintained in Automake, please report +# bugs to <bug-automake@gnu.org> or send patches to +# <automake-patches@gnu.org>. + +nl=' +' + +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent tools from complaining about whitespace usage. +IFS=" "" $nl" + +file_conv= + +# func_file_conv build_file lazy +# Convert a $build file to $host form and store it in $file +# Currently only supports Windows hosts. If the determined conversion +# type is listed in (the comma separated) LAZY, no conversion will +# take place. +func_file_conv () +{ + file=$1 + case $file in + / | /[!/]*) # absolute file, and not a UNC file + if test -z "$file_conv"; then + # lazily determine how to convert abs files + case `uname -s` in + MINGW*) + file_conv=mingw + ;; + CYGWIN*) + file_conv=cygwin + ;; + *) + file_conv=wine + ;; + esac + fi + case $file_conv/,$2, in + *,$file_conv,*) + ;; + mingw/*) + file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` + ;; + cygwin/*) + file=`cygpath -m "$file" || echo "$file"` + ;; + wine/*) + file=`winepath -w "$file" || echo "$file"` + ;; + esac + ;; + esac +} + +# func_cl_dashL linkdir +# Make cl look for libraries in LINKDIR +func_cl_dashL () +{ + func_file_conv "$1" + if test -z "$lib_path"; then + lib_path=$file + else + lib_path="$lib_path;$file" + fi + linker_opts="$linker_opts -LIBPATH:$file" +} + +# func_cl_dashl library +# Do a library search-path lookup for cl +func_cl_dashl () +{ + lib=$1 + found=no + save_IFS=$IFS + IFS=';' + for dir in $lib_path $LIB + do + IFS=$save_IFS + if $shared && test -f "$dir/$lib.dll.lib"; then + found=yes + lib=$dir/$lib.dll.lib + break + fi + if test -f "$dir/$lib.lib"; then + found=yes + lib=$dir/$lib.lib + break + fi + if test -f "$dir/lib$lib.a"; then + found=yes + lib=$dir/lib$lib.a + break + fi + done + IFS=$save_IFS + + if test "$found" != yes; then + lib=$lib.lib + fi +} + +# func_cl_wrapper cl arg... +# Adjust compile command to suit cl +func_cl_wrapper () +{ + # Assume a capable shell + lib_path= + shared=: + linker_opts= + for arg + do + if test -n "$eat"; then + eat= + else + case $1 in + -o) + # configure might choose to run compile as 'compile cc -o foo foo.c'. + eat=1 + case $2 in + *.o | *.[oO][bB][jJ]) + func_file_conv "$2" + set x "$@" -Fo"$file" + shift + ;; + *) + func_file_conv "$2" + set x "$@" -Fe"$file" + shift + ;; + esac + ;; + -I) + eat=1 + func_file_conv "$2" mingw + set x "$@" -I"$file" + shift + ;; + -I*) + func_file_conv "${1#-I}" mingw + set x "$@" -I"$file" + shift + ;; + -l) + eat=1 + func_cl_dashl "$2" + set x "$@" "$lib" + shift + ;; + -l*) + func_cl_dashl "${1#-l}" + set x "$@" "$lib" + shift + ;; + -L) + eat=1 + func_cl_dashL "$2" + ;; + -L*) + func_cl_dashL "${1#-L}" + ;; + -static) + shared=false + ;; + -Wl,*) + arg=${1#-Wl,} + save_ifs="$IFS"; IFS=',' + for flag in $arg; do + IFS="$save_ifs" + linker_opts="$linker_opts $flag" + done + IFS="$save_ifs" + ;; + -Xlinker) + eat=1 + linker_opts="$linker_opts $2" + ;; + -*) + set x "$@" "$1" + shift + ;; + *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) + func_file_conv "$1" + set x "$@" -Tp"$file" + shift + ;; + *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) + func_file_conv "$1" mingw + set x "$@" "$file" + shift + ;; + *) + set x "$@" "$1" + shift + ;; + esac + fi + shift + done + if test -n "$linker_opts"; then + linker_opts="-link$linker_opts" + fi + exec "$@" $linker_opts + exit 1 +} + +eat= + +case $1 in + '') + echo "$0: No command. Try '$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: compile [--help] [--version] PROGRAM [ARGS] + +Wrapper for compilers which do not understand '-c -o'. +Remove '-o dest.o' from ARGS, run PROGRAM with the remaining +arguments, and rename the output as expected. + +If you are trying to build a whole package this is not the +right script to run: please start by reading the file 'INSTALL'. + +Report bugs to <bug-automake@gnu.org>. +EOF + exit $? + ;; + -v | --v*) + echo "compile $scriptversion" + exit $? + ;; + cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) + func_cl_wrapper "$@" # Doesn't return... + ;; +esac + +ofile= +cfile= + +for arg +do + if test -n "$eat"; then + eat= + else + case $1 in + -o) + # configure might choose to run compile as 'compile cc -o foo foo.c'. + # So we strip '-o arg' only if arg is an object. + eat=1 + case $2 in + *.o | *.obj) + ofile=$2 + ;; + *) + set x "$@" -o "$2" + shift + ;; + esac + ;; + *.c) + cfile=$1 + set x "$@" "$1" + shift + ;; + *) + set x "$@" "$1" + shift + ;; + esac + fi + shift +done + +if test -z "$ofile" || test -z "$cfile"; then + # If no '-o' option was seen then we might have been invoked from a + # pattern rule where we don't need one. That is ok -- this is a + # normal compilation that the losing compiler can handle. If no + # '.c' file was seen then we are probably linking. That is also + # ok. + exec "$@" +fi + +# Name of file we expect compiler to create. +cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` + +# Create the lock directory. +# Note: use '[/\\:.-]' here to ensure that we don't use the same name +# that we are using for the .o file. Also, base the name on the expected +# object file name, since that is what matters with a parallel build. +lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d +while true; do + if mkdir "$lockdir" >/dev/null 2>&1; then + break + fi + sleep 1 +done +# FIXME: race condition here if user kills between mkdir and trap. +trap "rmdir '$lockdir'; exit 1" 1 2 15 + +# Run the compile. +"$@" +ret=$? + +if test -f "$cofile"; then + test "$cofile" = "$ofile" || mv "$cofile" "$ofile" +elif test -f "${cofile}bj"; then + test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" +fi + +rmdir "$lockdir" +exit $ret + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/wlx/wayland_qt_base/build/enca-1.19/config.guess b/wlx/wayland_qt_base/build/enca-1.19/config.guess new file mode 100755 index 0000000..1659250 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/config.guess @@ -0,0 +1,1441 @@ +#! /bin/sh +# Attempt to guess a canonical system name. +# Copyright 1992-2015 Free Software Foundation, Inc. + +timestamp='2015-08-20' + +# This file is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). +# +# Originally written by Per Bothner; maintained since 2000 by Ben Elliston. +# +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD +# +# Please send patches to <config-patches@gnu.org>. + + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to <config-patches@gnu.org>." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright 1992-2015 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; + for c in cc gcc c89 c99 ; do + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ; set_cc_for_build= ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +case "${UNAME_SYSTEM}" in +Linux|GNU|GNU/*) + # If the system lacks a compiler, then just pick glibc. + # We could probably try harder. + LIBC=gnu + + eval $set_cc_for_build + cat <<-EOF > $dummy.c + #include <features.h> + #if defined(__UCLIBC__) + LIBC=uclibc + #elif defined(__dietlibc__) + LIBC=dietlibc + #else + LIBC=gnu + #endif + EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` + ;; +esac + +# Note: order is significant - the case branches are not exclusive. + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ + /sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || \ + echo unknown)` + case "${UNAME_MACHINE_ARCH}" in + armeb) machine=armeb-unknown ;; + arm*) machine=arm-unknown ;; + sh3el) machine=shl-unknown ;; + sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; + earmv*) + arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'` + endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'` + machine=${arch}${endian}-unknown + ;; + *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + esac + # The Operating System including object format, if it has switched + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|earm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ELF__ + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # Determine ABI tags. + case "${UNAME_MACHINE_ARCH}" in + earm*) + expr='s/^earmv[0-9]/-eabi/;s/eb$//' + abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"` + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}${abi}" + exit ;; + *:Bitrig:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} + exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + exit ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit ;; + *:SolidBSD:*:*) + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; + macppc:MirBSD:*:*) + echo powerpc-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:Sortix:*:*) + echo ${UNAME_MACHINE}-unknown-sortix + exit ;; + alpha:OSF1:*:*) + case $UNAME_RELEASE in + *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + # Reset EXIT trap before exiting to avoid spurious non-zero exit code. + exitcode=$? + trap '' 0 + exit $exitcode ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit ;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos + exit ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-morphos + exit ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit ;; + arm*:riscos:*:*|arm*:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit ;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit ;; + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7; exit ;; + esac ;; + s390x:SunOS:*:*) + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux${UNAME_RELEASE} + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval $set_cc_for_build + SUN_ARCH="i386" + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH="x86_64" + fi + fi + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + exit ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} + exit ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos${UNAME_RELEASE} + ;; + sun4) + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac + exit ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} + exit ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} + exit ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} + exit ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} + exit ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} + exit ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c +#ifdef __cplusplus +#include <stdio.h> /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && + { echo "$SYSTEM_NAME"; exit; } + echo mips-mips-riscos${UNAME_RELEASE} + exit ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] + then + echo m88k-dg-dgux${UNAME_RELEASE} + else + echo m88k-dg-dguxbcs${UNAME_RELEASE} + fi + else + echo i586-dg-dgux${UNAME_RELEASE} + fi + exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + exit ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + exit ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include <sys/systemcfg.h> + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit ;; + *:AIX:*:[4567]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/lslpp ] ; then + IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | + awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} + exit ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 + exit ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + exit ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + + #define _HPUX_SOURCE + #include <stdlib.h> + #include <unistd.h> + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + eval $set_cc_for_build + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + grep -q __LP64__ + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} + exit ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} + exit ;; + 3050*:HI-UX:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include <unistd.h> + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + echo unknown-hitachi-hiuxwe2 + exit ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd + exit ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf + exit ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi + exit ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:FreeBSD:*:*) + UNAME_PROCESSOR=`/usr/bin/uname -p` + case ${UNAME_PROCESSOR} in + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) + echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; + *:MINGW64*:*) + echo ${UNAME_MACHINE}-pc-mingw64 + exit ;; + *:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; + *:MSYS*:*) + echo ${UNAME_MACHINE}-pc-msys + exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; + *:Interix*:*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + authenticamd | genuineintel | EM64T) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks + exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + *:GNU:*:*) + # the GNU system + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + exit ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} + exit ;; + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit ;; + aarch64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + aarch64_be:Linux:*:*) + UNAME_MACHINE=aarch64_be + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="gnulibc1" ; fi + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + arc:Linux:*:* | arceb:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + arm*:Linux:*:*) + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + else + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi + else + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf + fi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + cris:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-${LIBC} + exit ;; + crisv32:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-${LIBC} + exit ;; + e2k:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + frv:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + hexagon:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + i*86:Linux:*:*) + echo ${UNAME_MACHINE}-pc-linux-${LIBC} + exit ;; + ia64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + m68*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + mips:Linux:*:* | mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=${UNAME_MACHINE}el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=${UNAME_MACHINE} + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + ;; + openrisc*:Linux:*:*) + echo or1k-unknown-linux-${LIBC} + exit ;; + or32:Linux:*:* | or1k*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-${LIBC} + exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-${LIBC} + exit ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; + PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; + *) echo hppa-unknown-linux-${LIBC} ;; + esac + exit ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-${LIBC} + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-${LIBC} + exit ;; + ppc64le:Linux:*:*) + echo powerpc64le-unknown-linux-${LIBC} + exit ;; + ppcle:Linux:*:*) + echo powerpcle-unknown-linux-${LIBC} + exit ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo ${UNAME_MACHINE}-ibm-linux-${LIBC} + exit ;; + sh64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + tile*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-${LIBC} + exit ;; + x86_64:Linux:*:*) + echo ${UNAME_MACHINE}-pc-linux-${LIBC} + exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit ;; + i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + exit ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` + echo ${UNAME_MACHINE}-pc-isc$UNAME_REL + elif /bin/uname -X 2>/dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp + exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi + exit ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} + exit ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} + exit ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} + exit ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) + echo powerpc-unknown-lynxos${UNAME_RELEASE} + exit ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} + exit ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo ${UNAME_MACHINE}-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says <Richard.M.Bartel@ccMail.Census.GOV> + echo i586-unisys-sysv4 + exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes <hewes@openmarket.com>. + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} + exit ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; + x86_64:Haiku:*:*) + echo x86_64-unknown-haiku + exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} + exit ;; + SX-6:SUPER-UX:*:*) + echo sx6-nec-superux${UNAME_RELEASE} + exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Darwin:*:*) + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + eval $set_cc_for_build + if test "$UNAME_PROCESSOR" = unknown ; then + UNAME_PROCESSOR=powerpc + fi + if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + case $UNAME_PROCESSOR in + i386) UNAME_PROCESSOR=x86_64 ;; + powerpc) UNAME_PROCESSOR=powerpc64 ;; + esac + fi + fi + elif test "$UNAME_PROCESSOR" = i386 ; then + # Avoid executing cc on OS X 10.9, as it ships with a stub + # that puts up a graphical alert prompting to install + # developer tools. Any system running Mac OS X 10.7 or + # later (Darwin 11 and later) is required to have a 64-bit + # processor. This is not true of the ARM version of Darwin + # that Apple uses in portable devices. + UNAME_PROCESSOR=x86_64 + fi + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + exit ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = "x86"; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + exit ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; + NEO-?:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk${UNAME_RELEASE} + exit ;; + NSE-*:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk${UNAME_RELEASE} + exit ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit ;; + DS/*:UNIX_System_V:*:*) + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + exit ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) + echo mips-sei-seiux${UNAME_RELEASE} + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit ;; + i*86:skyos:*:*) + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + exit ;; + i*86:rdos:*:*) + echo ${UNAME_MACHINE}-pc-rdos + exit ;; + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; + x86_64:VMkernel:*:*) + echo ${UNAME_MACHINE}-unknown-esx + exit ;; +esac + +cat >&2 <<EOF +$0: unable to guess system type + +This script, last modified $timestamp, has failed to recognize +the operating system you are using. It is advised that you +download the most up to date version of the config scripts from + + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD +and + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + +If the version you run ($0) is already up to date, please +send the following data and any information you think might be +pertinent to <config-patches@gnu.org> in order to provide the needed +information to handle your system. + +config.guess timestamp = $timestamp + +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = ${UNAME_MACHINE} +UNAME_RELEASE = ${UNAME_RELEASE} +UNAME_SYSTEM = ${UNAME_SYSTEM} +UNAME_VERSION = ${UNAME_VERSION} +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/wlx/wayland_qt_base/build/enca-1.19/config.h b/wlx/wayland_qt_base/build/enca-1.19/config.h new file mode 100644 index 0000000..b41bc95 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/config.h @@ -0,0 +1,266 @@ +/* config.h. Generated from config.h.in by configure. */ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define to path to the cstocs recoder. */ +/* #undef CSTOCS_PROG */ + +/* Define to default converter list. */ +#define DEFAULT_CONVERTER_LIST "built-in,iconv" + +/* Define to default external converter program. */ +#define DEFAULT_EXTERNAL_CONVERTER "recode" + +/* Define to enable external converter programs. */ +#define ENABLE_EXTERNAL 1 + +/* Define to 1 if you have the declaration of `LC_MESSAGES', and to 0 if you + don't. */ +#define HAVE_DECL_LC_MESSAGES 1 + +/* Define to 1 if you have the <dlfcn.h> header file. */ +#define HAVE_DLFCN_H 1 + +/* Define to 1 if you have the <errno.h> header file. */ +#define HAVE_ERRNO_H 1 + +/* Define to 1 if you have the <fcntl.h> header file. */ +#define HAVE_FCNTL_H 1 + +/* Define to 1 if you have the `fork' function. */ +#define HAVE_FORK 1 + +/* Define to 1 if you have the `ftruncate' function. */ +#define HAVE_FTRUNCATE 1 + +/* Define to 1 if you have the <getopt.h> header file. */ +#define HAVE_GETOPT_H 1 + +/* Define to 1 if you have the `getopt_long' function. */ +#define HAVE_GETOPT_LONG 1 + +/* Define to 1 if you have the `gettimeofday' function. */ +#define HAVE_GETTIMEOFDAY 1 + +/* Define if you have the UNIX98 iconv functions. */ +#define HAVE_GOOD_ICONV 1 + +/* Define if you have the iconv() function and it works. */ +#define HAVE_ICONV 1 + +/* Define to 1 if you have the <inttypes.h> header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the `isatty' function. */ +#define HAVE_ISATTY 1 + +/* Define to 1 if you have the <langinfo.h> header file. */ +#define HAVE_LANGINFO_H 1 + +/* Define if you have the recode library (-lrecode). */ +/* #undef HAVE_LIBRECODE */ + +/* Define to 1 if you have the <limits.h> header file. */ +#define HAVE_LIMITS_H 1 + +/* Define if you have locale.alias file. */ +#define HAVE_LOCALE_ALIAS 1 + +/* Define to 1 if you have the <locale.h> header file. */ +#define HAVE_LOCALE_H 1 + +/* Define to 1 if you have the <memory.h> header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the `nl_langinfo' function. */ +#define HAVE_NL_LANGINFO 1 + +/* Define if you have program_invocation_short_name variable. */ +#define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 + +/* Define to 1 if you have the `random' function. */ +#define HAVE_RANDOM 1 + +/* Define to 1 if you have the `realpath' function. */ +#define HAVE_REALPATH 1 + +/* Define to 1 if you have the `setlocale' function. */ +#define HAVE_SETLOCALE 1 + +/* Define to 1 if stdbool.h conforms to C99. */ +/* #undef HAVE_STDBOOL_H */ + +/* Define to 1 if you have the <stdint.h> header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the <stdlib.h> header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the `stpcpy' function. */ +#define HAVE_STPCPY 1 + +/* Define to 1 if you have the <strings.h> header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the <string.h> header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the `strstr' function. */ +#define HAVE_STRSTR 1 + +/* Define to 1 if you have the <sys/stat.h> header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the <sys/time.h> header file. */ +#define HAVE_SYS_TIME_H 1 + +/* Define to 1 if you have the <sys/types.h> header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the <sys/wait.h> header file. */ +#define HAVE_SYS_WAIT_H 1 + +/* Define to 1 if you have the <time.h> header file. */ +#define HAVE_TIME_H 1 + +/* Define to 1 if you have the `ttyname' function. */ +#define HAVE_TTYNAME 1 + +/* Define to 1 if you have the <unistd.h> header file. */ +#define HAVE_UNISTD_H 1 + +/* Define to 1 if you have the `vfork' function. */ +#define HAVE_VFORK 1 + +/* Define to 1 if you have the <vfork.h> header file. */ +/* #undef HAVE_VFORK_H */ + +/* Define to 1 if you have the `wordexp' function. */ +#define HAVE_WORDEXP 1 + +/* Define to 1 if you have the <wordexp.h> header file. */ +#define HAVE_WORDEXP_H 1 + +/* Define to 1 if `fork' works. */ +#define HAVE_WORKING_FORK 1 + +/* Define to 1 if `vfork' works. */ +#define HAVE_WORKING_VFORK 1 + +/* Define to 1 if the system has the type `_Bool'. */ +#define HAVE__BOOL 1 + +/* Define as const if the declaration of iconv() needs const. */ +#define ICONV_CONST + +/* Define if iconv is transitive. */ +#define ICONV_IS_TRANSITIVE 1 + +/* Define to the path to locale.alias file. */ +#define LOCALE_ALIAS_PATH "/usr/share/locale/locale.alias" + +/* Define to the sub-directory where libtool stores uninstalled libraries. */ +#define LT_OBJDIR ".libs/" + +/* Define to path to the map recoder. */ +/* #undef MAP_PROG */ + +/* Name of package */ +#define PACKAGE "enca" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "Enca" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "Enca 1.19" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "enca" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "1.19" + +/* Define to path to the piconv recoder. */ +#define PICONV_PROG "/usr/bin/core_perl/piconv" + +/* Define to path to the recode recoder. */ +#define RECODE_PROG "/usr/bin/recode" + +/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */ +/* #undef STAT_MACROS_BROKEN */ + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ +#define TIME_WITH_SYS_TIME 1 + +/* Define to path to the umap recoder. */ +/* #undef UMAP_PROG */ + +/* Enable extensions on AIX 3, Interix. */ +#ifndef _ALL_SOURCE +# define _ALL_SOURCE 1 +#endif +/* Enable GNU extensions on systems that have them. */ +#ifndef _GNU_SOURCE +# define _GNU_SOURCE 1 +#endif +/* Enable threading extensions on Solaris. */ +#ifndef _POSIX_PTHREAD_SEMANTICS +# define _POSIX_PTHREAD_SEMANTICS 1 +#endif +/* Enable extensions on HP NonStop. */ +#ifndef _TANDEM_SOURCE +# define _TANDEM_SOURCE 1 +#endif +/* Enable general extensions on Solaris. */ +#ifndef __EXTENSIONS__ +# define __EXTENSIONS__ 1 +#endif + + +/* Version number of package */ +#define VERSION "1.19" + +/* Define to 1 if on MINIX. */ +/* #undef _MINIX */ + +/* Define to 2 if the system does not provide POSIX.1 features except with + this defined. */ +/* #undef _POSIX_1_SOURCE */ + +/* Define to 1 if you need to in order for `stat' and other things to work. */ +/* #undef _POSIX_SOURCE */ + +/* Define to empty if `const' does not conform to ANSI C. */ +/* #undef const */ + +/* Define to `int' if <sys/types.h> doesn't define. */ +/* #undef gid_t */ + +/* Define to `int' if <sys/types.h> does not define. */ +/* #undef mode_t */ + +/* Define to `long int' if <sys/types.h> does not define. */ +/* #undef off_t */ + +/* Define to `int' if <sys/types.h> does not define. */ +/* #undef pid_t */ + +/* Define to `unsigned int' if <sys/types.h> does not define. */ +/* #undef size_t */ + +/* Define to `int' if <sys/types.h> does not define. */ +/* #undef ssize_t */ + +/* Define to `int' if <sys/types.h> doesn't define. */ +/* #undef uid_t */ + +/* Define as `fork' if `vfork' does not work. */ +/* #undef vfork */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/config.h.in b/wlx/wayland_qt_base/build/enca-1.19/config.h.in new file mode 100644 index 0000000..13cba75 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/config.h.in @@ -0,0 +1,265 @@ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define to path to the cstocs recoder. */ +#undef CSTOCS_PROG + +/* Define to default converter list. */ +#undef DEFAULT_CONVERTER_LIST + +/* Define to default external converter program. */ +#undef DEFAULT_EXTERNAL_CONVERTER + +/* Define to enable external converter programs. */ +#undef ENABLE_EXTERNAL + +/* Define to 1 if you have the declaration of `LC_MESSAGES', and to 0 if you + don't. */ +#undef HAVE_DECL_LC_MESSAGES + +/* Define to 1 if you have the <dlfcn.h> header file. */ +#undef HAVE_DLFCN_H + +/* Define to 1 if you have the <errno.h> header file. */ +#undef HAVE_ERRNO_H + +/* Define to 1 if you have the <fcntl.h> header file. */ +#undef HAVE_FCNTL_H + +/* Define to 1 if you have the `fork' function. */ +#undef HAVE_FORK + +/* Define to 1 if you have the `ftruncate' function. */ +#undef HAVE_FTRUNCATE + +/* Define to 1 if you have the <getopt.h> header file. */ +#undef HAVE_GETOPT_H + +/* Define to 1 if you have the `getopt_long' function. */ +#undef HAVE_GETOPT_LONG + +/* Define to 1 if you have the `gettimeofday' function. */ +#undef HAVE_GETTIMEOFDAY + +/* Define if you have the UNIX98 iconv functions. */ +#undef HAVE_GOOD_ICONV + +/* Define if you have the iconv() function and it works. */ +#undef HAVE_ICONV + +/* Define to 1 if you have the <inttypes.h> header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the `isatty' function. */ +#undef HAVE_ISATTY + +/* Define to 1 if you have the <langinfo.h> header file. */ +#undef HAVE_LANGINFO_H + +/* Define if you have the recode library (-lrecode). */ +#undef HAVE_LIBRECODE + +/* Define to 1 if you have the <limits.h> header file. */ +#undef HAVE_LIMITS_H + +/* Define if you have locale.alias file. */ +#undef HAVE_LOCALE_ALIAS + +/* Define to 1 if you have the <locale.h> header file. */ +#undef HAVE_LOCALE_H + +/* Define to 1 if you have the <memory.h> header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if you have the `nl_langinfo' function. */ +#undef HAVE_NL_LANGINFO + +/* Define if you have program_invocation_short_name variable. */ +#undef HAVE_PROGRAM_INVOCATION_SHORT_NAME + +/* Define to 1 if you have the `random' function. */ +#undef HAVE_RANDOM + +/* Define to 1 if you have the `realpath' function. */ +#undef HAVE_REALPATH + +/* Define to 1 if you have the `setlocale' function. */ +#undef HAVE_SETLOCALE + +/* Define to 1 if stdbool.h conforms to C99. */ +#undef HAVE_STDBOOL_H + +/* Define to 1 if you have the <stdint.h> header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the <stdlib.h> header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the `stpcpy' function. */ +#undef HAVE_STPCPY + +/* Define to 1 if you have the <strings.h> header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the <string.h> header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the `strstr' function. */ +#undef HAVE_STRSTR + +/* Define to 1 if you have the <sys/stat.h> header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the <sys/time.h> header file. */ +#undef HAVE_SYS_TIME_H + +/* Define to 1 if you have the <sys/types.h> header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the <sys/wait.h> header file. */ +#undef HAVE_SYS_WAIT_H + +/* Define to 1 if you have the <time.h> header file. */ +#undef HAVE_TIME_H + +/* Define to 1 if you have the `ttyname' function. */ +#undef HAVE_TTYNAME + +/* Define to 1 if you have the <unistd.h> header file. */ +#undef HAVE_UNISTD_H + +/* Define to 1 if you have the `vfork' function. */ +#undef HAVE_VFORK + +/* Define to 1 if you have the <vfork.h> header file. */ +#undef HAVE_VFORK_H + +/* Define to 1 if you have the `wordexp' function. */ +#undef HAVE_WORDEXP + +/* Define to 1 if you have the <wordexp.h> header file. */ +#undef HAVE_WORDEXP_H + +/* Define to 1 if `fork' works. */ +#undef HAVE_WORKING_FORK + +/* Define to 1 if `vfork' works. */ +#undef HAVE_WORKING_VFORK + +/* Define to 1 if the system has the type `_Bool'. */ +#undef HAVE__BOOL + +/* Define as const if the declaration of iconv() needs const. */ +#undef ICONV_CONST + +/* Define if iconv is transitive. */ +#undef ICONV_IS_TRANSITIVE + +/* Define to the path to locale.alias file. */ +#undef LOCALE_ALIAS_PATH + +/* Define to the sub-directory where libtool stores uninstalled libraries. */ +#undef LT_OBJDIR + +/* Define to path to the map recoder. */ +#undef MAP_PROG + +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the home page for this package. */ +#undef PACKAGE_URL + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Define to path to the piconv recoder. */ +#undef PICONV_PROG + +/* Define to path to the recode recoder. */ +#undef RECODE_PROG + +/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */ +#undef STAT_MACROS_BROKEN + +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS + +/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ +#undef TIME_WITH_SYS_TIME + +/* Define to path to the umap recoder. */ +#undef UMAP_PROG + +/* Enable extensions on AIX 3, Interix. */ +#ifndef _ALL_SOURCE +# undef _ALL_SOURCE +#endif +/* Enable GNU extensions on systems that have them. */ +#ifndef _GNU_SOURCE +# undef _GNU_SOURCE +#endif +/* Enable threading extensions on Solaris. */ +#ifndef _POSIX_PTHREAD_SEMANTICS +# undef _POSIX_PTHREAD_SEMANTICS +#endif +/* Enable extensions on HP NonStop. */ +#ifndef _TANDEM_SOURCE +# undef _TANDEM_SOURCE +#endif +/* Enable general extensions on Solaris. */ +#ifndef __EXTENSIONS__ +# undef __EXTENSIONS__ +#endif + + +/* Version number of package */ +#undef VERSION + +/* Define to 1 if on MINIX. */ +#undef _MINIX + +/* Define to 2 if the system does not provide POSIX.1 features except with + this defined. */ +#undef _POSIX_1_SOURCE + +/* Define to 1 if you need to in order for `stat' and other things to work. */ +#undef _POSIX_SOURCE + +/* Define to empty if `const' does not conform to ANSI C. */ +#undef const + +/* Define to `int' if <sys/types.h> doesn't define. */ +#undef gid_t + +/* Define to `int' if <sys/types.h> does not define. */ +#undef mode_t + +/* Define to `long int' if <sys/types.h> does not define. */ +#undef off_t + +/* Define to `int' if <sys/types.h> does not define. */ +#undef pid_t + +/* Define to `unsigned int' if <sys/types.h> does not define. */ +#undef size_t + +/* Define to `int' if <sys/types.h> does not define. */ +#undef ssize_t + +/* Define to `int' if <sys/types.h> doesn't define. */ +#undef uid_t + +/* Define as `fork' if `vfork' does not work. */ +#undef vfork diff --git a/wlx/wayland_qt_base/build/enca-1.19/config.log b/wlx/wayland_qt_base/build/enca-1.19/config.log new file mode 100644 index 0000000..8a8b214 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/config.log @@ -0,0 +1,2227 @@ +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by Enca configure 1.19, which was +generated by GNU Autoconf 2.69. Invocation command line was + + $ ./configure --disable-shared --enable-static --with-pic + +## --------- ## +## Platform. ## +## --------- ## + +hostname = pplupo-laptop +uname -m = x86_64 +uname -r = 7.0.11-1-cachyos +uname -s = Linux +uname -v = #1 SMP PREEMPT_DYNAMIC Wed, 03 Jun 2026 22:05:15 +0000 + +/usr/bin/uname -p = unknown +/bin/uname -X = unknown + +/bin/arch = unknown +/usr/bin/arch -k = unknown +/usr/convex/getsysinfo = unknown +/usr/bin/hostinfo = unknown +/bin/machine = unknown +/usr/bin/oslevel = unknown +/bin/universe = unknown + +PATH: /home/pplupo/.gemini/antigravity/bin +PATH: /home/pplupo/.config/Antigravity/bin +PATH: /home/pplupo/.npm-global/bin +PATH: /home/pplupo/.bun/bin +PATH: /home/pplupo/.cargo/bin +PATH: /home/pplupo/.pyenv/shims +PATH: /home/pplupo/.pyenv/bin +PATH: /home/pplupo/bin +PATH: /usr/local/bin +PATH: /usr/local/bin +PATH: /usr/bin +PATH: /bin +PATH: /usr/local/sbin +PATH: /home/pplupo/.local/share/flatpak/exports/bin +PATH: /var/lib/flatpak/exports/bin +PATH: /usr/lib/jvm/default/bin +PATH: /usr/bin/site_perl +PATH: /usr/bin/vendor_perl +PATH: /usr/bin/core_perl +PATH: /home/pplupo/.local/bin +PATH: /home/pplupo/.local/bin +PATH: /home/pplupo/.local/bin + + +## ----------- ## +## Core tests. ## +## ----------- ## + +configure:2423: checking for a BSD-compatible install +configure:2491: result: /usr/bin/install -c +configure:2502: checking whether build environment is sane +configure:2557: result: yes +configure:2708: checking for a thread-safe mkdir -p +configure:2747: result: /usr/bin/mkdir -p +configure:2754: checking for gawk +configure:2770: found /usr/bin/gawk +configure:2781: result: gawk +configure:2792: checking whether make sets $(MAKE) +configure:2814: result: yes +configure:2843: checking whether make supports nested variables +configure:2860: result: yes +configure:2990: checking whether to enable maintainer-specific portions of Makefiles +configure:2999: result: no +configure:3019: checking for gawk +configure:3046: result: gawk +configure:3105: checking for gcc +configure:3132: result: /usr/bin/cc +configure:3361: checking for C compiler version +configure:3370: /usr/bin/cc --version >&5 +cc (GCC) 16.1.1 20260430 +Copyright (C) 2026 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +configure:3381: $? = 0 +configure:3370: /usr/bin/cc -v >&5 +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper +Target: x86_64-pc-linux-gnu +Configured with: /tmp/pkg/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust,cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://github.com/CachyOS/CachyOS-PKGBUILDS/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --disable-fixincludes +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 16.1.1 20260430 (GCC) +configure:3381: $? = 0 +configure:3370: /usr/bin/cc -V >&5 +cc: error: unrecognized command-line option '-V' +cc: fatal error: no input files +compilation terminated. +configure:3381: $? = 1 +configure:3370: /usr/bin/cc -qversion >&5 +cc: error: unrecognized command-line option '-qversion'; did you mean '--version'? +cc: fatal error: no input files +compilation terminated. +configure:3381: $? = 1 +configure:3401: checking whether the C compiler works +configure:3423: /usr/bin/cc conftest.c >&5 +configure:3427: $? = 0 +configure:3475: result: yes +configure:3478: checking for C compiler default output file name +configure:3480: result: a.out +configure:3486: checking for suffix of executables +configure:3493: /usr/bin/cc -o conftest conftest.c >&5 +configure:3497: $? = 0 +configure:3519: result: +configure:3541: checking whether we are cross compiling +configure:3549: /usr/bin/cc -o conftest conftest.c >&5 +configure:3553: $? = 0 +configure:3560: ./conftest +configure:3564: $? = 0 +configure:3579: result: no +configure:3584: checking for suffix of object files +configure:3606: /usr/bin/cc -c conftest.c >&5 +configure:3610: $? = 0 +configure:3631: result: o +configure:3635: checking whether we are using the GNU C compiler +configure:3654: /usr/bin/cc -c conftest.c >&5 +configure:3654: $? = 0 +configure:3663: result: yes +configure:3672: checking whether /usr/bin/cc accepts -g +configure:3692: /usr/bin/cc -c -g conftest.c >&5 +configure:3692: $? = 0 +configure:3733: result: yes +configure:3750: checking for /usr/bin/cc option to accept ISO C89 +configure:3813: /usr/bin/cc -c -g -O2 conftest.c >&5 +conftest.c: In function 'e': +conftest.c:17:14: warning: old-style function definition [-Wold-style-definition] + 17 | static char *e (p, i) + | ^ +configure:3813: $? = 0 +configure:3826: result: none needed +configure:3851: checking whether /usr/bin/cc understands -c and -o together +configure:3873: /usr/bin/cc -c conftest.c -o conftest2.o +configure:3876: $? = 0 +configure:3873: /usr/bin/cc -c conftest.c -o conftest2.o +configure:3876: $? = 0 +configure:3888: result: yes +configure:3916: checking for style of include used by make +configure:3944: result: GNU +configure:3970: checking dependency style of /usr/bin/cc +configure:4081: result: gcc3 +configure:4102: checking how to run the C preprocessor +configure:4133: /usr/bin/cc -E conftest.c +configure:4133: $? = 0 +configure:4147: /usr/bin/cc -E conftest.c +conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory + 11 | #include <ac_nonexistent.h> + | ^~~~~~~~~~~~~~~~~~ +compilation terminated. +configure:4147: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| /* end confdefs.h. */ +| #include <ac_nonexistent.h> +configure:4172: result: /usr/bin/cc -E +configure:4192: /usr/bin/cc -E conftest.c +configure:4192: $? = 0 +configure:4206: /usr/bin/cc -E conftest.c +conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory + 11 | #include <ac_nonexistent.h> + | ^~~~~~~~~~~~~~~~~~ +compilation terminated. +configure:4206: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| /* end confdefs.h. */ +| #include <ac_nonexistent.h> +configure:4235: checking for grep that handles long lines and -e +configure:4293: result: /usr/bin/grep +configure:4298: checking for egrep +configure:4360: result: /usr/bin/grep -E +configure:4365: checking for ANSI C header files +configure:4385: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:4385: $? = 0 +configure:4458: /usr/bin/cc -o conftest -g -O2 conftest.c >&5 +configure:4458: $? = 0 +configure:4458: ./conftest +configure:4458: $? = 0 +configure:4469: result: yes +configure:4482: checking for sys/types.h +configure:4482: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:4482: $? = 0 +configure:4482: result: yes +configure:4482: checking for sys/stat.h +configure:4482: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:4482: $? = 0 +configure:4482: result: yes +configure:4482: checking for stdlib.h +configure:4482: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:4482: $? = 0 +configure:4482: result: yes +configure:4482: checking for string.h +configure:4482: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:4482: $? = 0 +configure:4482: result: yes +configure:4482: checking for memory.h +configure:4482: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:4482: $? = 0 +configure:4482: result: yes +configure:4482: checking for strings.h +configure:4482: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:4482: $? = 0 +configure:4482: result: yes +configure:4482: checking for inttypes.h +configure:4482: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:4482: $? = 0 +configure:4482: result: yes +configure:4482: checking for stdint.h +configure:4482: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:4482: $? = 0 +configure:4482: result: yes +configure:4482: checking for unistd.h +configure:4482: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:4482: $? = 0 +configure:4482: result: yes +configure:4495: checking minix/config.h usability +configure:4495: /usr/bin/cc -c -g -O2 conftest.c >&5 +conftest.c:54:10: fatal error: minix/config.h: No such file or directory + 54 | #include <minix/config.h> + | ^~~~~~~~~~~~~~~~ +compilation terminated. +configure:4495: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| /* end confdefs.h. */ +| #include <stdio.h> +| #ifdef HAVE_SYS_TYPES_H +| # include <sys/types.h> +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include <sys/stat.h> +| #endif +| #ifdef STDC_HEADERS +| # include <stdlib.h> +| # include <stddef.h> +| #else +| # ifdef HAVE_STDLIB_H +| # include <stdlib.h> +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include <memory.h> +| # endif +| # include <string.h> +| #endif +| #ifdef HAVE_STRINGS_H +| # include <strings.h> +| #endif +| #ifdef HAVE_INTTYPES_H +| # include <inttypes.h> +| #endif +| #ifdef HAVE_STDINT_H +| # include <stdint.h> +| #endif +| #ifdef HAVE_UNISTD_H +| # include <unistd.h> +| #endif +| #include <minix/config.h> +configure:4495: result: no +configure:4495: checking minix/config.h presence +configure:4495: /usr/bin/cc -E conftest.c +conftest.c:21:10: fatal error: minix/config.h: No such file or directory + 21 | #include <minix/config.h> + | ^~~~~~~~~~~~~~~~ +compilation terminated. +configure:4495: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| /* end confdefs.h. */ +| #include <minix/config.h> +configure:4495: result: no +configure:4495: checking for minix/config.h +configure:4495: result: no +configure:4516: checking whether it is safe to define __EXTENSIONS__ +configure:4534: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:4534: $? = 0 +configure:4541: result: yes +configure:4557: checking for library containing strerror +configure:4588: /usr/bin/cc -o conftest -g -O2 conftest.c >&5 +configure:4588: $? = 0 +configure:4605: result: none required +configure:4642: checking build system type +configure:4656: result: x86_64-pc-linux-gnu +configure:4676: checking host system type +configure:4689: result: x86_64-pc-linux-gnu +configure:4730: checking how to print strings +configure:4757: result: printf +configure:4778: checking for a sed that does not truncate output +configure:4842: result: /usr/bin/sed +configure:4860: checking for fgrep +configure:4922: result: /usr/bin/grep -F +configure:4957: checking for ld used by /usr/bin/cc +configure:5024: result: /usr/bin/ld +configure:5031: checking if the linker (/usr/bin/ld) is GNU ld +configure:5046: result: yes +configure:5058: checking for BSD- or MS-compatible name lister (nm) +configure:5112: result: /usr/bin/nm -B +configure:5242: checking the name lister (/usr/bin/nm -B) interface +configure:5249: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:5252: /usr/bin/nm -B "conftest.o" +configure:5255: output +0000000000000000 B some_variable +configure:5262: result: BSD nm +configure:5265: checking whether ln -s works +configure:5269: result: yes +configure:5277: checking the maximum length of command line arguments +configure:5408: result: 1572864 +configure:5456: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format +configure:5496: result: func_convert_file_noop +configure:5503: checking how to convert x86_64-pc-linux-gnu file names to toolchain format +configure:5523: result: func_convert_file_noop +configure:5530: checking for /usr/bin/ld option to reload object files +configure:5537: result: -r +configure:5611: checking for objdump +configure:5627: found /usr/bin/objdump +configure:5638: result: objdump +configure:5670: checking how to recognize dependent libraries +configure:5870: result: pass_all +configure:5955: checking for dlltool +configure:5985: result: no +configure:6015: checking how to associate runtime and link libraries +configure:6042: result: printf %s\n +configure:6102: checking for ar +configure:6118: found /usr/bin/ar +configure:6129: result: ar +configure:6166: checking for archiver @FILE support +configure:6183: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:6183: $? = 0 +configure:6186: ar cru libconftest.a @conftest.lst >&5 +ar: `u' modifier ignored since `D' is the default (see `U') +configure:6189: $? = 0 +configure:6194: ar cru libconftest.a @conftest.lst >&5 +ar: `u' modifier ignored since `D' is the default (see `U') +ar: conftest.o: No such file or directory +configure:6197: $? = 1 +configure:6209: result: @ +configure:6267: checking for strip +configure:6283: found /usr/bin/strip +configure:6294: result: strip +configure:6366: checking for ranlib +configure:6382: found /usr/bin/ranlib +configure:6393: result: ranlib +configure:6495: checking command to parse /usr/bin/nm -B output from /usr/bin/cc object +configure:6648: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:6651: $? = 0 +configure:6655: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm +configure:6658: $? = 0 +configure:6724: /usr/bin/cc -o conftest -g -O2 conftest.c conftstm.o >&5 +configure:6727: $? = 0 +configure:6765: result: ok +configure:6812: checking for sysroot +configure:6842: result: no +configure:6849: checking for a working dd +configure:6887: result: /usr/bin/dd +configure:6891: checking how to truncate binary pipes +configure:6906: result: /usr/bin/dd bs=4096 count=1 +configure:7042: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:7045: $? = 0 +configure:7235: checking for mt +configure:7265: result: no +configure:7285: checking if : is a manifest tool +configure:7291: : '-?' +configure:7299: result: no +configure:7973: checking for dlfcn.h +configure:7973: /usr/bin/cc -c -g -O2 conftest.c >&5 +configure:7973: $? = 0 +configure:7973: result: yes +configure:8229: checking for objdir +configure:8244: result: .libs +configure:8508: checking if /usr/bin/cc supports -fno-rtti -fno-exceptions +configure:8526: /usr/bin/cc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 +cc1: warning: command-line option '-fno-rtti' is valid for C++/D/ObjC++ but not for C +configure:8530: $? = 0 +configure:8543: result: no +configure:8901: checking for /usr/bin/cc option to produce PIC +configure:8908: result: -fPIC -DPIC +configure:8916: checking if /usr/bin/cc PIC flag -fPIC -DPIC works +configure:8934: /usr/bin/cc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 +configure:8938: $? = 0 +configure:8951: result: yes +configure:8980: checking if /usr/bin/cc static flag -static works +configure:9008: result: yes +configure:9023: checking if /usr/bin/cc supports -c -o file.o +configure:9044: /usr/bin/cc -c -g -O2 -o out/conftest2.o conftest.c >&5 +configure:9048: $? = 0 +configure:9070: result: yes +configure:9078: checking if /usr/bin/cc supports -c -o file.o +configure:9125: result: yes +configure:9158: checking whether the /usr/bin/cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries +configure:10421: result: yes +configure:10661: checking dynamic linker characteristics +configure:11242: /usr/bin/cc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 +configure:11242: $? = 0 +configure:11491: result: GNU/Linux ld.so +configure:11613: checking how to hardcode library paths into programs +configure:11638: result: immediate +configure:12186: checking whether stripping libraries is possible +configure:12191: result: yes +configure:12226: checking if libtool supports shared libraries +configure:12228: result: yes +configure:12231: checking whether to build shared libraries +configure:12256: result: no +configure:12259: checking whether to build static libraries +configure:12263: result: yes +configure:12348: checking for gcc +configure:12375: result: /usr/bin/cc +configure:12604: checking for C compiler version +configure:12613: /usr/bin/cc --version >&5 +cc (GCC) 16.1.1 20260430 +Copyright (C) 2026 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +configure:12624: $? = 0 +configure:12613: /usr/bin/cc -v >&5 +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/lto-wrapper +Target: x86_64-pc-linux-gnu +Configured with: /tmp/pkg/src/gcc/configure --enable-languages=ada,c,c++,d,fortran,go,lto,m2,objc,obj-c++,rust,cobol --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://github.com/CachyOS/CachyOS-PKGBUILDS/issues --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror --disable-fixincludes +Thread model: posix +Supported LTO compression algorithms: zlib zstd +gcc version 16.1.1 20260430 (GCC) +configure:12624: $? = 0 +configure:12613: /usr/bin/cc -V >&5 +cc: error: unrecognized command-line option '-V' +cc: fatal error: no input files +compilation terminated. +configure:12624: $? = 1 +configure:12613: /usr/bin/cc -qversion >&5 +cc: error: unrecognized command-line option '-qversion'; did you mean '--version'? +cc: fatal error: no input files +compilation terminated. +configure:12624: $? = 1 +configure:12628: checking whether we are using the GNU C compiler +configure:12656: result: yes +configure:12665: checking whether /usr/bin/cc accepts -g +configure:12726: result: yes +configure:12743: checking for /usr/bin/cc option to accept ISO C89 +configure:12819: result: none needed +configure:12844: checking whether /usr/bin/cc understands -c and -o together +configure:12881: result: yes +configure:12900: checking dependency style of /usr/bin/cc +configure:13011: result: gcc3 +configure:13028: checking whether ln -s works +configure:13032: result: yes +configure:13041: checking for mktemp +configure:13059: found /usr/bin/mktemp +configure:13071: result: /usr/bin/mktemp +configure:13086: checking for cstocs +configure:13119: result: no +configure:13126: checking for recode +configure:13144: found /usr/bin/recode +configure:13156: result: /usr/bin/recode +configure:13166: checking for umap +configure:13199: result: no +configure:13206: checking for piconv +configure:13224: found /usr/bin/core_perl/piconv +configure:13236: result: /usr/bin/core_perl/piconv +configure:13246: checking for map +configure:13279: result: no +configure:13314: checking for gcov +configure:13332: found /usr/bin/gcov +configure:13344: result: /usr/bin/gcov +configure:13424: checking for gtkdoc-mkdb +configure:13452: result: false +configure:13599: checking for sqrt in -lm +configure:13624: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +conftest.c:37:6: warning: conflicting types for built-in function 'sqrt'; expected 'double(double)' [-Wbuiltin-declaration-mismatch] + 37 | char sqrt (); + | ^~~~ +conftest.c:1:1: note: 'sqrt' is declared in header '<math.h>' + 1 | /* confdefs.h */ +configure:13624: $? = 0 +configure:13633: result: yes +configure:13644: checking for ANSI C header files +configure:13748: result: yes +configure:13756: checking for sys/wait.h that is POSIX.1 compatible +configure:13782: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:13782: $? = 0 +configure:13789: result: yes +configure:13797: checking whether time.h and sys/time.h may both be included +configure:13817: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:13817: $? = 0 +configure:13824: result: yes +configure:13832: checking whether stat file-mode macros are broken +configure:13859: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:13859: $? = 0 +configure:13866: result: no +configure:13874: checking for stdbool.h that conforms to C99 +configure:13941: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +conftest.c:36:15: error: expected identifier or '(' before string constant + 36 | "error: bool is not defined" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +conftest.c:54:48: warning: data definition has no type or storage class + 54 | struct s { _Bool s: 1; _Bool t; } s; + | ^ +conftest.c:54:48: error: type defaults to 'int' in declaration of 's' [-Wimplicit-int] +conftest.c:64:29: error: request for member 't' in something not a structure or union + 64 | char i[sizeof s.t]; + | ^ +conftest.c: In function 'main': +conftest.c:82:14: warning: the address of 's' will always evaluate as 'true' [-Waddress] + 82 | bool e = &s; + | ^~~~ +conftest.c:86:22: warning: the address of 'a' will always evaluate as 'true' [-Waddress] + 86 | return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l + | ^ +conftest.c:86:27: warning: the address of 'b' will always evaluate as 'true' [-Waddress] + 86 | return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l + | ^ +conftest.c:86:32: warning: the address of 'c' will always evaluate as 'true' [-Waddress] + 86 | return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l + | ^ +conftest.c:86:37: warning: the address of 'd' will always evaluate as 'true' [-Waddress] + 86 | return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l + | ^ +conftest.c:86:47: warning: the address of 'f' will always evaluate as 'true' [-Waddress] + 86 | return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l + | ^ +conftest.c:86:52: warning: the address of 'g' will always evaluate as 'true' [-Waddress] + 86 | return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l + | ^ +conftest.c:86:57: warning: the address of 'h' will always evaluate as 'true' [-Waddress] + 86 | return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l + | ^ +conftest.c:87:29: warning: the address of 'n' will always evaluate as 'true' [-Waddress] + 87 | + !m + !n + !o + !p + !q + !pq); + | ^ +conftest.c:87:34: warning: the address of 'o' will always evaluate as 'true' [-Waddress] + 87 | + !m + !n + !o + !p + !q + !pq); + | ^ +conftest.c:87:39: warning: the address of 'p' will always evaluate as 'true' [-Waddress] + 87 | + !m + !n + !o + !p + !q + !pq); + | ^ +configure:13941: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define __EXTENSIONS__ 1 +| #define _ALL_SOURCE 1 +| #define _GNU_SOURCE 1 +| #define _POSIX_PTHREAD_SEMANTICS 1 +| #define _TANDEM_SOURCE 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define RECODE_PROG "/usr/bin/recode" +| #define PICONV_PROG "/usr/bin/core_perl/piconv" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_WAIT_H 1 +| #define TIME_WITH_SYS_TIME 1 +| /* end confdefs.h. */ +| +| #include <stdbool.h> +| #ifndef bool +| "error: bool is not defined" +| #endif +| #ifndef false +| "error: false is not defined" +| #endif +| #if false +| "error: false is not 0" +| #endif +| #ifndef true +| "error: true is not defined" +| #endif +| #if true != 1 +| "error: true is not 1" +| #endif +| #ifndef __bool_true_false_are_defined +| "error: __bool_true_false_are_defined is not defined" +| #endif +| +| struct s { _Bool s: 1; _Bool t; } s; +| +| char a[true == 1 ? 1 : -1]; +| char b[false == 0 ? 1 : -1]; +| char c[__bool_true_false_are_defined == 1 ? 1 : -1]; +| char d[(bool) 0.5 == true ? 1 : -1]; +| /* See body of main program for 'e'. */ +| char f[(_Bool) 0.0 == false ? 1 : -1]; +| char g[true]; +| char h[sizeof (_Bool)]; +| char i[sizeof s.t]; +| enum { j = false, k = true, l = false * true, m = true * 256 }; +| /* The following fails for +| HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003]. */ +| _Bool n[m]; +| char o[sizeof n == m * sizeof n[0] ? 1 : -1]; +| char p[-1 - (_Bool) 0 < 0 && -1 - (bool) 0 < 0 ? 1 : -1]; +| /* Catch a bug in an HP-UX C compiler. See +| http://gcc.gnu.org/ml/gcc-patches/2003-12/msg02303.html +| http://lists.gnu.org/archive/html/bug-coreutils/2005-11/msg00161.html +| */ +| _Bool q = true; +| _Bool *pq = &q; +| +| int +| main () +| { +| +| bool e = &s; +| *pq |= q; +| *pq |= ! q; +| /* Refer to every declared value, to avoid compiler optimizations. */ +| return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l +| + !m + !n + !o + !p + !q + !pq); +| +| ; +| return 0; +| } +configure:13948: result: no +configure:13950: checking for _Bool +configure:13950: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:13950: $? = 0 +configure:13950: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +conftest.c: In function 'main': +conftest.c:69:20: error: expected expression before ')' token + 69 | if (sizeof ((_Bool))) + | ^ +configure:13950: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define __EXTENSIONS__ 1 +| #define _ALL_SOURCE 1 +| #define _GNU_SOURCE 1 +| #define _POSIX_PTHREAD_SEMANTICS 1 +| #define _TANDEM_SOURCE 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define RECODE_PROG "/usr/bin/recode" +| #define PICONV_PROG "/usr/bin/core_perl/piconv" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_WAIT_H 1 +| #define TIME_WITH_SYS_TIME 1 +| /* end confdefs.h. */ +| #include <stdio.h> +| #ifdef HAVE_SYS_TYPES_H +| # include <sys/types.h> +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include <sys/stat.h> +| #endif +| #ifdef STDC_HEADERS +| # include <stdlib.h> +| # include <stddef.h> +| #else +| # ifdef HAVE_STDLIB_H +| # include <stdlib.h> +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include <memory.h> +| # endif +| # include <string.h> +| #endif +| #ifdef HAVE_STRINGS_H +| # include <strings.h> +| #endif +| #ifdef HAVE_INTTYPES_H +| # include <inttypes.h> +| #endif +| #ifdef HAVE_STDINT_H +| # include <stdint.h> +| #endif +| #ifdef HAVE_UNISTD_H +| # include <unistd.h> +| #endif +| int +| main () +| { +| if (sizeof ((_Bool))) +| return 0; +| ; +| return 0; +| } +configure:13950: result: yes +configure:13986: checking errno.h usability +configure:13986: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking errno.h presence +configure:13986: /usr/bin/cc -E conftest.c +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking for errno.h +configure:13986: result: yes +configure:13986: checking fcntl.h usability +configure:13986: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking fcntl.h presence +configure:13986: /usr/bin/cc -E conftest.c +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking for fcntl.h +configure:13986: result: yes +configure:13986: checking getopt.h usability +configure:13986: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking getopt.h presence +configure:13986: /usr/bin/cc -E conftest.c +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking for getopt.h +configure:13986: result: yes +configure:13986: checking langinfo.h usability +configure:13986: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking langinfo.h presence +configure:13986: /usr/bin/cc -E conftest.c +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking for langinfo.h +configure:13986: result: yes +configure:13986: checking limits.h usability +configure:13986: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking limits.h presence +configure:13986: /usr/bin/cc -E conftest.c +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking for limits.h +configure:13986: result: yes +configure:13986: checking locale.h usability +configure:13986: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking locale.h presence +configure:13986: /usr/bin/cc -E conftest.c +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking for locale.h +configure:13986: result: yes +configure:13986: checking for memory.h +configure:13986: result: yes +configure:13986: checking for string.h +configure:13986: result: yes +configure:13986: checking for strings.h +configure:13986: result: yes +configure:13986: checking for sys/stat.h +configure:13986: result: yes +configure:13986: checking for sys/types.h +configure:13986: result: yes +configure:13986: checking for sys/wait.h +configure:13986: result: yes +configure:13986: checking sys/time.h usability +configure:13986: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking sys/time.h presence +configure:13986: /usr/bin/cc -E conftest.c +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking for sys/time.h +configure:13986: result: yes +configure:13986: checking time.h usability +configure:13986: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking time.h presence +configure:13986: /usr/bin/cc -E conftest.c +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking for time.h +configure:13986: result: yes +configure:13986: checking for unistd.h +configure:13986: result: yes +configure:13986: checking wordexp.h usability +configure:13986: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking wordexp.h presence +configure:13986: /usr/bin/cc -E conftest.c +configure:13986: $? = 0 +configure:13986: result: yes +configure:13986: checking for wordexp.h +configure:13986: result: yes +configure:13997: checking for an ANSI C-conforming const +configure:14063: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +conftest.c: In function 'main': +conftest.c:85:16: warning: variable 'foo' set but not used [-Wunused-but-set-variable=] + 85 | const int *foo = &x[0]; + | ^~~ +conftest.c:90:10: warning: variable 'p' set but not used [-Wunused-but-set-variable=] + 90 | iptr p = 0; + | ^ +configure:14063: $? = 0 +configure:14070: result: yes +configure:14078: checking for size_t +configure:14078: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:14078: $? = 0 +configure:14078: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +conftest.c: In function 'main': +conftest.c:86:21: error: expected expression before ')' token + 86 | if (sizeof ((size_t))) + | ^ +configure:14078: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define __EXTENSIONS__ 1 +| #define _ALL_SOURCE 1 +| #define _GNU_SOURCE 1 +| #define _POSIX_PTHREAD_SEMANTICS 1 +| #define _TANDEM_SOURCE 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define RECODE_PROG "/usr/bin/recode" +| #define PICONV_PROG "/usr/bin/core_perl/piconv" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_WAIT_H 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE__BOOL 1 +| #define HAVE_ERRNO_H 1 +| #define HAVE_FCNTL_H 1 +| #define HAVE_GETOPT_H 1 +| #define HAVE_LANGINFO_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_LOCALE_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_WAIT_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_WORDEXP_H 1 +| /* end confdefs.h. */ +| #include <stdio.h> +| #ifdef HAVE_SYS_TYPES_H +| # include <sys/types.h> +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include <sys/stat.h> +| #endif +| #ifdef STDC_HEADERS +| # include <stdlib.h> +| # include <stddef.h> +| #else +| # ifdef HAVE_STDLIB_H +| # include <stdlib.h> +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include <memory.h> +| # endif +| # include <string.h> +| #endif +| #ifdef HAVE_STRINGS_H +| # include <strings.h> +| #endif +| #ifdef HAVE_INTTYPES_H +| # include <inttypes.h> +| #endif +| #ifdef HAVE_STDINT_H +| # include <stdint.h> +| #endif +| #ifdef HAVE_UNISTD_H +| # include <unistd.h> +| #endif +| int +| main () +| { +| if (sizeof ((size_t))) +| return 0; +| ; +| return 0; +| } +configure:14078: result: yes +configure:14089: checking for mode_t +configure:14089: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:14089: $? = 0 +configure:14089: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +conftest.c: In function 'main': +conftest.c:86:21: error: expected expression before ')' token + 86 | if (sizeof ((mode_t))) + | ^ +configure:14089: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define __EXTENSIONS__ 1 +| #define _ALL_SOURCE 1 +| #define _GNU_SOURCE 1 +| #define _POSIX_PTHREAD_SEMANTICS 1 +| #define _TANDEM_SOURCE 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define RECODE_PROG "/usr/bin/recode" +| #define PICONV_PROG "/usr/bin/core_perl/piconv" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_WAIT_H 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE__BOOL 1 +| #define HAVE_ERRNO_H 1 +| #define HAVE_FCNTL_H 1 +| #define HAVE_GETOPT_H 1 +| #define HAVE_LANGINFO_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_LOCALE_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_WAIT_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_WORDEXP_H 1 +| /* end confdefs.h. */ +| #include <stdio.h> +| #ifdef HAVE_SYS_TYPES_H +| # include <sys/types.h> +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include <sys/stat.h> +| #endif +| #ifdef STDC_HEADERS +| # include <stdlib.h> +| # include <stddef.h> +| #else +| # ifdef HAVE_STDLIB_H +| # include <stdlib.h> +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include <memory.h> +| # endif +| # include <string.h> +| #endif +| #ifdef HAVE_STRINGS_H +| # include <strings.h> +| #endif +| #ifdef HAVE_INTTYPES_H +| # include <inttypes.h> +| #endif +| #ifdef HAVE_STDINT_H +| # include <stdint.h> +| #endif +| #ifdef HAVE_UNISTD_H +| # include <unistd.h> +| #endif +| int +| main () +| { +| if (sizeof ((mode_t))) +| return 0; +| ; +| return 0; +| } +configure:14089: result: yes +configure:14100: checking for off_t +configure:14100: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:14100: $? = 0 +configure:14100: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +conftest.c: In function 'main': +conftest.c:86:20: error: expected expression before ')' token + 86 | if (sizeof ((off_t))) + | ^ +configure:14100: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define __EXTENSIONS__ 1 +| #define _ALL_SOURCE 1 +| #define _GNU_SOURCE 1 +| #define _POSIX_PTHREAD_SEMANTICS 1 +| #define _TANDEM_SOURCE 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define RECODE_PROG "/usr/bin/recode" +| #define PICONV_PROG "/usr/bin/core_perl/piconv" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_WAIT_H 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE__BOOL 1 +| #define HAVE_ERRNO_H 1 +| #define HAVE_FCNTL_H 1 +| #define HAVE_GETOPT_H 1 +| #define HAVE_LANGINFO_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_LOCALE_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_WAIT_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_WORDEXP_H 1 +| /* end confdefs.h. */ +| #include <stdio.h> +| #ifdef HAVE_SYS_TYPES_H +| # include <sys/types.h> +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include <sys/stat.h> +| #endif +| #ifdef STDC_HEADERS +| # include <stdlib.h> +| # include <stddef.h> +| #else +| # ifdef HAVE_STDLIB_H +| # include <stdlib.h> +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include <memory.h> +| # endif +| # include <string.h> +| #endif +| #ifdef HAVE_STRINGS_H +| # include <strings.h> +| #endif +| #ifdef HAVE_INTTYPES_H +| # include <inttypes.h> +| #endif +| #ifdef HAVE_STDINT_H +| # include <stdint.h> +| #endif +| #ifdef HAVE_UNISTD_H +| # include <unistd.h> +| #endif +| int +| main () +| { +| if (sizeof ((off_t))) +| return 0; +| ; +| return 0; +| } +configure:14100: result: yes +configure:14111: checking for pid_t +configure:14111: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:14111: $? = 0 +configure:14111: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +conftest.c: In function 'main': +conftest.c:86:20: error: expected expression before ')' token + 86 | if (sizeof ((pid_t))) + | ^ +configure:14111: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define __EXTENSIONS__ 1 +| #define _ALL_SOURCE 1 +| #define _GNU_SOURCE 1 +| #define _POSIX_PTHREAD_SEMANTICS 1 +| #define _TANDEM_SOURCE 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define RECODE_PROG "/usr/bin/recode" +| #define PICONV_PROG "/usr/bin/core_perl/piconv" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_WAIT_H 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE__BOOL 1 +| #define HAVE_ERRNO_H 1 +| #define HAVE_FCNTL_H 1 +| #define HAVE_GETOPT_H 1 +| #define HAVE_LANGINFO_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_LOCALE_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_WAIT_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_WORDEXP_H 1 +| /* end confdefs.h. */ +| #include <stdio.h> +| #ifdef HAVE_SYS_TYPES_H +| # include <sys/types.h> +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include <sys/stat.h> +| #endif +| #ifdef STDC_HEADERS +| # include <stdlib.h> +| # include <stddef.h> +| #else +| # ifdef HAVE_STDLIB_H +| # include <stdlib.h> +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include <memory.h> +| # endif +| # include <string.h> +| #endif +| #ifdef HAVE_STRINGS_H +| # include <strings.h> +| #endif +| #ifdef HAVE_INTTYPES_H +| # include <inttypes.h> +| #endif +| #ifdef HAVE_STDINT_H +| # include <stdint.h> +| #endif +| #ifdef HAVE_UNISTD_H +| # include <unistd.h> +| #endif +| int +| main () +| { +| if (sizeof ((pid_t))) +| return 0; +| ; +| return 0; +| } +configure:14111: result: yes +configure:14122: checking for uid_t in sys/types.h +configure:14141: result: yes +configure:14152: checking for ssize_t +configure:14152: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:14152: $? = 0 +configure:14152: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +conftest.c: In function 'main': +conftest.c:86:22: error: expected expression before ')' token + 86 | if (sizeof ((ssize_t))) + | ^ +configure:14152: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define __EXTENSIONS__ 1 +| #define _ALL_SOURCE 1 +| #define _GNU_SOURCE 1 +| #define _POSIX_PTHREAD_SEMANTICS 1 +| #define _TANDEM_SOURCE 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define RECODE_PROG "/usr/bin/recode" +| #define PICONV_PROG "/usr/bin/core_perl/piconv" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_WAIT_H 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE__BOOL 1 +| #define HAVE_ERRNO_H 1 +| #define HAVE_FCNTL_H 1 +| #define HAVE_GETOPT_H 1 +| #define HAVE_LANGINFO_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_LOCALE_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_WAIT_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_WORDEXP_H 1 +| /* end confdefs.h. */ +| #include <stdio.h> +| #ifdef HAVE_SYS_TYPES_H +| # include <sys/types.h> +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include <sys/stat.h> +| #endif +| #ifdef STDC_HEADERS +| # include <stdlib.h> +| # include <stddef.h> +| #else +| # ifdef HAVE_STDLIB_H +| # include <stdlib.h> +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include <memory.h> +| # endif +| # include <string.h> +| #endif +| #ifdef HAVE_STRINGS_H +| # include <strings.h> +| #endif +| #ifdef HAVE_INTTYPES_H +| # include <inttypes.h> +| #endif +| #ifdef HAVE_STDINT_H +| # include <stdint.h> +| #endif +| #ifdef HAVE_UNISTD_H +| # include <unistd.h> +| #endif +| int +| main () +| { +| if (sizeof ((ssize_t))) +| return 0; +| ; +| return 0; +| } +configure:14152: result: yes +configure:14164: checking whether LC_MESSAGES is declared +configure:14164: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:14164: $? = 0 +configure:14164: result: yes +configure:14178: checking for program_invocation_short_name +configure:14194: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:14194: $? = 0 +configure:14202: result: yes +configure:14212: checking vfork.h usability +configure:14212: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +conftest.c:85:10: fatal error: vfork.h: No such file or directory + 85 | #include <vfork.h> + | ^~~~~~~~~ +compilation terminated. +configure:14212: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define __EXTENSIONS__ 1 +| #define _ALL_SOURCE 1 +| #define _GNU_SOURCE 1 +| #define _POSIX_PTHREAD_SEMANTICS 1 +| #define _TANDEM_SOURCE 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define RECODE_PROG "/usr/bin/recode" +| #define PICONV_PROG "/usr/bin/core_perl/piconv" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_WAIT_H 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE__BOOL 1 +| #define HAVE_ERRNO_H 1 +| #define HAVE_FCNTL_H 1 +| #define HAVE_GETOPT_H 1 +| #define HAVE_LANGINFO_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_LOCALE_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_WAIT_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_WORDEXP_H 1 +| #define HAVE_DECL_LC_MESSAGES 1 +| #define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 +| /* end confdefs.h. */ +| #include <stdio.h> +| #ifdef HAVE_SYS_TYPES_H +| # include <sys/types.h> +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include <sys/stat.h> +| #endif +| #ifdef STDC_HEADERS +| # include <stdlib.h> +| # include <stddef.h> +| #else +| # ifdef HAVE_STDLIB_H +| # include <stdlib.h> +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include <memory.h> +| # endif +| # include <string.h> +| #endif +| #ifdef HAVE_STRINGS_H +| # include <strings.h> +| #endif +| #ifdef HAVE_INTTYPES_H +| # include <inttypes.h> +| #endif +| #ifdef HAVE_STDINT_H +| # include <stdint.h> +| #endif +| #ifdef HAVE_UNISTD_H +| # include <unistd.h> +| #endif +| #include <vfork.h> +configure:14212: result: no +configure:14212: checking vfork.h presence +configure:14212: /usr/bin/cc -E conftest.c +conftest.c:52:10: fatal error: vfork.h: No such file or directory + 52 | #include <vfork.h> + | ^~~~~~~~~ +compilation terminated. +configure:14212: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define __EXTENSIONS__ 1 +| #define _ALL_SOURCE 1 +| #define _GNU_SOURCE 1 +| #define _POSIX_PTHREAD_SEMANTICS 1 +| #define _TANDEM_SOURCE 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define RECODE_PROG "/usr/bin/recode" +| #define PICONV_PROG "/usr/bin/core_perl/piconv" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_WAIT_H 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE__BOOL 1 +| #define HAVE_ERRNO_H 1 +| #define HAVE_FCNTL_H 1 +| #define HAVE_GETOPT_H 1 +| #define HAVE_LANGINFO_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_LOCALE_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_WAIT_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_WORDEXP_H 1 +| #define HAVE_DECL_LC_MESSAGES 1 +| #define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 +| /* end confdefs.h. */ +| #include <vfork.h> +configure:14212: result: no +configure:14212: checking for vfork.h +configure:14212: result: no +configure:14225: checking for fork +configure:14225: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +conftest.c:75:6: warning: conflicting types for built-in function 'fork'; expected 'int(void)' [-Wbuiltin-declaration-mismatch] + 75 | char fork (); + | ^~~~ +configure:14225: $? = 0 +configure:14225: result: yes +configure:14225: checking for vfork +configure:14225: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:14225: $? = 0 +configure:14225: result: yes +configure:14235: checking for working fork +configure:14257: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:14257: $? = 0 +configure:14257: ./conftest +configure:14257: $? = 0 +configure:14267: result: yes +configure:14288: checking for working vfork +configure:14398: result: yes +configure:14437: checking for ftruncate +configure:14437: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:14437: $? = 0 +configure:14437: result: yes +configure:14437: checking for gettimeofday +configure:14437: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:14437: $? = 0 +configure:14437: result: yes +configure:14437: checking for isatty +configure:14437: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:14437: $? = 0 +configure:14437: result: yes +configure:14437: checking for nl_langinfo +configure:14437: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:14437: $? = 0 +configure:14437: result: yes +configure:14437: checking for random +configure:14437: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:14437: $? = 0 +configure:14437: result: yes +configure:14437: checking for realpath +configure:14437: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:14437: $? = 0 +configure:14437: result: yes +configure:14437: checking for strstr +configure:14437: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +conftest.c:85:6: warning: conflicting types for built-in function 'strstr'; expected 'char *(const char *, const char *)' [-Wbuiltin-declaration-mismatch] + 85 | char strstr (); + | ^~~~~~ +conftest.c:73:1: note: 'strstr' is declared in header '<string.h>' + 72 | # include <limits.h> + 73 | #else +configure:14437: $? = 0 +configure:14437: result: yes +configure:14437: checking for stpcpy +configure:14437: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +conftest.c:86:6: warning: conflicting types for built-in function 'stpcpy'; expected 'char *(char *, const char *)' [-Wbuiltin-declaration-mismatch] + 86 | char stpcpy (); + | ^~~~~~ +configure:14437: $? = 0 +configure:14437: result: yes +configure:14437: checking for setlocale +configure:14437: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:14437: $? = 0 +configure:14437: result: yes +configure:14437: checking for ttyname +configure:14437: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:14437: $? = 0 +configure:14437: result: yes +configure:14437: checking for wordexp +configure:14437: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:14437: $? = 0 +configure:14437: result: yes +configure:14446: checking for getopt_long +configure:14446: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:14446: $? = 0 +configure:14446: result: yes +configure:14502: checking for ld used by /usr/bin/cc +configure:14569: result: /usr/bin/ld -m elf_x86_64 +configure:14576: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld +configure:14591: result: yes +configure:14598: checking for shared library run path origin +configure:14611: result: done +configure:15189: checking for iconv +configure:15213: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:15213: $? = 0 +configure:15247: result: yes +configure:15250: checking for working iconv +configure:15379: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm >&5 +configure:15379: $? = 0 +configure:15379: ./conftest +configure:15379: $? = 0 +configure:15391: result: yes +configure:15419: checking for iconv declaration +configure:15448: /usr/bin/cc -c -Wall -Wextra -W -pedantic -g -O2 conftest.c >&5 +configure:15448: $? = 0 +configure:15458: result: + extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); +configure:15476: checking whether iconv implementation is usable +./iconvcap.c:32:5: warning: mismatch in argument 1 type of built-in function 'strncmp'; expected 'const char *' [-Wbuiltin-declaration-mismatch] + 32 | int strncmp(char *s1, char *s2, size_t n); + | ^~~~~~~ +./iconvcap.c:30:1: note: 'strncmp' is declared in header '<string.h>' + 29 | #include <iconv.h> + +++ |+#include <string.h> + 30 | /* string.h or strings.h? That's a question! +./iconvcap.c:33:7: warning: mismatch in argument 1 type of built-in function 'strchr'; expected 'const char *' [-Wbuiltin-declaration-mismatch] + 33 | char* strchr(char *s, int c); + | ^~~~~~ +./iconvcap.c:33:7: note: 'strchr' is declared in header '<string.h>' +./iconvcap.c:34:7: warning: mismatch in argument 1 type of built-in function 'strrchr'; expected 'const char *' [-Wbuiltin-declaration-mismatch] + 34 | char* strrchr(char *s, int c); + | ^~~~~~~ +./iconvcap.c:34:7: note: 'strrchr' is declared in header '<string.h>' +./iconvcap.c:35:7: warning: mismatch in argument 2 type of built-in function 'strncpy'; expected 'const char *' [-Wbuiltin-declaration-mismatch] + 35 | char* strncpy(char *dest, char *src, size_t n); + | ^~~~~~~ +./iconvcap.c:35:7: note: 'strncpy' is declared in header '<string.h>' +iconvcap: checking for ISO8859-1 -> Unicode... found ISO-8859-1 -> UCS2 +iconvcap: checking for ASCII -> Unicode... found ASCII -> UCS2 +iconvcap: checking for BALTIC -> Unicode... found BALTIC -> UCS2 +iconvcap: checking for CP1125 -> Unicode... found CP1125 -> UCS2 +iconvcap: checking for CP1250 -> Unicode... found CP1250 -> UCS2 +iconvcap: checking for CP1251 -> Unicode... found CP1251 -> UCS2 +iconvcap: checking for CP1257 -> Unicode... found CP1257 -> UCS2 +iconvcap: checking for ECMA113 -> Unicode... found ECMA-cyrillic -> UCS2 +iconvcap: checking for IBM852 -> Unicode... found IBM852 -> UCS2 +iconvcap: checking for IBM855 -> Unicode... found IBM855 -> UCS2 +iconvcap: checking for IBM775 -> Unicode... found IBM775 -> UCS2 +iconvcap: checking for IBM866 -> Unicode... found IBM866 -> UCS2 +iconvcap: checking for ISO88592 -> Unicode... found ISO-8859-2 -> UCS2 +iconvcap: checking for ISO88594 -> Unicode... found ISO-8859-4 -> UCS2 +iconvcap: checking for ISO88595 -> Unicode... found ISO-8859-5 -> UCS2 +iconvcap: checking for ISO885913 -> Unicode... found ISO-8859-13 -> UCS2 +iconvcap: checking for ISO885916 -> Unicode... found ISO-8859-16 -> UCS2 +iconvcap: checking for KEYBCS2 -> Unicode... failed. +iconvcap: checking for KOI8CS2 -> Unicode... failed. +iconvcap: checking for KOI8R -> Unicode... found KOI8-R -> UCS2 +iconvcap: checking for KOI8U -> Unicode... found KOI8-U -> UCS2 +iconvcap: checking for KOI8UNI -> Unicode... failed. +iconvcap: checking for MACCE -> Unicode... failed. +iconvcap: checking for MACCYR -> Unicode... found MACCYRILLIC -> UCS2 +iconvcap: checking for LATEX -> Unicode... failed. +iconvcap: checking for UCS2 -> Unicode... found UCS-2 -> UCS2 +iconvcap: checking for UCS4 -> Unicode... found UCS-4 -> UCS2 +iconvcap: checking for UTF7 -> Unicode... found UTF-7 -> UCS2 +iconvcap: checking for UTF8 -> Unicode... found UTF-8 -> UCS2 +iconvcap: checking for CORK -> Unicode... failed. +iconvcap: checking for GBK -> Unicode... found GBK -> UCS2 +iconvcap: checking for BIG5 -> Unicode... found BIG5 -> UCS2 +iconvcap: checking for HZ -> Unicode... found GB18030 -> UCS2 +configure:15487: result: yes +configure:15493: checking whether iconv is transitive +iconvcap: transitivity OK +configure:15504: result: yes +configure:15549: checking for recode_new_outer in librecode +configure:15565: /usr/bin/cc -o conftest -Wall -Wextra -W -pedantic -g -O2 conftest.c -lm -lrecode >&5 +conftest.c: In function 'main': +conftest.c:76:1: error: implicit declaration of function 'recode_new_outer' [-Wimplicit-function-declaration] + 76 | recode_new_outer(0); + | ^~~~~~~~~~~~~~~~ +configure:15565: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "Enca" +| #define PACKAGE_TARNAME "enca" +| #define PACKAGE_VERSION "1.19" +| #define PACKAGE_STRING "Enca 1.19" +| #define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +| #define PACKAGE_URL "" +| #define PACKAGE "enca" +| #define VERSION "1.19" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define __EXTENSIONS__ 1 +| #define _ALL_SOURCE 1 +| #define _GNU_SOURCE 1 +| #define _POSIX_PTHREAD_SEMANTICS 1 +| #define _TANDEM_SOURCE 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define RECODE_PROG "/usr/bin/recode" +| #define PICONV_PROG "/usr/bin/core_perl/piconv" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_WAIT_H 1 +| #define TIME_WITH_SYS_TIME 1 +| #define HAVE__BOOL 1 +| #define HAVE_ERRNO_H 1 +| #define HAVE_FCNTL_H 1 +| #define HAVE_GETOPT_H 1 +| #define HAVE_LANGINFO_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_LOCALE_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_WAIT_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_WORDEXP_H 1 +| #define HAVE_DECL_LC_MESSAGES 1 +| #define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 +| #define HAVE_FORK 1 +| #define HAVE_VFORK 1 +| #define HAVE_WORKING_VFORK 1 +| #define HAVE_WORKING_FORK 1 +| #define HAVE_FTRUNCATE 1 +| #define HAVE_GETTIMEOFDAY 1 +| #define HAVE_ISATTY 1 +| #define HAVE_NL_LANGINFO 1 +| #define HAVE_RANDOM 1 +| #define HAVE_REALPATH 1 +| #define HAVE_STRSTR 1 +| #define HAVE_STPCPY 1 +| #define HAVE_SETLOCALE 1 +| #define HAVE_TTYNAME 1 +| #define HAVE_WORDEXP 1 +| #define HAVE_GETOPT_LONG 1 +| #define HAVE_ICONV 1 +| #define ICONV_CONST +| #define HAVE_GOOD_ICONV 1 +| #define ICONV_IS_TRANSITIVE 1 +| /* end confdefs.h. */ +| char* program_name = ""; +| int +| main () +| { +| recode_new_outer(0); +| ; +| return 0; +| } +configure:15573: result: no +configure:15655: checking for locale.alias +configure:15671: result: /usr/share/locale/locale.alias +configure:15807: checking that generated files are newer than configure +configure:15813: result: done +configure:15848: creating ./config.status + +## ---------------------- ## +## Running config.status. ## +## ---------------------- ## + +This file was extended by Enca config.status 1.19, which was +generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = + CONFIG_HEADERS = + CONFIG_LINKS = + CONFIG_COMMANDS = + $ ./config.status + +on pplupo-laptop + +config.status:1177: creating Makefile +config.status:1177: creating enca.spec +config.status:1177: creating enca.pc +config.status:1177: creating devel-docs/Makefile +config.status:1177: creating data/Makefile +config.status:1177: creating lib/Makefile +config.status:1177: creating script/Makefile +config.status:1177: creating script/b-cstocs +config.status:1177: creating script/b-map +config.status:1177: creating script/b-piconv +config.status:1177: creating script/b-umap +config.status:1177: creating src/Makefile +config.status:1177: creating src/HELP +config.status:1177: creating test/Makefile +config.status:1177: creating tools/Makefile +config.status:1177: creating config.h +config.status:1406: executing depfiles commands +config.status:1406: executing libtool commands + +## ---------------- ## +## Cache variables. ## +## ---------------- ## + +ac_cv_build=x86_64-pc-linux-gnu +ac_cv_c_compiler_gnu=yes +ac_cv_c_const=yes +ac_cv_env_CC_set=set +ac_cv_env_CC_value=/usr/bin/cc +ac_cv_env_CFLAGS_set= +ac_cv_env_CFLAGS_value= +ac_cv_env_CPPFLAGS_set= +ac_cv_env_CPPFLAGS_value= +ac_cv_env_CPP_set= +ac_cv_env_CPP_value= +ac_cv_env_LDFLAGS_set= +ac_cv_env_LDFLAGS_value= +ac_cv_env_LIBS_set= +ac_cv_env_LIBS_value= +ac_cv_env_LT_SYS_LIBRARY_PATH_set= +ac_cv_env_LT_SYS_LIBRARY_PATH_value= +ac_cv_env_build_alias_set= +ac_cv_env_build_alias_value= +ac_cv_env_host_alias_set= +ac_cv_env_host_alias_value= +ac_cv_env_target_alias_set= +ac_cv_env_target_alias_value= +ac_cv_func_fork=yes +ac_cv_func_fork_works=yes +ac_cv_func_ftruncate=yes +ac_cv_func_getopt_long=yes +ac_cv_func_gettimeofday=yes +ac_cv_func_isatty=yes +ac_cv_func_nl_langinfo=yes +ac_cv_func_random=yes +ac_cv_func_realpath=yes +ac_cv_func_setlocale=yes +ac_cv_func_stpcpy=yes +ac_cv_func_strstr=yes +ac_cv_func_ttyname=yes +ac_cv_func_vfork=yes +ac_cv_func_vfork_works=yes +ac_cv_func_wordexp=yes +ac_cv_have_decl_LC_MESSAGES=yes +ac_cv_header_dlfcn_h=yes +ac_cv_header_errno_h=yes +ac_cv_header_fcntl_h=yes +ac_cv_header_getopt_h=yes +ac_cv_header_inttypes_h=yes +ac_cv_header_langinfo_h=yes +ac_cv_header_limits_h=yes +ac_cv_header_locale_h=yes +ac_cv_header_memory_h=yes +ac_cv_header_minix_config_h=no +ac_cv_header_stat_broken=no +ac_cv_header_stdbool_h=no +ac_cv_header_stdc=yes +ac_cv_header_stdint_h=yes +ac_cv_header_stdlib_h=yes +ac_cv_header_string_h=yes +ac_cv_header_strings_h=yes +ac_cv_header_sys_stat_h=yes +ac_cv_header_sys_time_h=yes +ac_cv_header_sys_types_h=yes +ac_cv_header_sys_wait_h=yes +ac_cv_header_time=yes +ac_cv_header_time_h=yes +ac_cv_header_unistd_h=yes +ac_cv_header_vfork_h=no +ac_cv_header_wordexp_h=yes +ac_cv_host=x86_64-pc-linux-gnu +ac_cv_lib_m_sqrt=yes +ac_cv_objext=o +ac_cv_path_EGREP='/usr/bin/grep -E' +ac_cv_path_FGREP='/usr/bin/grep -F' +ac_cv_path_GCOV=/usr/bin/gcov +ac_cv_path_GREP=/usr/bin/grep +ac_cv_path_MKTEMP_PROG=/usr/bin/mktemp +ac_cv_path_PICONV_PROG=/usr/bin/core_perl/piconv +ac_cv_path_RECODE_PROG=/usr/bin/recode +ac_cv_path_SED=/usr/bin/sed +ac_cv_path_install='/usr/bin/install -c' +ac_cv_path_lt_DD=/usr/bin/dd +ac_cv_path_mkdir=/usr/bin/mkdir +ac_cv_prog_AWK=gawk +ac_cv_prog_CPP='/usr/bin/cc -E' +ac_cv_prog_GTKDOC=false +ac_cv_prog_ac_ct_AR=ar +ac_cv_prog_ac_ct_CC=/usr/bin/cc +ac_cv_prog_ac_ct_OBJDUMP=objdump +ac_cv_prog_ac_ct_RANLIB=ranlib +ac_cv_prog_ac_ct_STRIP=strip +ac_cv_prog_cc_c89= +ac_cv_prog_cc_g=yes +ac_cv_prog_make_make_set=yes +ac_cv_safe_to_define___extensions__=yes +ac_cv_search_strerror='none required' +ac_cv_type__Bool=yes +ac_cv_type_mode_t=yes +ac_cv_type_off_t=yes +ac_cv_type_pid_t=yes +ac_cv_type_size_t=yes +ac_cv_type_ssize_t=yes +ac_cv_type_uid_t=yes +acl_cv_hardcode_direct=no +acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' +acl_cv_hardcode_libdir_separator= +acl_cv_hardcode_minus_L=no +acl_cv_libext=a +acl_cv_path_LD='/usr/bin/ld -m elf_x86_64' +acl_cv_prog_gnu_ld=yes +acl_cv_rpath=done +acl_cv_shlibext=so +acl_cv_wl=-Wl, +am_cv_CC_dependencies_compiler_type=gcc3 +am_cv_func_iconv=yes +am_cv_func_iconv_works=yes +am_cv_lib_iconv=no +am_cv_make_support_nested_variables=yes +am_cv_prog_cc_c_o=yes +am_cv_proto_iconv='extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);' +am_cv_proto_iconv_arg1= +lt_cv_ar_at_file=@ +lt_cv_deplibs_check_method=pass_all +lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_ld_reload_flag=-r +lt_cv_nm_interface='BSD nm' +lt_cv_objdir=.libs +lt_cv_path_LD=/usr/bin/ld +lt_cv_path_NM='/usr/bin/nm -B' +lt_cv_path_mainfest_tool=no +lt_cv_prog_compiler_c_o=yes +lt_cv_prog_compiler_pic='-fPIC -DPIC' +lt_cv_prog_compiler_pic_works=yes +lt_cv_prog_compiler_rtti_exceptions=no +lt_cv_prog_compiler_static_works=yes +lt_cv_prog_gnu_ld=yes +lt_cv_sharedlib_from_linklib_cmd='printf %s\n' +lt_cv_shlibpath_overrides_runpath=yes +lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' +lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' +lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' +lt_cv_sys_global_symbol_to_import= +lt_cv_sys_max_cmd_len=1572864 +lt_cv_to_host_file_cmd=func_convert_file_noop +lt_cv_to_tool_file_cmd=func_convert_file_noop +lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1' +yeti_cv_file_locale_alias=/usr/share/locale/locale.alias +yeti_cv_lib_c_iconv_transitive=yes +yeti_cv_lib_c_program_invocation_short_name=yes +yeti_cv_lib_recode_new_outer=no + +## ----------------- ## +## Output variables. ## +## ----------------- ## + +ACLOCAL='${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing aclocal-1.15 -I m4' +AMDEPBACKSLASH='\' +AMDEP_FALSE='#' +AMDEP_TRUE='' +AMTAR='$${TAR-tar}' +AM_BACKSLASH='\' +AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +AM_DEFAULT_VERBOSITY='1' +AM_V='$(V)' +AR='ar' +AUTOCONF='${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoconf' +AUTOHEADER='${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoheader' +AUTOMAKE='${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing automake-1.15' +AWK='gawk' +CC='/usr/bin/cc' +CCDEPMODE='depmode=gcc3' +CFLAGS='-Wall -Wextra -W -pedantic -g -O2' +CONVERTER_LIBS=' ' +CPP='/usr/bin/cc -E' +CPPFLAGS='' +CSTOCS_PROG='' +CYGPATH_W='echo' +DEFAULT_CONVERTER_LIST='built-in,iconv' +DEFAULT_EXTERNAL_CONVERTER='recode' +DEFS='-DHAVE_CONFIG_H' +DEPDIR='.deps' +DLLTOOL='false' +DSYMUTIL='' +DUMPBIN='' +ECHO_C='' +ECHO_N='-n' +ECHO_T='' +EGREP='/usr/bin/grep -E' +ENABLE_GTK_DOC_FALSE='' +ENABLE_GTK_DOC_TRUE='#' +EXEEXT='' +FGREP='/usr/bin/grep -F' +GCOV='/usr/bin/gcov' +GCOV_CPPFLAGS='' +GCOV_FLAGS='' +GCOV_LDFLAGS='' +GREP='/usr/bin/grep' +GTKDOC='false' +HTML_DIR='${datarootdir}/gtk-doc/html' +INSTALL_DATA='${INSTALL} -m 644' +INSTALL_PROGRAM='${INSTALL}' +INSTALL_SCRIPT='${INSTALL}' +INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' +LD='/usr/bin/ld -m elf_x86_64' +LDFLAGS='' +LIBICONV='' +LIBM='-lm' +LIBOBJS='' +LIBS=' -lm' +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +LIPO='' +LN_S='ln -s' +LTLIBICONV='' +LTLIBOBJS='' +LT_SYS_LIBRARY_PATH='' +MAINT='#' +MAINTAINER_MODE_FALSE='' +MAINTAINER_MODE_TRUE='#' +MAKEINFO='${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing makeinfo' +MANIFEST_TOOL=':' +MAP_PROG='' +MKDIR_P='/usr/bin/mkdir -p' +MKTEMP_PROG='/usr/bin/mktemp' +NM='/usr/bin/nm -B' +NMEDIT='' +OBJDUMP='objdump' +OBJEXT='o' +OTOOL64='' +OTOOL='' +PACKAGE='enca' +PACKAGE_BUGREPORT='https://github.com/nijel/enca/issues' +PACKAGE_NAME='Enca' +PACKAGE_STRING='Enca 1.19' +PACKAGE_TARNAME='enca' +PACKAGE_URL='' +PACKAGE_VERSION='1.19' +PATH_SEPARATOR=':' +PICONV_PROG='/usr/bin/core_perl/piconv' +RANLIB='ranlib' +RECODE_PROG='/usr/bin/recode' +RELEASE='1' +SED='/usr/bin/sed' +SET_MAKE='' +SHELL='/bin/sh' +SHELL_RANDOM_FILENAME='`/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX`' +STRIP='strip' +UMAP_PROG='' +VERSION='1.19' +ac_ct_AR='ar' +ac_ct_CC='/usr/bin/cc' +ac_ct_DUMPBIN='' +am__EXEEXT_FALSE='' +am__EXEEXT_TRUE='#' +am__fastdepCC_FALSE='#' +am__fastdepCC_TRUE='' +am__include='include' +am__isrc='' +am__leading_dot='.' +am__nodep='_no' +am__quote='' +am__tar='$${TAR-tar} chof - "$$tardir"' +am__untar='$${TAR-tar} xf -' +bindir='${exec_prefix}/bin' +build='x86_64-pc-linux-gnu' +build_alias='' +build_cpu='x86_64' +build_os='linux-gnu' +build_vendor='pc' +datadir='${datarootdir}' +datarootdir='${prefix}/share' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +dvidir='${docdir}' +exec_prefix='${prefix}' +host='x86_64-pc-linux-gnu' +host_alias='' +host_cpu='x86_64' +host_os='linux-gnu' +host_vendor='pc' +htmldir='${docdir}' +includedir='${prefix}/include' +infodir='${datarootdir}/info' +install_sh='${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/install-sh' +libdir='${exec_prefix}/lib' +libexecdir='${exec_prefix}/libexec' +localedir='${datarootdir}/locale' +localstatedir='${prefix}/var' +mandir='${datarootdir}/man' +mkdir_p='$(MKDIR_P)' +oldincludedir='/usr/include' +pdfdir='${docdir}' +prefix='/usr/local' +program_transform_name='s,x,x,' +psdir='${docdir}' +runstatedir='${localstatedir}/run' +sbindir='${exec_prefix}/sbin' +sharedstatedir='${prefix}/com' +sysconfdir='${prefix}/etc' +target_alias='' + +## ----------- ## +## confdefs.h. ## +## ----------- ## + +/* confdefs.h */ +#define PACKAGE_NAME "Enca" +#define PACKAGE_TARNAME "enca" +#define PACKAGE_VERSION "1.19" +#define PACKAGE_STRING "Enca 1.19" +#define PACKAGE_BUGREPORT "https://github.com/nijel/enca/issues" +#define PACKAGE_URL "" +#define PACKAGE "enca" +#define VERSION "1.19" +#define STDC_HEADERS 1 +#define HAVE_SYS_TYPES_H 1 +#define HAVE_SYS_STAT_H 1 +#define HAVE_STDLIB_H 1 +#define HAVE_STRING_H 1 +#define HAVE_MEMORY_H 1 +#define HAVE_STRINGS_H 1 +#define HAVE_INTTYPES_H 1 +#define HAVE_STDINT_H 1 +#define HAVE_UNISTD_H 1 +#define __EXTENSIONS__ 1 +#define _ALL_SOURCE 1 +#define _GNU_SOURCE 1 +#define _POSIX_PTHREAD_SEMANTICS 1 +#define _TANDEM_SOURCE 1 +#define HAVE_DLFCN_H 1 +#define LT_OBJDIR ".libs/" +#define RECODE_PROG "/usr/bin/recode" +#define PICONV_PROG "/usr/bin/core_perl/piconv" +#define STDC_HEADERS 1 +#define HAVE_SYS_WAIT_H 1 +#define TIME_WITH_SYS_TIME 1 +#define HAVE__BOOL 1 +#define HAVE_ERRNO_H 1 +#define HAVE_FCNTL_H 1 +#define HAVE_GETOPT_H 1 +#define HAVE_LANGINFO_H 1 +#define HAVE_LIMITS_H 1 +#define HAVE_LOCALE_H 1 +#define HAVE_MEMORY_H 1 +#define HAVE_STRING_H 1 +#define HAVE_STRINGS_H 1 +#define HAVE_SYS_STAT_H 1 +#define HAVE_SYS_TYPES_H 1 +#define HAVE_SYS_WAIT_H 1 +#define HAVE_SYS_TIME_H 1 +#define HAVE_TIME_H 1 +#define HAVE_UNISTD_H 1 +#define HAVE_WORDEXP_H 1 +#define HAVE_DECL_LC_MESSAGES 1 +#define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 +#define HAVE_FORK 1 +#define HAVE_VFORK 1 +#define HAVE_WORKING_VFORK 1 +#define HAVE_WORKING_FORK 1 +#define HAVE_FTRUNCATE 1 +#define HAVE_GETTIMEOFDAY 1 +#define HAVE_ISATTY 1 +#define HAVE_NL_LANGINFO 1 +#define HAVE_RANDOM 1 +#define HAVE_REALPATH 1 +#define HAVE_STRSTR 1 +#define HAVE_STPCPY 1 +#define HAVE_SETLOCALE 1 +#define HAVE_TTYNAME 1 +#define HAVE_WORDEXP 1 +#define HAVE_GETOPT_LONG 1 +#define HAVE_ICONV 1 +#define ICONV_CONST +#define HAVE_GOOD_ICONV 1 +#define ICONV_IS_TRANSITIVE 1 +#define DEFAULT_CONVERTER_LIST "built-in,iconv" +#define ENABLE_EXTERNAL 1 +#define DEFAULT_EXTERNAL_CONVERTER "recode" +#define HAVE_LOCALE_ALIAS 1 +#define LOCALE_ALIAS_PATH "/usr/share/locale/locale.alias" + +configure: exit 0 diff --git a/wlx/wayland_qt_base/build/enca-1.19/config.rpath b/wlx/wayland_qt_base/build/enca-1.19/config.rpath new file mode 100755 index 0000000..4db13e5 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/config.rpath @@ -0,0 +1,548 @@ +#! /bin/sh +# Output a system dependent set of variables, describing how to set the +# run time search path of shared libraries in an executable. +# +# Copyright 1996-2003 Free Software Foundation, Inc. +# Taken from GNU libtool, 2001 +# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996 +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. +# +# The first argument passed to this file is the canonical host specification, +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld +# should be set by the caller. +# +# The set of defined variables is at the end of this script. + +# Known limitations: +# - On IRIX 6.5 with CC="cc", the run time search patch must not be longer +# than 256 bytes, otherwise the compiler driver will dump core. The only +# known workaround is to choose shorter directory names for the build +# directory and/or the installation directory. + +# All known linkers require a `.a' archive for static linking (except M$VC, +# which needs '.lib'). +libext=a +shrext=.so + +host="$1" +host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` +host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` +host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` + +# Code taken from libtool.m4's AC_LIBTOOL_PROG_COMPILER_PIC. + +wl= +if test "$GCC" = yes; then + wl='-Wl,' +else + case "$host_os" in + aix*) + wl='-Wl,' + ;; + mingw* | pw32* | os2*) + ;; + hpux9* | hpux10* | hpux11*) + wl='-Wl,' + ;; + irix5* | irix6* | nonstopux*) + wl='-Wl,' + ;; + newsos6) + ;; + linux*) + case $CC in + icc|ecc) + wl='-Wl,' + ;; + ccc) + wl='-Wl,' + ;; + esac + ;; + osf3* | osf4* | osf5*) + wl='-Wl,' + ;; + sco3.2v5*) + ;; + solaris*) + wl='-Wl,' + ;; + sunos4*) + wl='-Qoption ld ' + ;; + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + wl='-Wl,' + ;; + sysv4*MP*) + ;; + uts4*) + ;; + esac +fi + +# Code taken from libtool.m4's AC_LIBTOOL_PROG_LD_SHLIBS. + +hardcode_libdir_flag_spec= +hardcode_libdir_separator= +hardcode_direct=no +hardcode_minus_L=no + +case "$host_os" in + cygwin* | mingw* | pw32*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + openbsd*) + with_gnu_ld=no + ;; +esac + +ld_shlibs=yes +if test "$with_gnu_ld" = yes; then + case "$host_os" in + aix3* | aix4* | aix5*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs=no + fi + ;; + amigaos*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports + # that the semantics of dynamic libraries on AmigaOS, at least up + # to version 4, is to share data among multiple programs linked + # with the same dynamic library. Since this doesn't match the + # behavior of shared libraries on other platforms, we can use + # them. + ld_shlibs=no + ;; + beos*) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + cygwin* | mingw* | pw32*) + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec='-L$libdir' + if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + netbsd*) + ;; + solaris* | sysv5*) + if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then + ld_shlibs=no + elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + sunos4*) + hardcode_direct=yes + ;; + *) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + esac + if test "$ld_shlibs" = yes; then + # Unlike libtool, we use -rpath here, not --rpath, since the documented + # option of GNU ld is called -rpath, not --rpath. + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + fi +else + case "$host_os" in + aix3*) + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L=yes + if test "$GCC" = yes; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + aix4* | aix5*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + else + aix_use_runtimelinking=no + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix5*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + esac + fi + hardcode_direct=yes + hardcode_libdir_separator=':' + if test "$GCC" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && \ + strings "$collect2name" | grep resolve_lib_name >/dev/null + then + # We have reworked collect2 + hardcode_direct=yes + else + # We have old collect2 + hardcode_direct=unsupported + hardcode_minus_L=yes + hardcode_libdir_flag_spec='-L$libdir' + hardcode_libdir_separator= + fi + esac + fi + # Begin _LT_AC_SYS_LIBPATH_AIX. + echo 'int main () { return 0; }' > conftest.c + ${CC} ${LDFLAGS} conftest.c -o conftest + aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } +}'` + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } +}'` + fi + if test -z "$aix_libpath"; then + aix_libpath="/usr/lib:/lib" + fi + rm -f conftest.c conftest + # End _LT_AC_SYS_LIBPATH_AIX. + if test "$aix_use_runtimelinking" = yes; then + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + else + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + fi + fi + ;; + amigaos*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + # see comment about different semantics on the GNU ld section + ld_shlibs=no + ;; + bsdi4*) + ;; + cygwin* | mingw* | pw32*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec=' ' + libext=lib + ;; + darwin* | rhapsody*) + if $CC -v 2>&1 | grep 'Apple' >/dev/null ; then + hardcode_direct=no + fi + ;; + dgux*) + hardcode_libdir_flag_spec='-L$libdir' + ;; + freebsd1*) + ld_shlibs=no + ;; + freebsd2.2*) + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + ;; + freebsd2*) + hardcode_direct=yes + hardcode_minus_L=yes + ;; + freebsd*) + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + ;; + hpux9*) + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + hpux10* | hpux11*) + if test "$with_gnu_ld" = no; then + case "$host_cpu" in + hppa*64*) + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=no + ;; + ia64*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=no + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + *) + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + esac + fi + ;; + irix5* | irix6* | nonstopux*) + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + netbsd*) + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + ;; + newsos6) + hardcode_direct=yes + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + openbsd*) + hardcode_direct=yes + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + else + case "$host_os" in + openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) + hardcode_libdir_flag_spec='-R$libdir' + ;; + *) + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + ;; + esac + fi + ;; + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + osf3*) + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + osf4* | osf5*) + if test "$GCC" = yes; then + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + else + # Both cc and cxx compiler support -rpath directly + hardcode_libdir_flag_spec='-rpath $libdir' + fi + hardcode_libdir_separator=: + ;; + sco3.2v5*) + ;; + solaris*) + hardcode_libdir_flag_spec='-R$libdir' + ;; + sunos4*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=yes + hardcode_minus_L=yes + ;; + sysv4) + case $host_vendor in + sni) + hardcode_direct=yes # is this really true??? + ;; + siemens) + hardcode_direct=no + ;; + motorola) + hardcode_direct=no #Motorola manual says yes, but my tests say they lie + ;; + esac + ;; + sysv4.3*) + ;; + sysv4*MP*) + if test -d /usr/nec; then + ld_shlibs=yes + fi + ;; + sysv4.2uw2*) + hardcode_direct=yes + hardcode_minus_L=no + ;; + sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[78]* | unixware7*) + ;; + sysv5*) + hardcode_libdir_flag_spec= + ;; + uts4*) + hardcode_libdir_flag_spec='-L$libdir' + ;; + *) + ld_shlibs=no + ;; + esac +fi + +# Check dynamic linker characteristics +# Code taken from libtool.m4's AC_LIBTOOL_SYS_DYNAMIC_LINKER. +libname_spec='lib$name' +case "$host_os" in + aix3*) + ;; + aix4* | aix5*) + ;; + amigaos*) + ;; + beos*) + ;; + bsdi4*) + ;; + cygwin* | mingw* | pw32*) + shrext=.dll + ;; + darwin* | rhapsody*) + shrext=.dylib + ;; + dgux*) + ;; + freebsd1*) + ;; + freebsd*) + ;; + gnu*) + ;; + hpux9* | hpux10* | hpux11*) + case "$host_cpu" in + ia64*) + shrext=.so + ;; + hppa*64*) + shrext=.sl + ;; + *) + shrext=.sl + ;; + esac + ;; + irix5* | irix6* | nonstopux*) + case "$host_os" in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; + *) libsuff= shlibsuff= ;; + esac + ;; + esac + ;; + linux*oldld* | linux*aout* | linux*coff*) + ;; + linux*) + ;; + netbsd*) + ;; + newsos6) + ;; + nto-qnx) + ;; + openbsd*) + ;; + os2*) + libname_spec='$name' + shrext=.dll + ;; + osf3* | osf4* | osf5*) + ;; + sco3.2v5*) + ;; + solaris*) + ;; + sunos4*) + ;; + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + ;; + sysv4*MP*) + ;; + uts4*) + ;; +esac + +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' +escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` +shlibext=`echo "$shrext" | sed -e 's,^\.,,'` +escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` + +sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF + +# How to pass a linker flag through the compiler. +wl="$escaped_wl" + +# Static library suffix (normally "a"). +libext="$libext" + +# Shared library suffix (normally "so"). +shlibext="$shlibext" + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist. +hardcode_libdir_flag_spec="$escaped_hardcode_libdir_flag_spec" + +# Whether we need a single -rpath flag with a separated argument. +hardcode_libdir_separator="$hardcode_libdir_separator" + +# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the +# resulting binary. +hardcode_direct="$hardcode_direct" + +# Set to yes if using the -LDIR flag during linking hardcodes DIR into the +# resulting binary. +hardcode_minus_L="$hardcode_minus_L" + +EOF diff --git a/wlx/wayland_qt_base/build/enca-1.19/config.status b/wlx/wayland_qt_base/build/enca-1.19/config.status new file mode 100755 index 0000000..743c8b5 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/config.status @@ -0,0 +1,2053 @@ +#! /bin/sh +# Generated by configure. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by Enca $as_me 1.19, which was +generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +# Files that config.status was made for. +config_files=" Makefile enca.spec enca.pc devel-docs/Makefile data/Makefile lib/Makefile script/Makefile script/b-cstocs script/b-map script/b-piconv script/b-umap src/Makefile src/HELP test/Makefile tools/Makefile" +config_headers=" config.h" +config_commands=" depfiles libtool" + +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to <https://github.com/nijel/enca/issues>." + +ac_cs_config="'--disable-shared' '--enable-static' '--with-pic' 'CC=/usr/bin/cc'" +ac_cs_version="\ +Enca config.status 1.19 +configured by ./configure, generated by GNU Autoconf 2.69, + with options \"$ac_cs_config\" + +Copyright (C) 2012 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19' +srcdir='.' +INSTALL='/usr/bin/install -c' +MKDIR_P='/usr/bin/mkdir -p' +AWK='gawk' +test -n "$AWK" || AWK=awk +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=?*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error $? "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error $? "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +if $ac_cs_recheck; then + set X /bin/sh './configure' '--disable-shared' '--enable-static' '--with-pic' 'CC=/usr/bin/cc' $ac_configure_extra_args --no-create --no-recursion + shift + $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6 + CONFIG_SHELL='/bin/sh' + export CONFIG_SHELL + exec "$@" +fi + +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + $as_echo "$ac_log" +} >&5 + +# +# INIT-COMMANDS +# +AMDEP_TRUE="" ac_aux_dir="." + + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' +double_quote_subst='s/\(["`\\]\)/\\\1/g' +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' +macro_version='2.4.6' +macro_revision='2.4.6' +enable_shared='no' +enable_static='yes' +pic_mode='yes' +enable_fast_install='needless' +shared_archive_member_spec='' +SHELL='/bin/sh' +ECHO='printf %s\n' +PATH_SEPARATOR=':' +host_alias='' +host='x86_64-pc-linux-gnu' +host_os='linux-gnu' +build_alias='' +build='x86_64-pc-linux-gnu' +build_os='linux-gnu' +SED='/usr/bin/sed' +Xsed='/usr/bin/sed -e 1s/^X//' +GREP='/usr/bin/grep' +EGREP='/usr/bin/grep -E' +FGREP='/usr/bin/grep -F' +LD='/usr/bin/ld -m elf_x86_64' +NM='/usr/bin/nm -B' +LN_S='ln -s' +max_cmd_len='1572864' +ac_objext='o' +exeext='' +lt_unset='unset' +lt_SP2NL='tr \040 \012' +lt_NL2SP='tr \015\012 \040\040' +lt_cv_to_host_file_cmd='func_convert_file_noop' +lt_cv_to_tool_file_cmd='func_convert_file_noop' +reload_flag=' -r' +reload_cmds='$LD$reload_flag -o $output$reload_objs' +OBJDUMP='objdump' +deplibs_check_method='pass_all' +file_magic_cmd='$MAGIC_CMD' +file_magic_glob='' +want_nocaseglob='no' +DLLTOOL='false' +sharedlib_from_linklib_cmd='printf %s\n' +AR='ar' +AR_FLAGS='cru' +archiver_list_spec='@' +STRIP='strip' +RANLIB='ranlib' +old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib' +old_postuninstall_cmds='' +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' +lock_old_archive_extraction='no' +CC='/usr/bin/cc' +CFLAGS='-Wall -Wextra -W -pedantic -g -O2' +compiler='/usr/bin/cc' +GCC='yes' +lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' +lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' +lt_cv_sys_global_symbol_to_import='' +lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' +lt_cv_nm_interface='BSD nm' +nm_file_list_spec='@' +lt_sysroot='' +lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1' +objdir='.libs' +MAGIC_CMD='file' +lt_prog_compiler_no_builtin_flag=' -fno-builtin' +lt_prog_compiler_pic=' -fPIC -DPIC' +lt_prog_compiler_wl='-Wl,' +lt_prog_compiler_static='-static' +lt_cv_prog_compiler_c_o='yes' +need_locks='no' +MANIFEST_TOOL=':' +DSYMUTIL='' +NMEDIT='' +LIPO='' +OTOOL='' +OTOOL64='' +libext='a' +shrext_cmds='.so' +extract_expsyms_cmds='' +archive_cmds_need_lc='yes' +enable_shared_with_static_runtimes='no' +export_dynamic_flag_spec='$wl--export-dynamic' +whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' +compiler_needs_object='no' +old_archive_from_new_cmds='' +old_archive_from_expsyms_cmds='' +archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' +archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' +module_cmds='' +module_expsym_cmds='' +with_gnu_ld='yes' +allow_undefined_flag='' +no_undefined_flag='' +hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' +hardcode_libdir_separator='' +hardcode_direct='no' +hardcode_direct_absolute='no' +hardcode_minus_L='no' +hardcode_shlibpath_var='unsupported' +hardcode_automatic='no' +inherit_rpath='no' +link_all_deplibs='no' +always_export_symbols='no' +export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' +exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' +include_expsyms='' +prelink_cmds='' +postlink_cmds='' +file_list_spec='' +variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH' +need_lib_prefix='no' +need_version='no' +version_type='linux' +runpath_var='LD_RUN_PATH' +shlibpath_var='LD_LIBRARY_PATH' +shlibpath_overrides_runpath='yes' +libname_spec='lib$name' +library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' +soname_spec='$libname$release$shared_ext$major' +install_override_mode='' +postinstall_cmds='' +postuninstall_cmds='' +finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' +finish_eval='' +hardcode_into_libs='yes' +sys_lib_search_path_spec='/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1 /usr/lib /lib ' +configure_time_dlsearch_path='/lib /usr/lib /usr/lib32 /usr/lib/libfakeroot ' +configure_time_lt_sys_library_path='' +hardcode_action='immediate' +enable_dlopen='unknown' +enable_dlopen_self='unknown' +enable_dlopen_self_static='unknown' +old_striplib='strip --strip-debug' +striplib='strip --strip-unneeded' + +LTCC='/usr/bin/cc' +LTCFLAGS='-g -O2' +compiler='/usr/bin/cc' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_import lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_cv_nm_interface nm_file_list_spec lt_cv_truncate_bin lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib; do + case `eval \\$ECHO \\""\\$$var"\\"` in + *[\\\`\"\$]*) + eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes + ;; + *) + eval "lt_$var=\\\"\$$var\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec configure_time_dlsearch_path configure_time_lt_sys_library_path; do + case `eval \\$ECHO \\""\\$$var"\\"` in + *[\\\`\"\$]*) + eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes + ;; + *) + eval "lt_$var=\\\"\$$var\\\"" + ;; + esac +done + +ac_aux_dir='.' + +# See if we are running on zsh, and set the options that allow our +# commands through without removal of \ escapes INIT. +if test -n "${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST +fi + + + PACKAGE='enca' + VERSION='1.19' + RM='rm -f' + ofile='libtool' + + + + + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "enca.spec") CONFIG_FILES="$CONFIG_FILES enca.spec" ;; + "enca.pc") CONFIG_FILES="$CONFIG_FILES enca.pc" ;; + "devel-docs/Makefile") CONFIG_FILES="$CONFIG_FILES devel-docs/Makefile" ;; + "data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;; + "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;; + "script/Makefile") CONFIG_FILES="$CONFIG_FILES script/Makefile" ;; + "script/b-cstocs") CONFIG_FILES="$CONFIG_FILES script/b-cstocs" ;; + "script/b-map") CONFIG_FILES="$CONFIG_FILES script/b-map" ;; + "script/b-piconv") CONFIG_FILES="$CONFIG_FILES script/b-piconv" ;; + "script/b-umap") CONFIG_FILES="$CONFIG_FILES script/b-umap" ;; + "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; + "src/HELP") CONFIG_FILES="$CONFIG_FILES src/HELP" ;; + "test/Makefile") CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; + "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; + "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; + + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= ac_tmp= + trap 'exit_status=$? + : "${ac_tmp:=$tmp}" + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 +ac_tmp=$tmp + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$ac_tmp/subs1.awk" && +cat >>"$ac_tmp/subs1.awk" <<\_ACAWK && +S["am__EXEEXT_FALSE"]="" +S["am__EXEEXT_TRUE"]="#" +S["LTLIBOBJS"]="" +S["SHELL_RANDOM_FILENAME"]="`/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX`" +S["DEFAULT_CONVERTER_LIST"]="built-in,iconv" +S["DEFAULT_EXTERNAL_CONVERTER"]="recode" +S["CONVERTER_LIBS"]=" " +S["RELEASE"]="1" +S["LTLIBICONV"]="" +S["LIBICONV"]="" +S["LIBOBJS"]="" +S["LIBM"]="-lm" +S["ENABLE_GTK_DOC_FALSE"]="" +S["ENABLE_GTK_DOC_TRUE"]="#" +S["GTKDOC"]="false" +S["HTML_DIR"]="${datarootdir}/gtk-doc/html" +S["GCOV_LDFLAGS"]="" +S["GCOV_CPPFLAGS"]="" +S["GCOV_FLAGS"]="" +S["GCOV"]="/usr/bin/gcov" +S["MAP_PROG"]="" +S["PICONV_PROG"]="/usr/bin/core_perl/piconv" +S["UMAP_PROG"]="" +S["RECODE_PROG"]="/usr/bin/recode" +S["CSTOCS_PROG"]="" +S["MKTEMP_PROG"]="/usr/bin/mktemp" +S["LT_SYS_LIBRARY_PATH"]="" +S["OTOOL64"]="" +S["OTOOL"]="" +S["LIPO"]="" +S["NMEDIT"]="" +S["DSYMUTIL"]="" +S["MANIFEST_TOOL"]=":" +S["RANLIB"]="ranlib" +S["ac_ct_AR"]="ar" +S["AR"]="ar" +S["DLLTOOL"]="false" +S["OBJDUMP"]="objdump" +S["LN_S"]="ln -s" +S["NM"]="/usr/bin/nm -B" +S["ac_ct_DUMPBIN"]="" +S["DUMPBIN"]="" +S["LD"]="/usr/bin/ld -m elf_x86_64" +S["FGREP"]="/usr/bin/grep -F" +S["SED"]="/usr/bin/sed" +S["host_os"]="linux-gnu" +S["host_vendor"]="pc" +S["host_cpu"]="x86_64" +S["host"]="x86_64-pc-linux-gnu" +S["build_os"]="linux-gnu" +S["build_vendor"]="pc" +S["build_cpu"]="x86_64" +S["build"]="x86_64-pc-linux-gnu" +S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool" +S["EGREP"]="/usr/bin/grep -E" +S["GREP"]="/usr/bin/grep" +S["CPP"]="/usr/bin/cc -E" +S["am__fastdepCC_FALSE"]="#" +S["am__fastdepCC_TRUE"]="" +S["CCDEPMODE"]="depmode=gcc3" +S["am__nodep"]="_no" +S["AMDEPBACKSLASH"]="\\" +S["AMDEP_FALSE"]="#" +S["AMDEP_TRUE"]="" +S["am__quote"]="" +S["am__include"]="include" +S["DEPDIR"]=".deps" +S["OBJEXT"]="o" +S["EXEEXT"]="" +S["ac_ct_CC"]="/usr/bin/cc" +S["CPPFLAGS"]="" +S["LDFLAGS"]="" +S["CFLAGS"]="-Wall -Wextra -W -pedantic -g -O2" +S["CC"]="/usr/bin/cc" +S["MAINT"]="#" +S["MAINTAINER_MODE_FALSE"]="" +S["MAINTAINER_MODE_TRUE"]="#" +S["AM_BACKSLASH"]="\\" +S["AM_DEFAULT_VERBOSITY"]="1" +S["AM_DEFAULT_V"]="$(AM_DEFAULT_VERBOSITY)" +S["AM_V"]="$(V)" +S["am__untar"]="$${TAR-tar} xf -" +S["am__tar"]="$${TAR-tar} chof - \"$$tardir\"" +S["AMTAR"]="$${TAR-tar}" +S["am__leading_dot"]="." +S["SET_MAKE"]="" +S["AWK"]="gawk" +S["mkdir_p"]="$(MKDIR_P)" +S["MKDIR_P"]="/usr/bin/mkdir -p" +S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" +S["STRIP"]="strip" +S["install_sh"]="${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/install-sh" +S["MAKEINFO"]="${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoheader" +S["AUTOMAKE"]="${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing automake-1.15" +S["AUTOCONF"]="${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoconf" +S["ACLOCAL"]="${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing aclocal-1.15 -I m4" +S["VERSION"]="1.19" +S["PACKAGE"]="enca" +S["CYGPATH_W"]="echo" +S["am__isrc"]="" +S["INSTALL_DATA"]="${INSTALL} -m 644" +S["INSTALL_SCRIPT"]="${INSTALL}" +S["INSTALL_PROGRAM"]="${INSTALL}" +S["target_alias"]="" +S["host_alias"]="" +S["build_alias"]="" +S["LIBS"]=" -lm" +S["ECHO_T"]="" +S["ECHO_N"]="-n" +S["ECHO_C"]="" +S["DEFS"]="-DHAVE_CONFIG_H" +S["mandir"]="${datarootdir}/man" +S["localedir"]="${datarootdir}/locale" +S["libdir"]="${exec_prefix}/lib" +S["psdir"]="${docdir}" +S["pdfdir"]="${docdir}" +S["dvidir"]="${docdir}" +S["htmldir"]="${docdir}" +S["infodir"]="${datarootdir}/info" +S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}" +S["oldincludedir"]="/usr/include" +S["includedir"]="${prefix}/include" +S["runstatedir"]="${localstatedir}/run" +S["localstatedir"]="${prefix}/var" +S["sharedstatedir"]="${prefix}/com" +S["sysconfdir"]="${prefix}/etc" +S["datadir"]="${datarootdir}" +S["datarootdir"]="${prefix}/share" +S["libexecdir"]="${exec_prefix}/libexec" +S["sbindir"]="${exec_prefix}/sbin" +S["bindir"]="${exec_prefix}/bin" +S["program_transform_name"]="s,x,x," +S["prefix"]="/usr/local" +S["exec_prefix"]="${prefix}" +S["PACKAGE_URL"]="" +S["PACKAGE_BUGREPORT"]="https://github.com/nijel/enca/issues" +S["PACKAGE_STRING"]="Enca 1.19" +S["PACKAGE_VERSION"]="1.19" +S["PACKAGE_TARNAME"]="enca" +S["PACKAGE_NAME"]="Enca" +S["PATH_SEPARATOR"]=":" +S["SHELL"]="/bin/sh" +_ACAWK +cat >>"$ac_tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 +fi # test -n "$CONFIG_FILES" + +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$ac_tmp/defines.awk" <<\_ACAWK || +BEGIN { +D["PACKAGE_NAME"]=" \"Enca\"" +D["PACKAGE_TARNAME"]=" \"enca\"" +D["PACKAGE_VERSION"]=" \"1.19\"" +D["PACKAGE_STRING"]=" \"Enca 1.19\"" +D["PACKAGE_BUGREPORT"]=" \"https://github.com/nijel/enca/issues\"" +D["PACKAGE_URL"]=" \"\"" +D["PACKAGE"]=" \"enca\"" +D["VERSION"]=" \"1.19\"" +D["STDC_HEADERS"]=" 1" +D["HAVE_SYS_TYPES_H"]=" 1" +D["HAVE_SYS_STAT_H"]=" 1" +D["HAVE_STDLIB_H"]=" 1" +D["HAVE_STRING_H"]=" 1" +D["HAVE_MEMORY_H"]=" 1" +D["HAVE_STRINGS_H"]=" 1" +D["HAVE_INTTYPES_H"]=" 1" +D["HAVE_STDINT_H"]=" 1" +D["HAVE_UNISTD_H"]=" 1" +D["__EXTENSIONS__"]=" 1" +D["_ALL_SOURCE"]=" 1" +D["_GNU_SOURCE"]=" 1" +D["_POSIX_PTHREAD_SEMANTICS"]=" 1" +D["_TANDEM_SOURCE"]=" 1" +D["HAVE_DLFCN_H"]=" 1" +D["LT_OBJDIR"]=" \".libs/\"" +D["RECODE_PROG"]=" \"/usr/bin/recode\"" +D["PICONV_PROG"]=" \"/usr/bin/core_perl/piconv\"" +D["STDC_HEADERS"]=" 1" +D["HAVE_SYS_WAIT_H"]=" 1" +D["TIME_WITH_SYS_TIME"]=" 1" +D["HAVE__BOOL"]=" 1" +D["HAVE_ERRNO_H"]=" 1" +D["HAVE_FCNTL_H"]=" 1" +D["HAVE_GETOPT_H"]=" 1" +D["HAVE_LANGINFO_H"]=" 1" +D["HAVE_LIMITS_H"]=" 1" +D["HAVE_LOCALE_H"]=" 1" +D["HAVE_MEMORY_H"]=" 1" +D["HAVE_STRING_H"]=" 1" +D["HAVE_STRINGS_H"]=" 1" +D["HAVE_SYS_STAT_H"]=" 1" +D["HAVE_SYS_TYPES_H"]=" 1" +D["HAVE_SYS_WAIT_H"]=" 1" +D["HAVE_SYS_TIME_H"]=" 1" +D["HAVE_TIME_H"]=" 1" +D["HAVE_UNISTD_H"]=" 1" +D["HAVE_WORDEXP_H"]=" 1" +D["HAVE_DECL_LC_MESSAGES"]=" 1" +D["HAVE_PROGRAM_INVOCATION_SHORT_NAME"]=" 1" +D["HAVE_FORK"]=" 1" +D["HAVE_VFORK"]=" 1" +D["HAVE_WORKING_VFORK"]=" 1" +D["HAVE_WORKING_FORK"]=" 1" +D["HAVE_FTRUNCATE"]=" 1" +D["HAVE_GETTIMEOFDAY"]=" 1" +D["HAVE_ISATTY"]=" 1" +D["HAVE_NL_LANGINFO"]=" 1" +D["HAVE_RANDOM"]=" 1" +D["HAVE_REALPATH"]=" 1" +D["HAVE_STRSTR"]=" 1" +D["HAVE_STPCPY"]=" 1" +D["HAVE_SETLOCALE"]=" 1" +D["HAVE_TTYNAME"]=" 1" +D["HAVE_WORDEXP"]=" 1" +D["HAVE_GETOPT_LONG"]=" 1" +D["HAVE_ICONV"]=" 1" +D["ICONV_CONST"]=" " +D["HAVE_GOOD_ICONV"]=" 1" +D["ICONV_IS_TRANSITIVE"]=" 1" +D["DEFAULT_CONVERTER_LIST"]=" \"built-in,iconv\"" +D["ENABLE_EXTERNAL"]=" 1" +D["DEFAULT_EXTERNAL_CONVERTER"]=" \"recode\"" +D["HAVE_LOCALE_ALIAS"]=" 1" +D["LOCALE_ALIAS_PATH"]=" \"/usr/share/locale/locale.alias\"" + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ { + line = $ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK + as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$ac_tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$ac_tmp/stdin" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} + ac_datarootdir_hack=' + s&@datadir@&${datarootdir}&g + s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g + s&@infodir@&${datarootdir}/info&g + s&@localedir@&${datarootdir}/locale&g + s&@mandir@&${datarootdir}/man&g + s&\${datarootdir}&${prefix}/share&g' ;; +esac +ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{ +h +s/// +s/^/:/ +s/[ ]*$/:/ +s/:\$(srcdir):/:/g +s/:\${srcdir}:/:/g +s/:@srcdir@:/:/g +s/^:*// +s/:*$// +x +s/\(=[ ]*\).*/\1/ +G +s/\n// +s/^[^=]*=[ ]*$// +} + +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ + "$ac_tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&2;} + + rm -f "$ac_tmp/stdin" + case $ac_file in + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; + esac \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # + if test x"$ac_file" != x-; then + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" + } >"$ac_tmp/config.h" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$ac_tmp/config.h" "$ac_file" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error $? "could not create -" "$LINENO" 5 + fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Older Autoconf quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named 'Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running 'make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "$am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} + ;; + "libtool":C) + + # See if we are running on zsh, and set the options that allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST + fi + + cfgfile=${ofile}T + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL +# Generated automatically by $as_me ($PACKAGE) $VERSION +# NOTE: Changes made to this file will be lost: look at ltmain.sh. + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + +# Copyright (C) 2014 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + + +# The names of the tagged configurations supported by this script. +available_tags='' + +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + +# Whether or not to build static libraries. +build_old_libs=$enable_static + +# What type of objects to build. +pic_mode=$pic_mode + +# Whether or not to optimize for fast installation. +fast_install=$enable_fast_install + +# Shared archive member basename,for filename based shared library versioning on AIX. +shared_archive_member_spec=$shared_archive_member_spec + +# Shell to use when invoking shell scripts. +SHELL=$lt_SHELL + +# An echo program that protects backslashes. +ECHO=$lt_ECHO + +# The PATH separator for the build system. +PATH_SEPARATOR=$lt_PATH_SEPARATOR + +# The host system. +host_alias=$host_alias +host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os + +# A sed program that does not truncate output. +SED=$lt_SED + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="\$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP=$lt_GREP + +# An ERE matcher. +EGREP=$lt_EGREP + +# A literal string matcher. +FGREP=$lt_FGREP + +# A BSD- or MS-compatible name lister. +NM=$lt_NM + +# Whether we need soft or hard links. +LN_S=$lt_LN_S + +# What is the maximum length of a command? +max_cmd_len=$max_cmd_len + +# Object file suffix (normally "o"). +objext=$ac_objext + +# Executable file suffix (normally ""). +exeext=$exeext + +# whether the shell understands "unset". +lt_unset=$lt_unset + +# turn spaces into newlines. +SP2NL=$lt_lt_SP2NL + +# turn newlines into spaces. +NL2SP=$lt_lt_NL2SP + +# convert \$build file names to \$host format. +to_host_file_cmd=$lt_cv_to_host_file_cmd + +# convert \$build files to toolchain format. +to_tool_file_cmd=$lt_cv_to_tool_file_cmd + +# An object symbol dumper. +OBJDUMP=$lt_OBJDUMP + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method=$lt_deplibs_check_method + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd=$lt_file_magic_cmd + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob=$lt_file_magic_glob + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob=$lt_want_nocaseglob + +# DLL creation program. +DLLTOOL=$lt_DLLTOOL + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd + +# The archiver. +AR=$lt_AR + +# Flags to create an archive. +AR_FLAGS=$lt_AR_FLAGS + +# How to feed a file listing to the archiver. +archiver_list_spec=$lt_archiver_list_spec + +# A symbol stripping program. +STRIP=$lt_STRIP + +# Commands used to install an old-style archive. +RANLIB=$lt_RANLIB +old_postinstall_cmds=$lt_old_postinstall_cmds +old_postuninstall_cmds=$lt_old_postuninstall_cmds + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=$lock_old_archive_extraction + +# A C compiler. +LTCC=$lt_CC + +# LTCC compiler flags. +LTCFLAGS=$lt_CFLAGS + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl + +# Transform the output of nm into a list of symbols to manually relocate. +global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix + +# The name lister interface. +nm_interface=$lt_lt_cv_nm_interface + +# Specify filename containing input files for \$NM. +nm_file_list_spec=$lt_nm_file_list_spec + +# The root where to search for dependent libraries,and where our libraries should be installed. +lt_sysroot=$lt_sysroot + +# Command to truncate a binary pipe. +lt_truncate_bin=$lt_lt_cv_truncate_bin + +# The name of the directory that contains temporary libtool files. +objdir=$objdir + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=$MAGIC_CMD + +# Must we lock files when doing compilation? +need_locks=$lt_need_locks + +# Manifest tool. +MANIFEST_TOOL=$lt_MANIFEST_TOOL + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL=$lt_DSYMUTIL + +# Tool to change global to local symbols on Mac OS X. +NMEDIT=$lt_NMEDIT + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO=$lt_LIPO + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL=$lt_OTOOL + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64=$lt_OTOOL64 + +# Old archive suffix (normally "a"). +libext=$libext + +# Shared library suffix (normally ".so"). +shrext_cmds=$lt_shrext_cmds + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds=$lt_extract_expsyms_cmds + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink=$lt_variables_saved_for_relink + +# Do we need the "lib" prefix for modules? +need_lib_prefix=$need_lib_prefix + +# Do we need a version for libraries? +need_version=$need_version + +# Library versioning type. +version_type=$version_type + +# Shared library runtime path variable. +runpath_var=$runpath_var + +# Shared library path variable. +shlibpath_var=$shlibpath_var + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=$shlibpath_overrides_runpath + +# Format of library name prefix. +libname_spec=$lt_libname_spec + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec=$lt_library_names_spec + +# The coded name of the library, if different from the real name. +soname_spec=$lt_soname_spec + +# Permission mode override for installation of shared libraries. +install_override_mode=$lt_install_override_mode + +# Command to use after installation of a shared archive. +postinstall_cmds=$lt_postinstall_cmds + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds=$lt_postuninstall_cmds + +# Commands used to finish a libtool library installation in a directory. +finish_cmds=$lt_finish_cmds + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval=$lt_finish_eval + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=$hardcode_into_libs + +# Compile-time system search path for libraries. +sys_lib_search_path_spec=$lt_sys_lib_search_path_spec + +# Detected run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path + +# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. +configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path + +# Whether dlopen is supported. +dlopen_support=$enable_dlopen + +# Whether dlopen of programs is supported. +dlopen_self=$enable_dlopen_self + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=$enable_dlopen_self_static + +# Commands to strip libraries. +old_striplib=$lt_old_striplib +striplib=$lt_striplib + + +# The linker used to build libraries. +LD=$lt_LD + +# How to create reloadable object files. +reload_flag=$lt_reload_flag +reload_cmds=$lt_reload_cmds + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds + +# A language specific compiler. +CC=$lt_compiler + +# Is the compiler the GNU compiler? +with_gcc=$GCC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds +archive_expsym_cmds=$lt_archive_expsym_cmds + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds +module_expsym_cmds=$lt_module_expsym_cmds + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \$shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action + +# ### END LIBTOOL CONFIG + +_LT_EOF + + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + + +# ### END FUNCTIONS SHARED WITH CONFIGURE + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test set != "${COLLECT_NAMES+set}"; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + +ltmain=$ac_aux_dir/ltmain.sh + + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" + + ;; + + esac +done # for ac_tag + + +as_fn_exit 0 diff --git a/wlx/wayland_qt_base/build/enca-1.19/config.sub b/wlx/wayland_qt_base/build/enca-1.19/config.sub new file mode 100755 index 0000000..1acc966 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/config.sub @@ -0,0 +1,1813 @@ +#! /bin/sh +# Configuration validation subroutine script. +# Copyright 1992-2015 Free Software Foundation, Inc. + +timestamp='2015-08-20' + +# This file is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). + + +# Please send patches to <config-patches@gnu.org>. +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS + +Canonicalize a configuration name. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to <config-patches@gnu.org>." + +version="\ +GNU config.sub ($timestamp) + +Copyright 1992-2015 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo $1 + exit ;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ + linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \ + kopensolaris*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + android-linux) + os=-linux-android + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown + ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] + then os=`echo $1 | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis | -knuth | -cray | -microblaze*) + os= + basic_machine=$1 + ;; + -bluegene*) + os=-cnk + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*178) + os=-lynxos178 + ;; + -lynx*5) + os=-lynxos5 + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + ;; + -windowsnt*) + os=`echo $os | sed -e 's/windowsnt/winnt/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | aarch64 | aarch64_be \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arceb \ + | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ + | avr | avr32 \ + | ba \ + | be32 | be64 \ + | bfin \ + | c4x | c8051 | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | e2k | epiphany \ + | fido | fr30 | frv | ft32 \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | hexagon \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ + | k1om \ + | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64octeon | mips64octeonel \ + | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa32r6 | mipsisa32r6el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64r6 | mipsisa64r6el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipsr5900 | mipsr5900el \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | moxie \ + | mt \ + | msp430 \ + | nds32 | nds32le | nds32be \ + | nios | nios2 | nios2eb | nios2el \ + | ns16k | ns32k \ + | open8 | or1k | or1knd | or32 \ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pyramid \ + | riscv32 | riscv64 \ + | rl78 | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu \ + | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | ubicom32 \ + | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | visium \ + | we32k \ + | x86 | xc16x | xstormy16 | xtensa \ + | z8k | z80) + basic_machine=$basic_machine-unknown + ;; + c54x) + basic_machine=tic54x-unknown + ;; + c55x) + basic_machine=tic55x-unknown + ;; + c6x) + basic_machine=tic6x-unknown + ;; + leon|leon[3-9]) + basic_machine=sparc-$basic_machine + ;; + m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + ;; + ms1) + basic_machine=mt-unknown + ;; + + strongarm | thumb | xscale) + basic_machine=arm-unknown + ;; + xgate) + basic_machine=$basic_machine-unknown + os=-none + ;; + xscaleeb) + basic_machine=armeb-unknown + ;; + + xscaleel) + basic_machine=armel-unknown + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | aarch64-* | aarch64_be-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ + | ba-* \ + | be32-* | be64-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | c8051-* | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | e2k-* | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | hexagon-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ + | k1om-* \ + | le32-* | le64-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ + | microblaze-* | microblazeel-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64octeon-* | mips64octeonel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa32r6-* | mipsisa32r6el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64r6-* | mipsisa64r6el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipsr5900-* | mipsr5900el-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | mt-* \ + | msp430-* \ + | nds32-* | nds32le-* | nds32be-* \ + | nios-* | nios2-* | nios2eb-* | nios2el-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ + | open8-* \ + | or1k*-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pyramid-* \ + | riscv32-* | riscv64-* \ + | rl78-* | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \ + | tahoe-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tile*-* \ + | tron-* \ + | ubicom32-* \ + | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ + | vax-* \ + | visium-* \ + | we32k-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-* | z80-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-unknown + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + abacus) + basic_machine=abacus-unknown + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aros) + basic_machine=i386-pc + os=-aros + ;; + asmjs) + basic_machine=asmjs-unknown + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; + c54x-*) + basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c55x-*) + basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c6x-*) + basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16 | cr16-*) + basic_machine=cr16-unknown + os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2* | dpx2*-bull) + basic_machine=m68k-bull + os=-sysv3 + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppa-next) + os=-nextstep3 + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + i386-vsta | vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + leon-*|leon[3-9]-*) + basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` + ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + m88k-omron*) + basic_machine=m88k-omron + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + microblaze*) + basic_machine=microblaze-xilinx + ;; + mingw64) + basic_machine=x86_64-pc + os=-mingw64 + ;; + mingw32) + basic_machine=i686-pc + os=-mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + moxiebox) + basic_machine=moxie-unknown + os=-moxiebox + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; + msys) + basic_machine=i686-pc + os=-msys + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + nacl) + basic_machine=le32-unknown + os=-nacl + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next ) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + neo-tandem) + basic_machine=neo-tandem + ;; + nse-tandem) + basic_machine=nse-tandem + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + openrisc | openrisc-*) + basic_machine=or32-unknown + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; + pentium4) + basic_machine=i786-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc | ppcbe) basic_machine=powerpc-unknown + ;; + ppc-* | ppcbe-*) + basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little | ppc64-le | powerpc64-little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rdos | rdos64) + basic_machine=x86_64-pc + os=-rdos + ;; + rdos32) + basic_machine=i386-pc + os=-rdos + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; + sequent) + basic_machine=i386-sequent + ;; + sh) + basic_machine=sh-hitachi + os=-hms + ;; + sh5el) + basic_machine=sh5le-unknown + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + strongarm-* | thumb-*) + basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tile*) + basic_machine=$basic_machine-unknown + os=-linux-gnu + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + xscale-* | xscalee[bl]-*) + basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim + ;; + z80-*-coff) + basic_machine=z80-unknown + os=-sim + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + mmix) + basic_machine=mmix-knuth + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp10) + # there are many clones, so DEC is not a safe bet + basic_machine=pdp10-unknown + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) + basic_machine=sparc-sun + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases + # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -svr4*) + os=-sysv4 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # First accept the basic system types. + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* | -plan9* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* | -aros* | -cloudabi* | -sortix* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -bitrig* | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* | -cegcc* \ + | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ + | -linux-newlib* | -linux-musl* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo $os | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -os400*) + os=-os400 + ;; + -wince*) + os=-wince + ;; + -osfrose*) + os=-osfrose + ;; + -osf*) + os=-osf + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -syllable*) + os=-syllable + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2 ) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -tpf*) + os=-tpf + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -es1800*) + os=-ose + ;; + -xenix) + os=-xenix + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -zvmoe) + os=-zvmoe + ;; + -dicos*) + os=-dicos + ;; + -nacl*) + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + c4x-* | tic4x-*) + os=-coff + ;; + c8051-*) + os=-elf + ;; + hexagon-*) + os=-elf + ;; + tic54x-*) + os=-coff + ;; + tic55x-*) + os=-coff + ;; + tic6x-*) + os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + ;; + m68*-cisco) + os=-aout + ;; + mep-*) + os=-elf + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + *-be) + os=-beos + ;; + *-haiku) + os=-haiku + ;; + *-ibm) + os=-aix + ;; + *-knuth) + os=-mmixware + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next ) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-next) + os=-nextstep3 + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -cnk*|-aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; +esac + +echo $basic_machine$os +exit + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/wlx/wayland_qt_base/build/enca-1.19/configure b/wlx/wayland_qt_base/build/enca-1.19/configure new file mode 100755 index 0000000..3f55783 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/configure @@ -0,0 +1,18074 @@ +#! /bin/sh +# Guess values for system-dependent variables and create Makefiles. +# Generated by GNU Autoconf 2.69 for Enca 1.19. +# +# Report bugs to <https://github.com/nijel/enca/issues>. +# +# +# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. +# +# +# This configure script is free software; the Free Software Foundation +# gives unlimited permission to copy, distribute and modify it. +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +# Use a proper internal environment variable to ensure we don't fall + # into an infinite loop, continuously re-executing ourselves. + if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then + _as_can_reexec=no; export _as_can_reexec; + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +as_fn_exit 255 + fi + # We don't want this to propagate to other subprocesses. + { _as_can_reexec=; unset _as_can_reexec;} +if test "x$CONFIG_SHELL" = x; then + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1 +test -x / || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 +test \$(( 1 + 1 )) = 2 || exit 1 + + test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ + || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes +else + as_have_required=no +fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + as_found=: + case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi + done;; + esac + as_found=false +done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } +IFS=$as_save_IFS + + + if test "x$CONFIG_SHELL" != x; then : + export CONFIG_SHELL + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +exit 255 +fi + + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org and +$0: https://github.com/nijel/enca/issues about your system, +$0: including any error possibly output before this +$0: message. Then install a modern shell, or manually run +$0: the script under such a shell if you do have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + + + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # If we had to re-execute with $CONFIG_SHELL, we're ensured to have + # already done that, so ensure we don't try to do so again and fall + # in an infinite loop. This has already happened in practice. + _as_can_reexec=no; export _as_can_reexec + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + +SHELL=${CONFIG_SHELL-/bin/sh} + + +test -n "$DJDIR" || exec 7<&0 </dev/null +exec 6>&1 + +# Name of the host. +# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_clean_files= +ac_config_libobj_dir=. +LIBOBJS= +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= + +# Identity of this package. +PACKAGE_NAME='Enca' +PACKAGE_TARNAME='enca' +PACKAGE_VERSION='1.19' +PACKAGE_STRING='Enca 1.19' +PACKAGE_BUGREPORT='https://github.com/nijel/enca/issues' +PACKAGE_URL='' + +ac_unique_file="src/enca.c" +# Factoring default headers for most tests. +ac_includes_default="\ +#include <stdio.h> +#ifdef HAVE_SYS_TYPES_H +# include <sys/types.h> +#endif +#ifdef HAVE_SYS_STAT_H +# include <sys/stat.h> +#endif +#ifdef STDC_HEADERS +# include <stdlib.h> +# include <stddef.h> +#else +# ifdef HAVE_STDLIB_H +# include <stdlib.h> +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +# include <memory.h> +# endif +# include <string.h> +#endif +#ifdef HAVE_STRINGS_H +# include <strings.h> +#endif +#ifdef HAVE_INTTYPES_H +# include <inttypes.h> +#endif +#ifdef HAVE_STDINT_H +# include <stdint.h> +#endif +#ifdef HAVE_UNISTD_H +# include <unistd.h> +#endif" + +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS +SHELL_RANDOM_FILENAME +DEFAULT_CONVERTER_LIST +DEFAULT_EXTERNAL_CONVERTER +CONVERTER_LIBS +RELEASE +LTLIBICONV +LIBICONV +LIBOBJS +LIBM +ENABLE_GTK_DOC_FALSE +ENABLE_GTK_DOC_TRUE +GTKDOC +HTML_DIR +GCOV_LDFLAGS +GCOV_CPPFLAGS +GCOV_FLAGS +GCOV +MAP_PROG +PICONV_PROG +UMAP_PROG +RECODE_PROG +CSTOCS_PROG +MKTEMP_PROG +LT_SYS_LIBRARY_PATH +OTOOL64 +OTOOL +LIPO +NMEDIT +DSYMUTIL +MANIFEST_TOOL +RANLIB +ac_ct_AR +AR +DLLTOOL +OBJDUMP +LN_S +NM +ac_ct_DUMPBIN +DUMPBIN +LD +FGREP +SED +host_os +host_vendor +host_cpu +host +build_os +build_vendor +build_cpu +build +LIBTOOL +EGREP +GREP +CPP +am__fastdepCC_FALSE +am__fastdepCC_TRUE +CCDEPMODE +am__nodep +AMDEPBACKSLASH +AMDEP_FALSE +AMDEP_TRUE +am__quote +am__include +DEPDIR +OBJEXT +EXEEXT +ac_ct_CC +CPPFLAGS +LDFLAGS +CFLAGS +CC +MAINT +MAINTAINER_MODE_FALSE +MAINTAINER_MODE_TRUE +AM_BACKSLASH +AM_DEFAULT_VERBOSITY +AM_DEFAULT_V +AM_V +am__untar +am__tar +AMTAR +am__leading_dot +SET_MAKE +AWK +mkdir_p +MKDIR_P +INSTALL_STRIP_PROGRAM +STRIP +install_sh +MAKEINFO +AUTOHEADER +AUTOMAKE +AUTOCONF +ACLOCAL +VERSION +PACKAGE +CYGPATH_W +am__isrc +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +runstatedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL' +ac_subst_files='' +ac_user_opts=' +enable_option_checking +enable_silent_rules +enable_maintainer_mode +enable_dependency_tracking +enable_shared +enable_static +with_pic +enable_fast_install +with_aix_soname +with_gnu_ld +with_sysroot +enable_libtool_lock +enable_external +with_gcov +with_html_dir +enable_gtk_doc +enable_rpath +with_libiconv_prefix +with_librecode +' + ac_precious_vars='build_alias +host_alias +target_alias +CC +CFLAGS +LDFLAGS +LIBS +CPPFLAGS +CPP +LT_SYS_LIBRARY_PATH' + + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +ac_unrecognized_opts= +ac_unrecognized_sep= +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datarootdir='${prefix}/share' +datadir='${datarootdir}' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +runstatedir='${localstatedir}/run' +includedir='${prefix}/include' +oldincludedir='/usr/include' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' + +ac_prev= +ac_dashdash= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval $ac_prev=\$ac_option + ac_prev= + continue + fi + + case $ac_option in + *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *=) ac_optarg= ;; + *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -runstatedir | --runstatedir | --runstatedi | --runstated \ + | --runstate | --runstat | --runsta | --runst | --runs \ + | --run | --ru | --r) + ac_prev=runstatedir ;; + -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ + | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ + | --run=* | --ru=* | --r=*) + runstatedir=$ac_optarg ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) as_fn_error $? "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information" + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; + esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + as_fn_error $? "missing argument to $ac_option" +fi + +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; + fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac +fi + +# Check all directory arguments for consistency. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir runstatedir +do + eval ac_val=\$$ac_var + # Remove trailing slashes. + case $ac_val in + */ ) + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` + eval $ac_var=\$ac_val;; + esac + # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + as_fn_error $? "working directory cannot be determined" +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + as_fn_error $? "pwd does not report name of working directory" + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$as_myself" || +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_myself" : 'X\(//\)[^/]' \| \ + X"$as_myself" : 'X\(//\)$' \| \ + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" +fi +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures Enca 1.19 to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit + -q, --quiet, --silent do not print \`checking ...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [PREFIX] + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root [DATAROOTDIR/doc/enca] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] +_ACEOF + + cat <<\_ACEOF + +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names + +System types: + --build=BUILD configure for building on BUILD [guessed] + --host=HOST cross-compile to build programs to run on HOST [BUILD] +_ACEOF +fi + +if test -n "$ac_init_help"; then + case $ac_init_help in + short | recursive ) echo "Configuration of Enca 1.19:";; + esac + cat <<\_ACEOF + +Optional Features: + --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --enable-silent-rules less verbose build output (undo: "make V=1") + --disable-silent-rules verbose build output (undo: "make V=0") + --enable-maintainer-mode + enable make rules and dependencies not useful (and + sometimes confusing) to the casual installer + --enable-dependency-tracking + do not reject slow dependency extractors + --disable-dependency-tracking + speeds up one-time build + --enable-shared[=PKGS] build shared libraries [default=yes] + --enable-static[=PKGS] build static libraries [default=yes] + --enable-fast-install[=PKGS] + optimize for fast installation [default=yes] + --disable-libtool-lock avoid locking (might break parallel builds) + --enable-external enable conversion using external programs [yes] + --enable-gtk-doc use gtk-doc to build documentation [auto] + --disable-rpath do not hardcode runtime library paths + +Optional Packages: + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use + both] + --with-aix-soname=aix|svr4|both + shared library versioning (aka "SONAME") variant to + provide on AIX, [default=aix]. + --with-gnu-ld assume the C compiler uses GNU ld [default=no] + --with-sysroot[=DIR] Search for dependent libraries within DIR (or the + compiler's sysroot if not specified). + --with-gcov compile for coverage tests using gcov (default=no) + --with-html-dir=PATH path to installed docs [DATADIR/gtk-doc/html] + --with-gnu-ld assume the C compiler uses GNU ld [default=no] + --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib + --without-libiconv-prefix don't search for libiconv in includedir and libdir + --with-librecode[=DIR] look for librecode in DIR/lib and DIR/include [auto] + +Some influential environment variables: + CC C compiler command + CFLAGS C compiler flags + LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a + nonstandard directory <lib dir> + LIBS libraries to pass to the linker, e.g. -l<library> + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if + you have headers in a nonstandard directory <include dir> + CPP C preprocessor + LT_SYS_LIBRARY_PATH + User-defined run-time library search path. + +Use these variables to override the choices made by `configure' or to help +it to find libraries and programs with nonstandard names/locations. + +Report bugs to <https://github.com/nijel/enca/issues>. +_ACEOF +ac_status=$? +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d "$ac_dir" || + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || + continue + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +fi + +test -n "$ac_init_help" && exit $ac_status +if $ac_init_version; then + cat <<\_ACEOF +Enca configure 1.19 +generated by GNU Autoconf 2.69 + +Copyright (C) 2012 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit +fi + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## + +# ac_fn_c_try_compile LINENO +# -------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_compile + +# ac_fn_c_try_cpp LINENO +# ---------------------- +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } > conftest.i && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_cpp + +# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists, giving a warning if it cannot be compiled using +# the include files in INCLUDES and setting the cache variable VAR +# accordingly. +ac_fn_c_check_header_mongrel () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if eval \${$3+:} false; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +else + # Is the header compilable? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 +$as_echo_n "checking $2 usability... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_header_compiler=yes +else + ac_header_compiler=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 +$as_echo "$ac_header_compiler" >&6; } + +# Is the header present? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 +$as_echo_n "checking $2 presence... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <$2> +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + ac_header_preproc=yes +else + ac_header_preproc=no +fi +rm -f conftest.err conftest.i conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 +$as_echo "$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( + yes:no: ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 +$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} + ;; + no:yes:* ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 +$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 +$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 +$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 +$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} +( $as_echo "## --------------------------------------------------- ## +## Report this to https://github.com/nijel/enca/issues ## +## --------------------------------------------------- ##" + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=\$ac_header_compiler" +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_header_mongrel + +# ac_fn_c_try_run LINENO +# ---------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes +# that executables *can* be run. +ac_fn_c_try_run () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then : + ac_retval=0 +else + $as_echo "$as_me: program exited with status $ac_status" >&5 + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=$ac_status +fi + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_run + +# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_header_compile + +# ac_fn_c_try_link LINENO +# ----------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + test -x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_link + +# ac_fn_c_check_func LINENO FUNC VAR +# ---------------------------------- +# Tests whether FUNC exists, setting the cache variable VAR accordingly +ac_fn_c_check_func () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Define $2 to an innocuous variant, in case <limits.h> declares $2. + For example, HP-UX 11i <limits.h> declares gettimeofday. */ +#define $2 innocuous_$2 + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $2 (); below. + Prefer <limits.h> to <assert.h> if __STDC__ is defined, since + <limits.h> exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include <limits.h> +#else +# include <assert.h> +#endif + +#undef $2 + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $2 (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$2 || defined __stub___$2 +choke me +#endif + +int +main () +{ +return $2 (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_func + +# ac_fn_c_check_type LINENO TYPE VAR INCLUDES +# ------------------------------------------- +# Tests whether TYPE exists after having included INCLUDES, setting cache +# variable VAR accordingly. +ac_fn_c_check_type () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=no" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof ($2)) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof (($2))) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + eval "$3=yes" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_type + +# ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES +# --------------------------------------------- +# Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR +# accordingly. +ac_fn_c_check_decl () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + as_decl_name=`echo $2|sed 's/ *(.*//'` + as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 +$as_echo_n "checking whether $as_decl_name is declared... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +#ifndef $as_decl_name +#ifdef __cplusplus + (void) $as_decl_use; +#else + (void) $as_decl_name; +#endif +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_decl +cat >config.log <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by Enca $as_me 1.19, which was +generated by GNU Autoconf 2.69. Invocation command line was + + $ $0 $@ + +_ACEOF +exec 5>>config.log +{ +cat <<_ASUNAME +## --------- ## +## Platform. ## +## --------- ## + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + $as_echo "PATH: $as_dir" + done +IFS=$as_save_IFS + +} >&5 + +cat >&5 <<_ACEOF + + +## ----------- ## +## Core tests. ## +## ----------- ## + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) + as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done +done +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + $as_echo "## ---------------- ## +## Cache variables. ## +## ---------------- ##" + echo + # The following way of writing the cache mishandles newlines in values, +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + (set) 2>&1 | + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + sed -n \ + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( + *) + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) + echo + + $as_echo "## ----------------- ## +## Output variables. ## +## ----------------- ##" + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then + $as_echo "## ------------------- ## +## File substitutions. ## +## ------------------- ##" + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then + $as_echo "## ----------- ## +## confdefs.h. ## +## ----------- ##" + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && + $as_echo "$as_me: caught signal $ac_signal" + $as_echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -f -r conftest* confdefs.h + +$as_echo "/* confdefs.h */" > confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer an explicitly selected file to automatically selected ones. +ac_site_file1=NONE +ac_site_file2=NONE +if test -n "$CONFIG_SITE"; then + # We do not want a PATH search for config.site. + case $CONFIG_SITE in #(( + -*) ac_site_file1=./$CONFIG_SITE;; + */*) ac_site_file1=$CONFIG_SITE;; + *) ac_site_file1=./$CONFIG_SITE;; + esac +elif test "x$prefix" != xNONE; then + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site +else + ac_site_file1=$ac_default_prefix/share/config.site + ac_site_file2=$ac_default_prefix/etc/config.site +fi +for ac_site_file in "$ac_site_file1" "$ac_site_file2" +do + test "x$ac_site_file" = xNONE && continue + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" \ + || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "failed to load site script $ac_site_file +See \`config.log' for more details" "$LINENO" 5; } + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 +fi +## -------------------- ## +## Main body of script. ## +## -------------------- ## + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + + + +ac_config_files="$ac_config_files Makefile enca.spec enca.pc devel-docs/Makefile data/Makefile lib/Makefile script/Makefile script/b-cstocs script/b-map script/b-piconv script/b-umap src/Makefile src/HELP test/Makefile tools/Makefile" + + +ac_config_headers="$ac_config_headers config.h" + +am__api_version='1.15' + +ac_aux_dir= +for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do + if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi +done +if test -z "$ac_aux_dir"; then + as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 +fi + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +# Reject install programs that cannot install multiple files. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 +$as_echo_n "checking for a BSD-compatible install... " >&6; } +if test -z "$INSTALL"; then +if ${ac_cv_path_install+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in #(( + ./ | .// | /[cC]/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + rm -rf conftest.one conftest.two conftest.dir + echo one > conftest.one + echo two > conftest.two + mkdir conftest.dir + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && + test -s conftest.one && test -s conftest.two && + test -s conftest.dir/conftest.one && + test -s conftest.dir/conftest.two + then + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + fi + done + done + ;; +esac + + done +IFS=$as_save_IFS + +rm -rf conftest.one conftest.two conftest.dir + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + INSTALL=$ac_install_sh + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 +$as_echo "$INSTALL" >&6; } + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 +$as_echo_n "checking whether build environment is sane... " >&6; } +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; +esac + +# Do 'set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + am_has_slept=no + for am_try in 1 2; do + echo "timestamp, slept: $am_has_slept" > conftest.file + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + as_fn_error $? "ls -t appears to fail. Make sure there is not a broken + alias in your environment" "$LINENO" 5 + fi + if test "$2" = conftest.file || test $am_try -eq 2; then + break + fi + # Just in case. + sleep 1 + am_has_slept=yes + done + test "$2" = conftest.file + ) +then + # Ok. + : +else + as_fn_error $? "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +# If we didn't sleep, we still need to ensure time stamps of config.status and +# generated files are strictly newer. +am_sleep_pid= +if grep 'slept: no' conftest.file >/dev/null 2>&1; then + ( sleep 1 ) & + am_sleep_pid=$! +fi + +rm -f conftest.file + +test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +# Double any \ or $. +# By default was `s,x,x', remove it if useless. +ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' +program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` + +# Expand $ac_aux_dir to an absolute path. +am_aux_dir=`cd "$ac_aux_dir" && pwd` + +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --is-lightweight"; then + am_missing_run="$MISSING " +else + am_missing_run= + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 +$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} +fi + +if test x"${install_sh+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi + +# Installed binaries are usually stripped using 'strip' when the user +# run "make install-strip". However 'strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the 'STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 +$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } +if test -z "$MKDIR_P"; then + if ${ac_cv_path_mkdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( + 'mkdir (GNU coreutils) '* | \ + 'mkdir (coreutils) '* | \ + 'mkdir (fileutils) '4.1*) + ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext + break 3;; + esac + done + done + done +IFS=$as_save_IFS + +fi + + test -d ./--version && rmdir ./--version + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else + # As a last resort, use the slow shell script. Don't cache a + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + MKDIR_P="$ac_install_sh -d" + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 +$as_echo "$MKDIR_P" >&6; } + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AWK+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AWK="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AWK" && break +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +# Check whether --enable-silent-rules was given. +if test "${enable_silent_rules+set}" = set; then : + enableval=$enable_silent_rules; +fi + +case $enable_silent_rules in # ((( + yes) AM_DEFAULT_VERBOSITY=0;; + no) AM_DEFAULT_VERBOSITY=1;; + *) AM_DEFAULT_VERBOSITY=1;; +esac +am_make=${MAKE-make} +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 +$as_echo_n "checking whether $am_make supports nested variables... " >&6; } +if ${am_cv_make_support_nested_variables+:} false; then : + $as_echo_n "(cached) " >&6 +else + if $as_echo 'TRUE=$(BAR$(V)) +BAR0=false +BAR1=true +V=1 +am__doit: + @$(TRUE) +.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then + am_cv_make_support_nested_variables=yes +else + am_cv_make_support_nested_variables=no +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 +$as_echo "$am_cv_make_support_nested_variables" >&6; } +if test $am_cv_make_support_nested_variables = yes; then + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi +AM_BACKSLASH='\' + +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + am__isrc=' -I$(srcdir)' + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi + + +# Define the identity of the package. + PACKAGE='enca' + VERSION='1.19' + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +# For better backward compatibility. To be removed once Automake 1.9.x +# dies out for good. For more background, see: +# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> +# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> +mkdir_p='$(MKDIR_P)' + +# We need awk for the "check" target (and possibly the TAP driver). The +# system "awk" is bad on some platforms. +# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AMTAR='$${TAR-tar}' + + +# We'll loop over all known methods to create a tar archive until one works. +_am_tools='gnutar pax cpio none' + +am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' + + + + + + +# POSIX will say in a future version that running "rm -f" with no argument +# is OK; and we want to be able to make that assumption in our Makefile +# recipes. So use an aggressive probe to check that the usage we want is +# actually supported "in the wild" to an acceptable degree. +# See automake bug#10828. +# To make any issue more visible, cause the running configure to be aborted +# by default if the 'rm' program in use doesn't match our expectations; the +# user can still override this though. +if rm -f && rm -fr && rm -rf; then : OK; else + cat >&2 <<'END' +Oops! + +Your 'rm' program seems unable to run without file operands specified +on the command line, even when the '-f' option is present. This is contrary +to the behaviour of most rm programs out there, and not conforming with +the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542> + +Please tell bug-automake@gnu.org about your system, including the value +of your $PATH and any error possibly output before this message. This +can help us improve future automake versions. + +END + if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then + echo 'Configuration will proceed anyway, since you have set the' >&2 + echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 + echo >&2 + else + cat >&2 <<'END' +Aborting the configuration process, to ensure you take notice of the issue. + +You can download and install GNU coreutils to get an 'rm' implementation +that behaves properly: <http://www.gnu.org/software/coreutils/>. + +If you want to complete the configuration process using your problematic +'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM +to "yes", and re-run configure. + +END + as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 + fi +fi + + test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" + for k in m4 ; do ACLOCAL="$ACLOCAL -I $k" ; done + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 +$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } + # Check whether --enable-maintainer-mode was given. +if test "${enable_maintainer_mode+set}" = set; then : + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval +else + USE_MAINTAINER_MODE=no +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 +$as_echo "$USE_MAINTAINER_MODE" >&6; } + if test $USE_MAINTAINER_MODE = yes; then + MAINTAINER_MODE_TRUE= + MAINTAINER_MODE_FALSE='#' +else + MAINTAINER_MODE_TRUE='#' + MAINTAINER_MODE_FALSE= +fi + + MAINT=$MAINTAINER_MODE_TRUE + + + +RELEASE=1 + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AWK+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AWK="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AWK" && break +done + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "no acceptable C compiler found in \$PATH +See \`config.log' for more details" "$LINENO" 5; } + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" +# Try to create an executable without -o first, disregard a.out. +# It will help us diagnose broken compilers, and finding out an intuition +# of exeext. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 +$as_echo_n "checking whether the C compiler works... " >&6; } +ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` + +# The possible output files: +ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" + +ac_rmfiles= +for ac_file in $ac_files +do + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac +done +rm -f $ac_rmfiles + +if { { ac_try="$ac_link_default" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. +# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +# in a Makefile. We should not override ac_cv_exeext if it was cached, +# so that the user can short-circuit this test for compilers unknown to +# Autoconf. +for ac_file in $ac_files '' +do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi + # We set ac_cv_exeext here because the later test for it is not + # safe: cross compilers may not add the suffix if given an `-o' + # argument, so we may need to know it at that point already. + # Even if this section looks crufty: it has the advantage of + # actually working. + break;; + * ) + break;; + esac +done +test "$ac_cv_exeext" = no && ac_cv_exeext= + +else + ac_file='' +fi +if test -z "$ac_file"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error 77 "C compiler cannot create executables +See \`config.log' for more details" "$LINENO" 5; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 +$as_echo_n "checking for C compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } +ac_exeext=$ac_cv_exeext + +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 +$as_echo_n "checking for suffix of executables... " >&6; } +if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # If both `conftest.exe' and `conftest' are `present' (well, observable) +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +# work properly (i.e., refer to `conftest.exe'), while it won't with +# `rm'. +for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac +done +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest conftest$ac_cv_exeext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +$as_echo "$ac_cv_exeext" >&6; } + +rm -f conftest.$ac_ext +EXEEXT=$ac_cv_exeext +ac_exeext=$EXEEXT +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <stdio.h> +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details" "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 +$as_echo_n "checking for suffix of object files... " >&6; } +if ${ac_cv_objext+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.o conftest.obj +if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac +done +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of object files: cannot compile +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest.$ac_cv_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 +$as_echo "$ac_cv_objext" >&6; } +OBJEXT=$ac_cv_objext +ac_objext=$OBJEXT +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +if ${ac_cv_c_compiler_gnu+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +$as_echo "$ac_cv_c_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GCC=yes +else + GCC= +fi +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +$as_echo_n "checking whether $CC accepts -g... " >&6; } +if ${ac_cv_prog_cc_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +else + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +$as_echo "$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if ${ac_cv_prog_cc_c89+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <stdarg.h> +#include <stdio.h> +struct stat; +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c89" != xno; then : + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 +$as_echo_n "checking whether $CC understands -c and -o together... " >&6; } +if ${am_cv_prog_cc_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF + # Make sure it works both with $CC and with simple cc. + # Following AC_PROG_CC_C_O, we do the test twice because some + # compilers refuse to overwrite an existing .o file with -o, + # though they will create one. + am_cv_prog_cc_c_o=yes + for am_i in 1 2; do + if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 + ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } \ + && test -f conftest2.$ac_objext; then + : OK + else + am_cv_prog_cc_c_o=no + break + fi + done + rm -f core conftest* + unset am_i +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 +$as_echo "$am_cv_prog_cc_c_o" >&6; } +if test "$am_cv_prog_cc_c_o" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +DEPDIR="${am__leading_dot}deps" + +ac_config_commands="$ac_config_commands depfiles" + + +am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 +$as_echo_n "checking for style of include used by $am_make... " >&6; } +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from 'make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 +$as_echo "$_am_result" >&6; } +rm -f confinc confmf + +# Check whether --enable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; +fi + +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi + if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + + +depcc="$CC" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CC_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named 'D' -- because '-MD' means "put the output + # in D". + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with + # Solaris 10 /bin/sh. + echo '/* dummy */' > sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with '-c' and '-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle '-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs. + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # After this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested. + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok '-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 +$as_echo_n "checking how to run the C preprocessor... " >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if ${ac_cv_prog_CPP+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" + do + ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since + # <limits.h> exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include <limits.h> +#else +# include <assert.h> +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <ac_nonexistent.h> +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CPP=$CPP + +fi + CPP=$ac_cv_prog_CPP +else + ac_cv_prog_CPP=$CPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 +$as_echo "$CPP" >&6; } +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since + # <limits.h> exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include <limits.h> +#else +# include <assert.h> +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <ac_nonexistent.h> +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +$as_echo_n "checking for grep that handles long lines and -e... " >&6; } +if ${ac_cv_path_GREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$GREP"; then + ac_path_GREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_GREP" || continue +# Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP +case `"$ac_path_GREP" --version 2>&1` in +*GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" + ac_path_GREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_GREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_GREP"; then + as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_GREP=$GREP +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +$as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +$as_echo_n "checking for egrep... " >&6; } +if ${ac_cv_path_EGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else + if test -z "$EGREP"; then + ac_path_EGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_EGREP" || continue +# Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP +case `"$ac_path_EGREP" --version 2>&1` in +*GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" + ac_path_EGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_EGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_EGREP"; then + as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_EGREP=$EGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +$as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if ${ac_cv_header_stdc+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <stdlib.h> +#include <stdarg.h> +#include <string.h> +#include <float.h> + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes +else + ac_cv_header_stdc=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <string.h> + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <stdlib.h> + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then : + : +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <ctype.h> +#include <stdlib.h> +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + +else + ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +$as_echo "#define STDC_HEADERS 1" >>confdefs.h + +fi + +# On IRIX 5.3, sys/types and inttypes.h are conflicting. +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default +" +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + + + ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" +if test "x$ac_cv_header_minix_config_h" = xyes; then : + MINIX=yes +else + MINIX= +fi + + + if test "$MINIX" = yes; then + +$as_echo "#define _POSIX_SOURCE 1" >>confdefs.h + + +$as_echo "#define _POSIX_1_SOURCE 2" >>confdefs.h + + +$as_echo "#define _MINIX 1" >>confdefs.h + + fi + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 +$as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } +if ${ac_cv_safe_to_define___extensions__+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +# define __EXTENSIONS__ 1 + $ac_includes_default +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_safe_to_define___extensions__=yes +else + ac_cv_safe_to_define___extensions__=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 +$as_echo "$ac_cv_safe_to_define___extensions__" >&6; } + test $ac_cv_safe_to_define___extensions__ = yes && + $as_echo "#define __EXTENSIONS__ 1" >>confdefs.h + + $as_echo "#define _ALL_SOURCE 1" >>confdefs.h + + $as_echo "#define _GNU_SOURCE 1" >>confdefs.h + + $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h + + $as_echo "#define _TANDEM_SOURCE 1" >>confdefs.h + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing strerror" >&5 +$as_echo_n "checking for library containing strerror... " >&6; } +if ${ac_cv_search_strerror+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_func_search_save_LIBS=$LIBS +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char strerror (); +int +main () +{ +return strerror (); + ; + return 0; +} +_ACEOF +for ac_lib in '' cposix; do + if test -z "$ac_lib"; then + ac_res="none required" + else + ac_res=-l$ac_lib + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + fi + if ac_fn_c_try_link "$LINENO"; then : + ac_cv_search_strerror=$ac_res +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext + if ${ac_cv_search_strerror+:} false; then : + break +fi +done +if ${ac_cv_search_strerror+:} false; then : + +else + ac_cv_search_strerror=no +fi +rm conftest.$ac_ext +LIBS=$ac_func_search_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_strerror" >&5 +$as_echo "$ac_cv_search_strerror" >&6; } +ac_res=$ac_cv_search_strerror +if test "$ac_res" != no; then : + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" + +fi + +case `pwd` in + *\ * | *\ *) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 +$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; +esac + + + +macro_version='2.4.6' +macro_revision='2.4.6' + + + + + + + + + + + + + +ltmain=$ac_aux_dir/ltmain.sh + +# Make sure we can run config.sub. +$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || + as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 +$as_echo_n "checking build system type... " >&6; } +if ${ac_cv_build+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_build_alias=$build_alias +test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` +test "x$ac_build_alias" = x && + as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 +ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 +$as_echo "$ac_cv_build" >&6; } +case $ac_cv_build in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; +esac +build=$ac_cv_build +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_build +shift +build_cpu=$1 +build_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +build_os=$* +IFS=$ac_save_IFS +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 +$as_echo_n "checking host system type... " >&6; } +if ${ac_cv_host+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build +else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 +$as_echo "$ac_cv_host" >&6; } +case $ac_cv_host in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; +esac +host=$ac_cv_host +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_host +shift +host_cpu=$1 +host_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +host_os=$* +IFS=$ac_save_IFS +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + +# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' + +ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 +$as_echo_n "checking how to print strings... " >&6; } +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "" +} + +case $ECHO in + printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 +$as_echo "printf" >&6; } ;; + print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 +$as_echo "print -r" >&6; } ;; + *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 +$as_echo "cat" >&6; } ;; +esac + + + + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 +$as_echo_n "checking for a sed that does not truncate output... " >&6; } +if ${ac_cv_path_SED+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for ac_i in 1 2 3 4 5 6 7; do + ac_script="$ac_script$as_nl$ac_script" + done + echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed + { ac_script=; unset ac_script;} + if test -z "$SED"; then + ac_path_SED_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_SED" || continue +# Check for GNU ac_path_SED and select it if it is found. + # Check for GNU $ac_path_SED +case `"$ac_path_SED" --version 2>&1` in +*GNU*) + ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo '' >> "conftest.nl" + "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_SED_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_SED="$ac_path_SED" + ac_path_SED_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_SED_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_SED"; then + as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 + fi +else + ac_cv_path_SED=$SED +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 +$as_echo "$ac_cv_path_SED" >&6; } + SED="$ac_cv_path_SED" + rm -f conftest.sed + +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 +$as_echo_n "checking for fgrep... " >&6; } +if ${ac_cv_path_FGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 + then ac_cv_path_FGREP="$GREP -F" + else + if test -z "$FGREP"; then + ac_path_FGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in fgrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_FGREP" || continue +# Check for GNU ac_path_FGREP and select it if it is found. + # Check for GNU $ac_path_FGREP +case `"$ac_path_FGREP" --version 2>&1` in +*GNU*) + ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'FGREP' >> "conftest.nl" + "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_FGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_FGREP="$ac_path_FGREP" + ac_path_FGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_FGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_FGREP"; then + as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_FGREP=$FGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 +$as_echo "$ac_cv_path_FGREP" >&6; } + FGREP="$ac_cv_path_FGREP" + + +test -z "$GREP" && GREP=grep + + + + + + + + + + + + + + + + + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test yes = "$GCC"; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return, which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD=$ac_prog + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test yes = "$with_gnu_ld"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if ${lt_cv_path_LD+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS=$lt_save_ifs + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD=$ac_dir/$ac_prog + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in + *GNU* | *'with BFD'*) + test no != "$with_gnu_ld" && break + ;; + *) + test yes != "$with_gnu_ld" && break + ;; + esac + fi + done + IFS=$lt_save_ifs +else + lt_cv_path_LD=$LD # Let the user override the test with a path. +fi +fi + +LD=$lt_cv_path_LD +if test -n "$LD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if ${lt_cv_prog_gnu_ld+:} false; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 </dev/null` in +*GNU* | *'with BFD'*) + lt_cv_prog_gnu_ld=yes + ;; +*) + lt_cv_prog_gnu_ld=no + ;; +esac +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_gnu_ld" >&5 +$as_echo "$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 +$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } +if ${lt_cv_path_NM+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM=$NM +else + lt_nm_to_check=${ac_tool_prefix}nm + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS=$lt_save_ifs + test -z "$ac_dir" && ac_dir=. + tmp_nm=$ac_dir/$lt_tmp_nm + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the 'sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty + case $build_os in + mingw*) lt_bad_file=conftest.nm/nofile ;; + *) lt_bad_file=/dev/null ;; + esac + case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in + *$lt_bad_file* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break 2 + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break 2 + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS=$lt_save_ifs + done + : ${lt_cv_path_NM=no} +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 +$as_echo "$lt_cv_path_NM" >&6; } +if test no != "$lt_cv_path_NM"; then + NM=$lt_cv_path_NM +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + if test -n "$ac_tool_prefix"; then + for ac_prog in dumpbin "link -dump" + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DUMPBIN"; then + ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DUMPBIN=$ac_cv_prog_DUMPBIN +if test -n "$DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 +$as_echo "$DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$DUMPBIN" && break + done +fi +if test -z "$DUMPBIN"; then + ac_ct_DUMPBIN=$DUMPBIN + for ac_prog in dumpbin "link -dump" +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DUMPBIN"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN +if test -n "$ac_ct_DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 +$as_echo "$ac_ct_DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_DUMPBIN" && break +done + + if test "x$ac_ct_DUMPBIN" = x; then + DUMPBIN=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DUMPBIN=$ac_ct_DUMPBIN + fi +fi + + case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols -headers" + ;; + *) + DUMPBIN=: + ;; + esac + fi + + if test : != "$DUMPBIN"; then + NM=$DUMPBIN + fi +fi +test -z "$NM" && NM=nm + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 +$as_echo_n "checking the name lister ($NM) interface... " >&6; } +if ${lt_cv_nm_interface+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: output\"" >&5) + cat conftest.out >&5 + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 +$as_echo "$lt_cv_nm_interface" >&6; } + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 +$as_echo_n "checking whether ln -s works... " >&6; } +LN_S=$as_ln_s +if test "$LN_S" = "ln -s"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 +$as_echo "no, using $LN_S" >&6; } +fi + +# find the maximum length of command line arguments +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 +$as_echo_n "checking the maximum length of command line arguments... " >&6; } +if ${lt_cv_sys_max_cmd_len+:} false; then : + $as_echo_n "(cached) " >&6 +else + i=0 + teststring=ABCD + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len" && \ + test undefined != "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test X`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test 17 != "$i" # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac + +fi + +if test -n "$lt_cv_sys_max_cmd_len"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 +$as_echo "$lt_cv_sys_max_cmd_len" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 +$as_echo "none" >&6; } +fi +max_cmd_len=$lt_cv_sys_max_cmd_len + + + + + + +: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi + + + + + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 +$as_echo_n "checking how to convert $build file names to $host format... " >&6; } +if ${lt_cv_to_host_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac + +fi + +to_host_file_cmd=$lt_cv_to_host_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 +$as_echo "$lt_cv_to_host_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 +$as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } +if ${lt_cv_to_tool_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + #assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac + +fi + +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 +$as_echo "$lt_cv_to_tool_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 +$as_echo_n "checking for $LD option to reload object files... " >&6; } +if ${lt_cv_ld_reload_flag+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_reload_flag='-r' +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 +$as_echo "$lt_cv_ld_reload_flag" >&6; } +reload_flag=$lt_cv_ld_reload_flag +case $reload_flag in +"" | " "*) ;; +*) reload_flag=" $reload_flag" ;; +esac +reload_cmds='$LD$reload_flag -o $output$reload_objs' +case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + if test yes != "$GCC"; then + reload_cmds=false + fi + ;; + darwin*) + if test yes = "$GCC"; then + reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' + else + reload_cmds='$LD$reload_flag -o $output$reload_objs' + fi + ;; +esac + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. +set dummy ${ac_tool_prefix}objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OBJDUMP"; then + ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OBJDUMP=$ac_cv_prog_OBJDUMP +if test -n "$OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 +$as_echo "$OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OBJDUMP"; then + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. +set dummy objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OBJDUMP"; then + ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OBJDUMP="objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP +if test -n "$ac_ct_OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 +$as_echo "$ac_ct_OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OBJDUMP" = x; then + OBJDUMP="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OBJDUMP=$ac_ct_OBJDUMP + fi +else + OBJDUMP="$ac_cv_prog_OBJDUMP" +fi + +test -z "$OBJDUMP" && OBJDUMP=objdump + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 +$as_echo_n "checking how to recognize dependent libraries... " >&6; } +if ${lt_cv_deplibs_check_method+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_deplibs_check_method='unknown' +# Need to set the preceding variable on all platforms that support +# interlibrary dependencies. +# 'none' -- dependencies not supported. +# 'unknown' -- same as none, but documents that we really don't know. +# 'pass_all' -- all dependencies passed with no checks. +# 'test_compile' -- check by making test program. +# 'file_magic [[regex]]' -- check by looking for files in library path +# that responds to the $file_magic_cmd with a given extended regex. +# If you have 'file' or equivalent on your system and you're not sure +# whether 'pass_all' will *always* work, you probably want this one. + +case $host_os in +aix[4-9]*) + lt_cv_deplibs_check_method=pass_all + ;; + +beos*) + lt_cv_deplibs_check_method=pass_all + ;; + +bsdi[45]*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' + lt_cv_file_magic_cmd='/usr/bin/file -L' + lt_cv_file_magic_test_file=/shlib/libc.so + ;; + +cygwin*) + # func_win32_libid is a shell function defined in ltmain.sh + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + ;; + +mingw* | pw32*) + # Base MSYS/MinGW do not provide the 'file' command needed by + # func_win32_libid shell function, so use a weaker test based on 'objdump', + # unless we find 'file', for example because we are cross-compiling. + if ( file / ) >/dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[3-9]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd* | bitrig*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +os2*) + lt_cv_deplibs_check_method=pass_all + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 +$as_echo "$lt_cv_deplibs_check_method" >&6; } + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + + + + + + + + + + + + + + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. +set dummy ${ac_tool_prefix}dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DLLTOOL=$ac_cv_prog_DLLTOOL +if test -n "$DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 +$as_echo "$DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DLLTOOL"; then + ac_ct_DLLTOOL=$DLLTOOL + # Extract the first word of "dlltool", so it can be a program name with args. +set dummy dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DLLTOOL"; then + ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DLLTOOL="dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL +if test -n "$ac_ct_DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 +$as_echo "$ac_ct_DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DLLTOOL" = x; then + DLLTOOL="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DLLTOOL=$ac_ct_DLLTOOL + fi +else + DLLTOOL="$ac_cv_prog_DLLTOOL" +fi + +test -z "$DLLTOOL" && DLLTOOL=dlltool + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 +$as_echo_n "checking how to associate runtime and link libraries... " >&6; } +if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh; + # decide which one to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd=$ECHO + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 +$as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + + + + + + + +if test -n "$ac_tool_prefix"; then + for ac_prog in ar + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AR="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AR=$ac_cv_prog_AR +if test -n "$AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 +$as_echo "$AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AR" && break + done +fi +if test -z "$AR"; then + ac_ct_AR=$AR + for ac_prog in ar +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_AR="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_AR=$ac_cv_prog_ac_ct_AR +if test -n "$ac_ct_AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 +$as_echo "$ac_ct_AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_AR" && break +done + + if test "x$ac_ct_AR" = x; then + AR="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + AR=$ac_ct_AR + fi +fi + +: ${AR=ar} +: ${AR_FLAGS=cru} + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 +$as_echo_n "checking for archiver @FILE support... " >&6; } +if ${lt_cv_ar_at_file+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ar_at_file=no + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test 0 -eq "$ac_status"; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test 0 -ne "$ac_status"; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 +$as_echo "$lt_cv_ar_at_file" >&6; } + +if test no = "$lt_cv_ar_at_file"; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +test -z "$STRIP" && STRIP=: + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. +set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +RANLIB=$ac_cv_prog_RANLIB +if test -n "$RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 +$as_echo "$RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. +set dummy ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_RANLIB="ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB +if test -n "$ac_ct_RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 +$as_echo "$ac_ct_RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_RANLIB" = x; then + RANLIB=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + RANLIB=$ac_ct_RANLIB + fi +else + RANLIB="$ac_cv_prog_RANLIB" +fi + +test -z "$RANLIB" && RANLIB=: + + + + + + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + bitrig* | openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + +# Check for command to grab the raw symbol name followed by C symbol from nm. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 +$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } +if ${lt_cv_sys_global_symbol_pipe+:} false; then : + $as_echo_n "(cached) " >&6 +else + +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[BCDEGRST]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([_A-Za-z][_A-Za-z0-9]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[BCDT]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[ABCDGISTW]' + ;; +hpux*) + if test ia64 = "$host_cpu"; then + symcode='[ABCDEGRST]' + fi + ;; +irix* | nonstopux*) + symcode='[BCDEGRST]' + ;; +osf*) + symcode='[BCDEGQRST]' + ;; +solaris*) + symcode='[BDRT]' + ;; +sco3.2v5*) + symcode='[DT]' + ;; +sysv4.2uw2*) + symcode='[DT]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[ABDT]' + ;; +sysv4) + symcode='[DFNSTU]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[ABCDGIRSTW]' ;; +esac + +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Gets list of data symbols to import. + lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" + # Adjust the below global symbol transforms to fixup imported variables. + lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" + lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" + lt_c_name_lib_hook="\ + -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ + -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" +else + # Disable hooks by default. + lt_cv_sys_global_symbol_to_import= + lt_cdecl_hook= + lt_c_name_hook= + lt_c_name_lib_hook= +fi + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n"\ +$lt_cdecl_hook\ +" -e 's/^T .* \(.*\)$/extern int \1();/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ +$lt_c_name_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" + +# Transform an extracted symbol line into symbol name with lib prefix and +# symbol address. +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ +$lt_c_name_lib_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function, + # D for any global variable and I for any imported variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK '"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ +" /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ +" /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ +" {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ +" s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Now try to grab the symbols. + nlist=conftest.nm + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 + (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined __osf__ +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS=conftstm.$ac_objext + CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest$ac_exeext; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&5 + fi + else + echo "cannot find nm_test_var in $nlist" >&5 + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 + fi + else + echo "$progname: failed program was:" >&5 + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test yes = "$pipe_works"; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done + +fi + +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 +$as_echo "failed" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 +$as_echo "ok" >&6; } +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 +$as_echo_n "checking for sysroot... " >&6; } + +# Check whether --with-sysroot was given. +if test "${with_sysroot+set}" = set; then : + withval=$with_sysroot; +else + with_sysroot=no +fi + + +lt_sysroot= +case $with_sysroot in #( + yes) + if test yes = "$GCC"; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_sysroot" >&5 +$as_echo "$with_sysroot" >&6; } + as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 + ;; +esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 +$as_echo "${lt_sysroot:-no}" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 +$as_echo_n "checking for a working dd... " >&6; } +if ${ac_cv_path_lt_DD+:} false; then : + $as_echo_n "(cached) " >&6 +else + printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +: ${lt_DD:=$DD} +if test -z "$lt_DD"; then + ac_path_lt_DD_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in dd; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_lt_DD" || continue +if "$ac_path_lt_DD" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: +fi + $ac_path_lt_DD_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_lt_DD"; then + : + fi +else + ac_cv_path_lt_DD=$lt_DD +fi + +rm -f conftest.i conftest2.i conftest.out +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 +$as_echo "$ac_cv_path_lt_DD" >&6; } + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 +$as_echo_n "checking how to truncate binary pipes... " >&6; } +if ${lt_cv_truncate_bin+:} false; then : + $as_echo_n "(cached) " >&6 +else + printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +lt_cv_truncate_bin= +if "$ac_cv_path_lt_DD" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" +fi +rm -f conftest.i conftest2.i conftest.out +test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 +$as_echo "$lt_cv_truncate_bin" >&6; } + + + + + + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + +# Check whether --enable-libtool-lock was given. +if test "${enable_libtool_lock+set}" = set; then : + enableval=$enable_libtool_lock; +fi + +test no = "$enable_libtool_lock" || enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out what ABI is being produced by ac_compile, and set mode + # options accordingly. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE=32 + ;; + *ELF-64*) + HPUX_IA64_MODE=64 + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo '#line '$LINENO' "configure"' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + if test yes = "$lt_cv_prog_gnu_ld"; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +mips64*-*linux*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo '#line '$LINENO' "configure"' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + emul=elf + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + emul="${emul}32" + ;; + *64-bit*) + emul="${emul}64" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *MSB*) + emul="${emul}btsmip" + ;; + *LSB*) + emul="${emul}ltsmip" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *N32*) + emul="${emul}n32" + ;; + esac + LD="${LD-ld} -m $emul" + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. Note that the listed cases only cover the + # situations where additional linker options are needed (such as when + # doing 32-bit compilation for a host where ld defaults to 64-bit, or + # vice versa); the common cases where no linker options are needed do + # not appear in the list. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + case `/usr/bin/file conftest.o` in + *x86-64*) + LD="${LD-ld} -m elf32_x86_64" + ;; + *) + LD="${LD-ld} -m elf_i386" + ;; + esac + ;; + powerpc64le-*linux*) + LD="${LD-ld} -m elf32lppclinux" + ;; + powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + powerpcle-*linux*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS=$CFLAGS + CFLAGS="$CFLAGS -belf" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 +$as_echo_n "checking whether the C compiler needs -belf... " >&6; } +if ${lt_cv_cc_needs_belf+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_cc_needs_belf=yes +else + lt_cv_cc_needs_belf=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 +$as_echo "$lt_cv_cc_needs_belf" >&6; } + if test yes != "$lt_cv_cc_needs_belf"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS=$SAVE_CFLAGS + fi + ;; +*-*solaris*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*|x86_64-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD=${LD-ld}_sol2 + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks=$enable_libtool_lock + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. +set dummy ${ac_tool_prefix}mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$MANIFEST_TOOL"; then + ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL +if test -n "$MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 +$as_echo "$MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_MANIFEST_TOOL"; then + ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL + # Extract the first word of "mt", so it can be a program name with args. +set dummy mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_MANIFEST_TOOL"; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL +if test -n "$ac_ct_MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 +$as_echo "$ac_ct_MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_MANIFEST_TOOL" = x; then + MANIFEST_TOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL + fi +else + MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" +fi + +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 +$as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } +if ${lt_cv_path_mainfest_tool+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&5 + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 +$as_echo "$lt_cv_path_mainfest_tool" >&6; } +if test yes != "$lt_cv_path_mainfest_tool"; then + MANIFEST_TOOL=: +fi + + + + + + + case $host_os in + rhapsody* | darwin*) + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. +set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DSYMUTIL"; then + ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DSYMUTIL=$ac_cv_prog_DSYMUTIL +if test -n "$DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 +$as_echo "$DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DSYMUTIL"; then + ac_ct_DSYMUTIL=$DSYMUTIL + # Extract the first word of "dsymutil", so it can be a program name with args. +set dummy dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DSYMUTIL"; then + ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL +if test -n "$ac_ct_DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 +$as_echo "$ac_ct_DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DSYMUTIL" = x; then + DSYMUTIL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DSYMUTIL=$ac_ct_DSYMUTIL + fi +else + DSYMUTIL="$ac_cv_prog_DSYMUTIL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. +set dummy ${ac_tool_prefix}nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NMEDIT"; then + ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +NMEDIT=$ac_cv_prog_NMEDIT +if test -n "$NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 +$as_echo "$NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_NMEDIT"; then + ac_ct_NMEDIT=$NMEDIT + # Extract the first word of "nmedit", so it can be a program name with args. +set dummy nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_NMEDIT"; then + ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_NMEDIT="nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT +if test -n "$ac_ct_NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 +$as_echo "$ac_ct_NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_NMEDIT" = x; then + NMEDIT=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + NMEDIT=$ac_ct_NMEDIT + fi +else + NMEDIT="$ac_cv_prog_NMEDIT" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. +set dummy ${ac_tool_prefix}lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$LIPO"; then + ac_cv_prog_LIPO="$LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_LIPO="${ac_tool_prefix}lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +LIPO=$ac_cv_prog_LIPO +if test -n "$LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 +$as_echo "$LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_LIPO"; then + ac_ct_LIPO=$LIPO + # Extract the first word of "lipo", so it can be a program name with args. +set dummy lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_LIPO"; then + ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_LIPO="lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO +if test -n "$ac_ct_LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 +$as_echo "$ac_ct_LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_LIPO" = x; then + LIPO=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + LIPO=$ac_ct_LIPO + fi +else + LIPO="$ac_cv_prog_LIPO" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL"; then + ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OTOOL="${ac_tool_prefix}otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL=$ac_cv_prog_OTOOL +if test -n "$OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 +$as_echo "$OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL"; then + ac_ct_OTOOL=$OTOOL + # Extract the first word of "otool", so it can be a program name with args. +set dummy otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL"; then + ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OTOOL="otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL +if test -n "$ac_ct_OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 +$as_echo "$ac_ct_OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL" = x; then + OTOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL=$ac_ct_OTOOL + fi +else + OTOOL="$ac_cv_prog_OTOOL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL64"; then + ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL64=$ac_cv_prog_OTOOL64 +if test -n "$OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 +$as_echo "$OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL64"; then + ac_ct_OTOOL64=$OTOOL64 + # Extract the first word of "otool64", so it can be a program name with args. +set dummy otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL64"; then + ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OTOOL64="otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 +if test -n "$ac_ct_OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 +$as_echo "$ac_ct_OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL64" = x; then + OTOOL64=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL64=$ac_ct_OTOOL64 + fi +else + OTOOL64="$ac_cv_prog_OTOOL64" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 +$as_echo_n "checking for -single_module linker flag... " >&6; } +if ${lt_cv_apple_cc_single_mod+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_apple_cc_single_mod=no + if test -z "$LT_MULTI_MODULE"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&5 + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test 0 = "$_lt_result"; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&5 + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 +$as_echo "$lt_cv_apple_cc_single_mod" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 +$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } +if ${lt_cv_ld_exported_symbols_list+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_ld_exported_symbols_list=yes +else + lt_cv_ld_exported_symbols_list=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 +$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 +$as_echo_n "checking for -force_load linker flag... " >&6; } +if ${lt_cv_ld_force_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 + echo "$AR cru libconftest.a conftest.o" >&5 + $AR cru libconftest.a conftest.o 2>&5 + echo "$RANLIB libconftest.a" >&5 + $RANLIB libconftest.a 2>&5 + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&5 + elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&5 + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 +$as_echo "$lt_cv_ld_force_load" >&6; } + case $host_os in + rhapsody* | darwin1.[012]) + _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[91]*) + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; + 10.[012][,.]*) + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test yes = "$lt_cv_apple_cc_single_mod"; then + _lt_dar_single_mod='$single_module' + fi + if test yes = "$lt_cv_ld_exported_symbols_list"; then + _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' + fi + if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + +for ac_header in dlfcn.h +do : + ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default +" +if test "x$ac_cv_header_dlfcn_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_DLFCN_H 1 +_ACEOF + +fi + +done + + + + + +# Set options + + + + enable_dlopen=no + + + enable_win32_dll=no + + + # Check whether --enable-shared was given. +if test "${enable_shared+set}" = set; then : + enableval=$enable_shared; p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for pkg in $enableval; do + IFS=$lt_save_ifs + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS=$lt_save_ifs + ;; + esac +else + enable_shared=yes +fi + + + + + + + + + + # Check whether --enable-static was given. +if test "${enable_static+set}" = set; then : + enableval=$enable_static; p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for pkg in $enableval; do + IFS=$lt_save_ifs + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS=$lt_save_ifs + ;; + esac +else + enable_static=yes +fi + + + + + + + + + + +# Check whether --with-pic was given. +if test "${with_pic+set}" = set; then : + withval=$with_pic; lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for lt_pkg in $withval; do + IFS=$lt_save_ifs + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS=$lt_save_ifs + ;; + esac +else + pic_mode=default +fi + + + + + + + + + # Check whether --enable-fast-install was given. +if test "${enable_fast_install+set}" = set; then : + enableval=$enable_fast_install; p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for pkg in $enableval; do + IFS=$lt_save_ifs + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS=$lt_save_ifs + ;; + esac +else + enable_fast_install=yes +fi + + + + + + + + + shared_archive_member_spec= +case $host,$enable_shared in +power*-*-aix[5-9]*,yes) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 +$as_echo_n "checking which variant of shared library versioning to provide... " >&6; } + +# Check whether --with-aix-soname was given. +if test "${with_aix_soname+set}" = set; then : + withval=$with_aix_soname; case $withval in + aix|svr4|both) + ;; + *) + as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 + ;; + esac + lt_cv_with_aix_soname=$with_aix_soname +else + if ${lt_cv_with_aix_soname+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_with_aix_soname=aix +fi + + with_aix_soname=$lt_cv_with_aix_soname +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 +$as_echo "$with_aix_soname" >&6; } + if test aix != "$with_aix_soname"; then + # For the AIX way of multilib, we name the shared archive member + # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', + # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. + # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, + # the AIX toolchain works better with OBJECT_MODE set (default 32). + if test 64 = "${OBJECT_MODE-32}"; then + shared_archive_member_spec=shr_64 + else + shared_archive_member_spec=shr + fi + fi + ;; +*) + with_aix_soname=aix + ;; +esac + + + + + + + + + + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS=$ltmain + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +test -z "$LN_S" && LN_S="ln -s" + + + + + + + + + + + + + + +if test -n "${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 +$as_echo_n "checking for objdir... " >&6; } +if ${lt_cv_objdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 +$as_echo "$lt_cv_objdir" >&6; } +objdir=$lt_cv_objdir + + + + + +cat >>confdefs.h <<_ACEOF +#define LT_OBJDIR "$lt_cv_objdir/" +_ACEOF + + + + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test set != "${COLLECT_NAMES+set}"; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a '.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld=$lt_cv_prog_gnu_ld + +old_CC=$CC +old_CFLAGS=$CFLAGS + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +func_cc_basename $compiler +cc_basename=$func_cc_basename_result + + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 +$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS=$lt_save_ifs + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/${ac_tool_prefix}file"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"${ac_tool_prefix}file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD=$lt_cv_path_MAGIC_CMD + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD + ;; +esac +fi + +MAGIC_CMD=$lt_cv_path_MAGIC_CMD +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + + + +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 +$as_echo_n "checking for file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS=$lt_save_ifs + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/file"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD=$lt_cv_path_MAGIC_CMD + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD + ;; +esac +fi + +MAGIC_CMD=$lt_cv_path_MAGIC_CMD +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + else + MAGIC_CMD=: + fi +fi + + fi + ;; +esac + +# Use C for the default configuration in the libtool script + +lt_save_CC=$CC +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +objext=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + +lt_prog_compiler_no_builtin_flag= + +if test yes = "$GCC"; then + case $cc_basename in + nvcc*) + lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; + *) + lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 +$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } +if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_rtti_exceptions=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="-fno-rtti -fno-exceptions" ## exclude from sc_useless_quotes_in_assignment + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_rtti_exceptions=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } + +if test yes = "$lt_cv_prog_compiler_rtti_exceptions"; then + lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" +else + : +fi + +fi + + + + + + + lt_prog_compiler_wl= +lt_prog_compiler_pic= +lt_prog_compiler_static= + + + if test yes = "$GCC"; then + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_static='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test ia64 = "$host_cpu"; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + fi + lt_prog_compiler_pic='-fPIC' + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. + lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static='$wl-static' + ;; + esac + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + lt_prog_compiler_static= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + ;; + + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + lt_prog_compiler_can_build_shared=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic=-Kconform_pic + fi + ;; + + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + lt_prog_compiler_wl='-Xlinker ' + if test -n "$lt_prog_compiler_pic"; then + lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + lt_prog_compiler_wl='-Wl,' + if test ia64 = "$host_cpu"; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + else + lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + case $cc_basename in + nagfor*) + # NAG Fortran compiler + lt_prog_compiler_wl='-Wl,-Wl,,' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + esac + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static='$wl-static' + ;; + esac + ;; + + hpux9* | hpux10* | hpux11*) + lt_prog_compiler_wl='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + lt_prog_compiler_static='$wl-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + lt_prog_compiler_wl='-Wl,' + # PIC (with -KPIC) is the default. + lt_prog_compiler_static='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + case $cc_basename in + # old Intel for x86_64, which still supported -KPIC. + ecc*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='--shared' + lt_prog_compiler_static='--static' + ;; + nagfor*) + # NAG Fortran compiler + lt_prog_compiler_wl='-Wl,-Wl,,' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + ccc*) + lt_prog_compiler_wl='-Wl,' + # All Alpha code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-qpic' + lt_prog_compiler_static='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='' + ;; + *Sun\ F* | *Sun*Fortran*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Wl,' + ;; + *Intel*\ [CF]*Compiler*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + *Portland\ Group*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + lt_prog_compiler_wl='-Wl,' + # All OSF/1 code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + + rdos*) + lt_prog_compiler_static='-non_shared' + ;; + + solaris*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + lt_prog_compiler_wl='-Qoption ld ';; + *) + lt_prog_compiler_wl='-Wl,';; + esac + ;; + + sunos4*) + lt_prog_compiler_wl='-Qoption ld ' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic='-Kconform_pic' + lt_prog_compiler_static='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + unicos*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_can_build_shared=no + ;; + + uts4*) + lt_prog_compiler_pic='-pic' + lt_prog_compiler_static='-Bstatic' + ;; + + *) + lt_prog_compiler_can_build_shared=no + ;; + esac + fi + +case $host_os in + # For platforms that do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic= + ;; + *) + lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" + ;; +esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } +if ${lt_cv_prog_compiler_pic+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic=$lt_prog_compiler_pic +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 +$as_echo "$lt_cv_prog_compiler_pic" >&6; } +lt_prog_compiler_pic=$lt_cv_prog_compiler_pic + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } +if ${lt_cv_prog_compiler_pic_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic -DPIC" ## exclude from sc_useless_quotes_in_assignment + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } + +if test yes = "$lt_cv_prog_compiler_pic_works"; then + case $lt_prog_compiler_pic in + "" | " "*) ;; + *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; + esac +else + lt_prog_compiler_pic= + lt_prog_compiler_can_build_shared=no +fi + +fi + + + + + + + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if ${lt_cv_prog_compiler_static_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works=no + save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works=yes + fi + else + lt_cv_prog_compiler_static_works=yes + fi + fi + $RM -r conftest* + LDFLAGS=$save_LDFLAGS + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 +$as_echo "$lt_cv_prog_compiler_static_works" >&6; } + +if test yes = "$lt_cv_prog_compiler_static_works"; then + : +else + lt_prog_compiler_static= +fi + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + +hard_links=nottested +if test no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test no = "$hard_links"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag= + always_export_symbols=no + archive_cmds= + archive_expsym_cmds= + compiler_needs_object=no + enable_shared_with_static_runtimes=no + export_dynamic_flag_spec= + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + hardcode_automatic=no + hardcode_direct=no + hardcode_direct_absolute=no + hardcode_libdir_flag_spec= + hardcode_libdir_separator= + hardcode_minus_L=no + hardcode_shlibpath_var=unsupported + inherit_rpath=no + link_all_deplibs=unknown + module_cmds= + module_expsym_cmds= + old_archive_from_new_cmds= + old_archive_from_expsyms_cmds= + thread_safe_flag_spec= + whole_archive_flag_spec= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ' (' and ')$', so one must not match beginning or + # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', + # as well as any symbol that contains 'd'. + exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test yes != "$GCC"; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd* | bitrig*) + with_gnu_ld=no + ;; + linux* | k*bsd*-gnu | gnu*) + link_all_deplibs=no + ;; + esac + + ld_shlibs=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test yes = "$with_gnu_ld"; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; + *\ \(GNU\ Binutils\)\ [3-9]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test yes = "$lt_use_gnu_ld_interface"; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='$wl' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + export_dynamic_flag_spec='$wl--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' + else + whole_archive_flag_spec= + fi + supports_anon_versioning=no + case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test ia64 != "$host_cpu"; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag=unsupported + # Joseph Beckenbach <jrb3@best.com> says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + else + ld_shlibs=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec='-L$libdir' + export_dynamic_flag_spec='$wl--export-all-symbols' + allow_undefined_flag=unsupported + always_export_symbols=no + enable_shared_with_static_runtimes=yes + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs=no + fi + ;; + + haiku*) + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + link_all_deplibs=yes + ;; + + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + shrext_cmds=.dll + archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes=yes + ;; + + interix[3-9]*) + hardcode_direct=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='$wl-rpath,$libdir' + export_dynamic_flag_spec='$wl-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test linux-dietlibc = "$host_os"; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test no = "$tmp_diet" + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + whole_archive_flag_spec= + tmp_sharedflag='--shared' ;; + nagfor*) # NAGFOR 5.3 + tmp_sharedflag='-Wl,-shared' ;; + xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + compiler_needs_object=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + compiler_needs_object=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + + if test yes = "$supports_anon_versioning"; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + tcc*) + export_dynamic_flag_spec='-rdynamic' + ;; + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test yes = "$supports_anon_versioning"; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + ld_shlibs=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + ;; + + sunos4*) + archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + + if test no = "$ld_shlibs"; then + runpath_var= + hardcode_libdir_flag_spec= + export_dynamic_flag_spec= + whole_archive_flag_spec= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + allow_undefined_flag=unsupported + always_export_symbols=yes + archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L=yes + if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + + aix[4-9]*) + if test ia64 = "$host_cpu"; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag= + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then + aix_use_runtimelinking=yes + break + fi + done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds='' + hardcode_direct=yes + hardcode_direct_absolute=yes + hardcode_libdir_separator=':' + link_all_deplibs=yes + file_list_spec='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # traditional, no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + hardcode_direct=no + hardcode_direct_absolute=no + ;; + esac + + if test yes = "$GCC"; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`$CC -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L=yes + hardcode_libdir_flag_spec='-L$libdir' + hardcode_libdir_separator= + fi + ;; + esac + shared_flag='-shared' + if test yes = "$aix_use_runtimelinking"; then + shared_flag="$shared_flag "'$wl-G' + fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' + else + # not using gcc + if test ia64 = "$host_cpu"; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' + else + shared_flag='$wl-bM:SRE' + fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' + fi + fi + + export_dynamic_flag_spec='$wl-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + always_export_symbols=yes + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + if test set = "${lt_cv_aix_libpath+set}"; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=/usr/lib:/lib + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag + else + if test ia64 = "$host_cpu"; then + hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib' + allow_undefined_flag="-z nodefs" + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + if test set = "${lt_cv_aix_libpath+set}"; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=/usr/lib:/lib + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag=' $wl-bernotok' + allow_undefined_flag=' $wl-berok' + if test yes = "$with_gnu_ld"; then + # We only use this code for GNU lds that support --whole-archive. + whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec='$convenience' + fi + archive_cmds_need_lc=yes + archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + bsdi[45]*) + export_dynamic_flag_spec=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + always_export_symbols=yes + file_list_spec='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=.dll + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, )='true' + enable_shared_with_static_runtimes=yes + exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + old_postinstall_cmds='chmod 644 $oldlib' + postlink_cmds='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=.dll + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + old_archive_from_new_cmds='true' + # FIXME: Should let the user specify the lib program. + old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' + enable_shared_with_static_runtimes=yes + ;; + esac + ;; + + darwin* | rhapsody*) + + + archive_cmds_need_lc=no + hardcode_direct=no + hardcode_automatic=yes + hardcode_shlibpath_var=unsupported + if test yes = "$lt_cv_ld_force_load"; then + whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + + else + whole_archive_flag_spec='' + fi + link_all_deplibs=yes + allow_undefined_flag=$_lt_dar_allow_undefined + case $cc_basename in + ifort*|nagfor*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test yes = "$_lt_dar_can_shared"; then + output_verbose_link_cmd=func_echo_all + archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" + module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" + archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" + module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" + + else + ld_shlibs=no + fi + + ;; + + dgux*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + hpux9*) + if test yes = "$GCC"; then + archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + else + archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + fi + hardcode_libdir_flag_spec='$wl+b $wl$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + export_dynamic_flag_spec='$wl-E' + ;; + + hpux10*) + if test yes,no = "$GCC,$with_gnu_ld"; then + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec='$wl+b $wl$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='$wl-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + fi + ;; + + hpux11*) + if test yes,no = "$GCC,$with_gnu_ld"; then + case $host_cpu in + hppa*64*) + archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 +$as_echo_n "checking if $CC understands -b... " >&6; } +if ${lt_cv_prog_compiler__b+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler__b=no + save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS -b" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler__b=yes + fi + else + lt_cv_prog_compiler__b=yes + fi + fi + $RM -r conftest* + LDFLAGS=$save_LDFLAGS + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 +$as_echo "$lt_cv_prog_compiler__b" >&6; } + +if test yes = "$lt_cv_prog_compiler__b"; then + archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' +else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' +fi + + ;; + esac + fi + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec='$wl+b $wl$libdir' + hardcode_libdir_separator=: + + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct=no + hardcode_shlibpath_var=no + ;; + *) + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='$wl-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test yes = "$GCC"; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 +$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } +if ${lt_cv_irix_exported_symbol+:} false; then : + $as_echo_n "(cached) " >&6 +else + save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +int foo (void) { return 0; } +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_irix_exported_symbol=yes +else + lt_cv_irix_exported_symbol=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 +$as_echo "$lt_cv_irix_exported_symbol" >&6; } + if test yes = "$lt_cv_irix_exported_symbol"; then + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' + fi + link_all_deplibs=no + else + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + hardcode_libdir_separator=: + inherit_rpath=yes + link_all_deplibs=yes + ;; + + linux*) + case $cc_basename in + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + ld_shlibs=yes + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + newsos6) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + hardcode_libdir_separator=: + hardcode_shlibpath_var=no + ;; + + *nto* | *qnx*) + ;; + + openbsd* | bitrig*) + if test -f /usr/libexec/ld.so; then + hardcode_direct=yes + hardcode_shlibpath_var=no + hardcode_direct_absolute=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec='$wl-rpath,$libdir' + export_dynamic_flag_spec='$wl-E' + else + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='$wl-rpath,$libdir' + fi + else + ld_shlibs=no + fi + ;; + + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + shrext_cmds=.dll + archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes=yes + ;; + + osf3*) + if test yes = "$GCC"; then + allow_undefined_flag=' $wl-expect_unresolved $wl\*' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + hardcode_libdir_separator=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test yes = "$GCC"; then + allow_undefined_flag=' $wl-expect_unresolved $wl\*' + archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + hardcode_libdir_flag_spec='-rpath $libdir' + fi + archive_cmds_need_lc='no' + hardcode_libdir_separator=: + ;; + + solaris*) + no_undefined_flag=' -z defs' + if test yes = "$GCC"; then + wlarc='$wl' + archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='$wl' + archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_shlibpath_var=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands '-z linker_flag'. GCC discards it without '$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test yes = "$GCC"; then + whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' + else + whole_archive_flag_spec='-z allextract$convenience -z defaultextract' + fi + ;; + esac + link_all_deplibs=yes + ;; + + sunos4*) + if test sequent = "$host_vendor"; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + sysv4) + case $host_vendor in + sni) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' + reload_cmds='$CC -r -o $output$reload_objs' + hardcode_direct=no + ;; + motorola) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + hardcode_shlibpath_var=no + ;; + + sysv4.3*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + export_dynamic_flag_spec='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + ld_shlibs=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag='$wl-z,text' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + runpath_var='LD_RUN_PATH' + + if test yes = "$GCC"; then + archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We CANNOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag='$wl-z,text' + allow_undefined_flag='$wl-z,nodefs' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='$wl-R,$libdir' + hardcode_libdir_separator=':' + link_all_deplibs=yes + export_dynamic_flag_spec='$wl-Bexport' + runpath_var='LD_RUN_PATH' + + if test yes = "$GCC"; then + archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + *) + ld_shlibs=no + ;; + esac + + if test sni = "$host_vendor"; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + export_dynamic_flag_spec='$wl-Blargedynsym' + ;; + esac + fi + fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 +$as_echo "$ld_shlibs" >&6; } +test no = "$ld_shlibs" && can_build_shared=no + +with_gnu_ld=$with_gnu_ld + + + + + + + + + + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc=yes + + if test yes,yes = "$GCC,$enable_shared"; then + case $archive_cmds in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } +if ${lt_cv_archive_cmds_need_lc+:} false; then : + $as_echo_n "(cached) " >&6 +else + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl + pic_flag=$lt_prog_compiler_pic + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag + allow_undefined_flag= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + lt_cv_archive_cmds_need_lc=no + else + lt_cv_archive_cmds_need_lc=yes + fi + allow_undefined_flag=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 +$as_echo "$lt_cv_archive_cmds_need_lc" >&6; } + archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +if test yes = "$GCC"; then + case $host_os in + darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; + *) lt_awk_arg='/^libraries:/' ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;; + *) lt_sed_strip_eq='s|=/|/|g' ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary... + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + # ...but if some path component already ends with the multilib dir we assume + # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). + case "$lt_multi_os_dir; $lt_search_path_spec " in + "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) + lt_multi_os_dir= + ;; + esac + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" + elif test -n "$lt_multi_os_dir"; then + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS = " "; FS = "/|\n";} { + lt_foo = ""; + lt_count = 0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo = "/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[lt_foo]++; } + if (lt_freq[lt_foo] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's|/\([A-Za-z]:\)|\1|g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=.so +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + + + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='$libname$release$shared_ext$major' + ;; + +aix[4-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test ia64 = "$host_cpu"; then + # AIX 5 supports IA64 + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' + # If using run time linking (on AIX 4.2 or later) use lib<name>.so + # instead of lib<name>.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a(lib.so.V)' + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='$libname$shared_ext' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=.dll + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec=$LIB + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[23].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=no + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 + fi + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[3-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test yes = "$lt_cv_prog_gnu_ld"; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +linux*android*) + version_type=none # Android doesn't support versioned libraries. + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + hardcode_libdir_flag_spec='-L$libdir' + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + if ${lt_cv_shlibpath_overrides_runpath+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + lt_cv_shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + +fi + + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd* | bitrig*) + version_type=sunos + sys_lib_dlsearch_path_spec=/usr/lib + need_lib_prefix=no + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no + else + need_version=yes + fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +os2*) + libname_spec='$name' + version_type=windows + shrext_cmds=.dll + need_version=no + need_lib_prefix=no + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test yes = "$with_gnu_ld"; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec; then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=sco + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test yes = "$with_gnu_ld"; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test no = "$dynamic_linker" && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test yes = "$GCC"; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec +fi + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec +fi + +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action= +if test -n "$hardcode_libdir_flag_spec" || + test -n "$runpath_var" || + test yes = "$hardcode_automatic"; then + + # We can hardcode non-existent directories. + if test no != "$hardcode_direct" && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && + test no != "$hardcode_minus_L"; then + # Linking always hardcodes the temporary library directory. + hardcode_action=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 +$as_echo "$hardcode_action" >&6; } + +if test relink = "$hardcode_action" || + test yes = "$inherit_rpath"; then + # Fast installation is not supported + enable_fast_install=no +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + if test yes != "$enable_dlopen"; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen=load_add_on + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen=LoadLibrary + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen=dlopen + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl +else + + lt_cv_dlopen=dyld + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + +fi + + ;; + + tpf*) + # Don't try to run any link tests for TPF. We know it's impossible + # because TPF is a cross-compiler, and we know how we open DSOs. + lt_cv_dlopen=dlopen + lt_cv_dlopen_libs= + lt_cv_dlopen_self=no + ;; + + *) + ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" +if test "x$ac_cv_func_shl_load" = xyes; then : + lt_cv_dlopen=shl_load +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 +$as_echo_n "checking for shl_load in -ldld... " >&6; } +if ${ac_cv_lib_dld_shl_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char shl_load (); +int +main () +{ +return shl_load (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_shl_load=yes +else + ac_cv_lib_dld_shl_load=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 +$as_echo "$ac_cv_lib_dld_shl_load" >&6; } +if test "x$ac_cv_lib_dld_shl_load" = xyes; then : + lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld +else + ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" +if test "x$ac_cv_func_dlopen" = xyes; then : + lt_cv_dlopen=dlopen +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 +$as_echo_n "checking for dlopen in -lsvld... " >&6; } +if ${ac_cv_lib_svld_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lsvld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_svld_dlopen=yes +else + ac_cv_lib_svld_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 +$as_echo "$ac_cv_lib_svld_dlopen" >&6; } +if test "x$ac_cv_lib_svld_dlopen" = xyes; then : + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 +$as_echo_n "checking for dld_link in -ldld... " >&6; } +if ${ac_cv_lib_dld_dld_link+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dld_link (); +int +main () +{ +return dld_link (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_dld_link=yes +else + ac_cv_lib_dld_dld_link=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 +$as_echo "$ac_cv_lib_dld_dld_link" >&6; } +if test "x$ac_cv_lib_dld_dld_link" = xyes; then : + lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld +fi + + +fi + + +fi + + +fi + + +fi + + +fi + + ;; + esac + + if test no = "$lt_cv_dlopen"; then + enable_dlopen=no + else + enable_dlopen=yes + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS=$CPPFLAGS + test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS=$LDFLAGS + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS=$LIBS + LIBS="$lt_cv_dlopen_libs $LIBS" + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 +$as_echo_n "checking whether a program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test yes = "$cross_compiling"; then : + lt_cv_dlopen_self=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include <dlfcn.h> +#endif + +#include <stdio.h> + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisibility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 +$as_echo "$lt_cv_dlopen_self" >&6; } + + if test yes = "$lt_cv_dlopen_self"; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 +$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self_static+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test yes = "$cross_compiling"; then : + lt_cv_dlopen_self_static=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include <dlfcn.h> +#endif + +#include <stdio.h> + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisibility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self_static=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 +$as_echo "$lt_cv_dlopen_self_static" >&6; } + fi + + CPPFLAGS=$save_CPPFLAGS + LDFLAGS=$save_LDFLAGS + LIBS=$save_LIBS + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi + + + + + + + + + + + + + + + + + +striplib= +old_striplib= +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 +$as_echo_n "checking whether stripping libraries is possible... " >&6; } +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP"; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + ;; + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + ;; + esac +fi + + + + + + + + + + + + + # Report what library types will actually be built + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 +$as_echo_n "checking if libtool supports shared libraries... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 +$as_echo "$can_build_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 +$as_echo_n "checking whether to build shared libraries... " >&6; } + test no = "$can_build_shared" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test yes = "$enable_shared" && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[4-9]*) + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac + fi + ;; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 +$as_echo "$enable_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 +$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test yes = "$enable_shared" || enable_static=yes + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 +$as_echo "$enable_static" >&6; } + + + + +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +CC=$lt_save_CC + + + + + + + + + + + + + + + + ac_config_commands="$ac_config_commands libtool" + + + + +# Only expand once: + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "no acceptable C compiler found in \$PATH +See \`config.log' for more details" "$LINENO" 5; } + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +if ${ac_cv_c_compiler_gnu+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +$as_echo "$ac_cv_c_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GCC=yes +else + GCC= +fi +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +$as_echo_n "checking whether $CC accepts -g... " >&6; } +if ${ac_cv_prog_cc_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +else + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +$as_echo "$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if ${ac_cv_prog_cc_c89+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <stdarg.h> +#include <stdio.h> +struct stat; +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c89" != xno; then : + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 +$as_echo_n "checking whether $CC understands -c and -o together... " >&6; } +if ${am_cv_prog_cc_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF + # Make sure it works both with $CC and with simple cc. + # Following AC_PROG_CC_C_O, we do the test twice because some + # compilers refuse to overwrite an existing .o file with -o, + # though they will create one. + am_cv_prog_cc_c_o=yes + for am_i in 1 2; do + if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 + ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } \ + && test -f conftest2.$ac_objext; then + : OK + else + am_cv_prog_cc_c_o=no + break + fi + done + rm -f core conftest* + unset am_i +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 +$as_echo "$am_cv_prog_cc_c_o" >&6; } +if test "$am_cv_prog_cc_c_o" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +depcc="$CC" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CC_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named 'D' -- because '-MD' means "put the output + # in D". + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with + # Solaris 10 /bin/sh. + echo '/* dummy */' > sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with '-c' and '-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle '-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs. + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # After this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested. + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok '-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 +$as_echo_n "checking whether ln -s works... " >&6; } +LN_S=$as_ln_s +if test "$LN_S" = "ln -s"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 +$as_echo "no, using $LN_S" >&6; } +fi + +# Extract the first word of "mktemp", so it can be a program name with args. +set dummy mktemp; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_MKTEMP_PROG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MKTEMP_PROG in + [\\/]* | ?:[\\/]*) + ac_cv_path_MKTEMP_PROG="$MKTEMP_PROG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_MKTEMP_PROG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +MKTEMP_PROG=$ac_cv_path_MKTEMP_PROG +if test -n "$MKTEMP_PROG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKTEMP_PROG" >&5 +$as_echo "$MKTEMP_PROG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + +if test "$GCC" = yes; then + CFLAGS="-Wall -Wextra -W -pedantic $CFLAGS" +fi + +# Extract the first word of "cstocs", so it can be a program name with args. +set dummy cstocs; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_CSTOCS_PROG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $CSTOCS_PROG in + [\\/]* | ?:[\\/]*) + ac_cv_path_CSTOCS_PROG="$CSTOCS_PROG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_CSTOCS_PROG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +CSTOCS_PROG=$ac_cv_path_CSTOCS_PROG +if test -n "$CSTOCS_PROG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CSTOCS_PROG" >&5 +$as_echo "$CSTOCS_PROG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +# Extract the first word of "recode", so it can be a program name with args. +set dummy recode; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_RECODE_PROG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $RECODE_PROG in + [\\/]* | ?:[\\/]*) + ac_cv_path_RECODE_PROG="$RECODE_PROG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_RECODE_PROG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +RECODE_PROG=$ac_cv_path_RECODE_PROG +if test -n "$RECODE_PROG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RECODE_PROG" >&5 +$as_echo "$RECODE_PROG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +# Extract the first word of "umap", so it can be a program name with args. +set dummy umap; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_UMAP_PROG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $UMAP_PROG in + [\\/]* | ?:[\\/]*) + ac_cv_path_UMAP_PROG="$UMAP_PROG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_UMAP_PROG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +UMAP_PROG=$ac_cv_path_UMAP_PROG +if test -n "$UMAP_PROG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $UMAP_PROG" >&5 +$as_echo "$UMAP_PROG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +# Extract the first word of "piconv", so it can be a program name with args. +set dummy piconv; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_PICONV_PROG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $PICONV_PROG in + [\\/]* | ?:[\\/]*) + ac_cv_path_PICONV_PROG="$PICONV_PROG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_PICONV_PROG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +PICONV_PROG=$ac_cv_path_PICONV_PROG +if test -n "$PICONV_PROG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PICONV_PROG" >&5 +$as_echo "$PICONV_PROG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +# Extract the first word of "map", so it can be a program name with args. +set dummy map; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_MAP_PROG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAP_PROG in + [\\/]* | ?:[\\/]*) + ac_cv_path_MAP_PROG="$MAP_PROG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_MAP_PROG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +MAP_PROG=$ac_cv_path_MAP_PROG +if test -n "$MAP_PROG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAP_PROG" >&5 +$as_echo "$MAP_PROG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + +# Check whether --enable-external was given. +if test "${enable_external+set}" = set; then : + enableval=$enable_external; case "${enableval}" in + yes) WANT_EXTERNAL=yes ;; + no) WANT_EXTERNAL=no ;; + *) as_fn_error $? "bad value ${enableval} for --enable-external" "$LINENO" 5 ;; + esac +else + WANT_EXTERNAL=yes +fi + + + + + +# Check whether --with-gcov was given. +if test "${with_gcov+set}" = set; then : + withval=$with_gcov; +if test "$GCC" = "yes" +then + using_gcov=$with_gcov +fi + + +fi + + +# Extract the first word of "gcov", so it can be a program name with args. +set dummy gcov; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_GCOV+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $GCOV in + [\\/]* | ?:[\\/]*) + ac_cv_path_GCOV="$GCOV" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_GCOV="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +GCOV=$ac_cv_path_GCOV +if test -n "$GCOV"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GCOV" >&5 +$as_echo "$GCOV" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +if test "$GCOV" -a "$using_gcov" = "yes" +then + GCOV_FLAGS="-fprofile-arcs -ftest-coverage" + GCOV_CPPFLAGS=${GCOV_FLAGS} + GCOV_LDFLAGS=${GCOV_FLAGS} + + + +fi + + +if false; then + +cat >>confdefs.h <<_ACEOF +#define CSTOCS_PROG "" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define MAP_PROG "" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define RECODE_PROG "" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define PICONV_PROG "" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define UMAP_PROG "" +_ACEOF + +fi + +for w in cstocs recode piconv map umap; do + wPROG=`echo $w | tr $as_cr_letters $as_cr_LETTERS`_PROG + # Is this POSIX? But even ash supports it. + eval wPROGcv=$`echo ac_cv_path_$wPROG` + if test -n "$wPROGcv"; then + cat >>confdefs.h <<_ACEOF +#define $wPROG "$wPROGcv" +_ACEOF + + if test -z "$DEFAULT_EXTERNAL_CONVERTER"; then + DEFAULT_EXTERNAL_CONVERTER=$w + fi + fi +done + + + +# Check whether --with-html-dir was given. +if test "${with_html_dir+set}" = set; then : + withval=$with_html_dir; +fi + + +if test "x$with_html_dir" = "x" ; then + HTML_DIR=$datadir/gtk-doc/html +else + HTML_DIR=$with_html_dir +fi + + + +# Extract the first word of "gtkdoc-mkdb", so it can be a program name with args. +set dummy gtkdoc-mkdb; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_GTKDOC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$GTKDOC"; then + ac_cv_prog_GTKDOC="$GTKDOC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_GTKDOC="true" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_prog_GTKDOC" && ac_cv_prog_GTKDOC="false" +fi +fi +GTKDOC=$ac_cv_prog_GTKDOC +if test -n "$GTKDOC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC" >&5 +$as_echo "$GTKDOC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + +gtk_doc_min_version=1.0 +if $GTKDOC ; then + gtk_doc_version=`gtkdoc-mkdb --version` + { $as_echo "$as_me:${as_lineno-$LINENO}: checking gtk-doc version ($gtk_doc_version) >= $gtk_doc_min_version" >&5 +$as_echo_n "checking gtk-doc version ($gtk_doc_version) >= $gtk_doc_min_version... " >&6; } + if perl <<EOF ; then + exit (("$gtk_doc_version" =~ /^[0-9]+\.[0-9]+$/) && + ("$gtk_doc_version" >= "$gtk_doc_min_version") ? 0 : 1); +EOF + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + GTKDOC=false + fi +fi + +# Check whether --enable-gtk-doc was given. +if test "${enable_gtk_doc+set}" = set; then : + enableval=$enable_gtk_doc; enable_gtk_doc="$enableval" +else + enable_gtk_doc=auto +fi + + +if test x$enable_gtk_doc = xauto ; then + if test x$GTKDOC = xtrue ; then + enable_gtk_doc=yes + else + enable_gtk_doc=no + fi +fi + + if test x$enable_gtk_doc = xyes; then + ENABLE_GTK_DOC_TRUE= + ENABLE_GTK_DOC_FALSE='#' +else + ENABLE_GTK_DOC_TRUE='#' + ENABLE_GTK_DOC_FALSE= +fi + + + + +case "$target" in +NONE) yeti_libm_target="$host" ;; +*) yeti_libm_target="$target" ;; +esac + +LIBM= +case "$yeti_libm_target" in +*-*-beos* | *-*-cygwin*) + # These system don't have libm + ;; +*-ncr-sysv4.3*) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _mwvalidcheckl in -lmw" >&5 +$as_echo_n "checking for _mwvalidcheckl in -lmw... " >&6; } +if ${ac_cv_lib_mw__mwvalidcheckl+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lmw $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char _mwvalidcheckl (); +int +main () +{ +return _mwvalidcheckl (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_mw__mwvalidcheckl=yes +else + ac_cv_lib_mw__mwvalidcheckl=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mw__mwvalidcheckl" >&5 +$as_echo "$ac_cv_lib_mw__mwvalidcheckl" >&6; } +if test "x$ac_cv_lib_mw__mwvalidcheckl" = xyes; then : + LIBM="-lmw" +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrt in -lm" >&5 +$as_echo_n "checking for sqrt in -lm... " >&6; } +if ${ac_cv_lib_m_sqrt+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lm $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char sqrt (); +int +main () +{ +return sqrt (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_m_sqrt=yes +else + ac_cv_lib_m_sqrt=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sqrt" >&5 +$as_echo "$ac_cv_lib_m_sqrt" >&6; } +if test "x$ac_cv_lib_m_sqrt" = xyes; then : + LIBM="$LIBM -lm" +fi + + ;; +*) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrt in -lm" >&5 +$as_echo_n "checking for sqrt in -lm... " >&6; } +if ${ac_cv_lib_m_sqrt+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lm $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char sqrt (); +int +main () +{ +return sqrt (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_m_sqrt=yes +else + ac_cv_lib_m_sqrt=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sqrt" >&5 +$as_echo "$ac_cv_lib_m_sqrt" >&6; } +if test "x$ac_cv_lib_m_sqrt" = xyes; then : + LIBM="-lm" +fi + + ;; +esac + +LIBS="$LIBS $LIBM" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if ${ac_cv_header_stdc+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <stdlib.h> +#include <stdarg.h> +#include <string.h> +#include <float.h> + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes +else + ac_cv_header_stdc=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <string.h> + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <stdlib.h> + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then : + : +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <ctype.h> +#include <stdlib.h> +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + +else + ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +$as_echo "#define STDC_HEADERS 1" >>confdefs.h + +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5 +$as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } +if ${ac_cv_header_sys_wait_h+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <sys/types.h> +#include <sys/wait.h> +#ifndef WEXITSTATUS +# define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8) +#endif +#ifndef WIFEXITED +# define WIFEXITED(stat_val) (((stat_val) & 255) == 0) +#endif + +int +main () +{ + int s; + wait (&s); + s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_sys_wait_h=yes +else + ac_cv_header_sys_wait_h=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_sys_wait_h" >&5 +$as_echo "$ac_cv_header_sys_wait_h" >&6; } +if test $ac_cv_header_sys_wait_h = yes; then + +$as_echo "#define HAVE_SYS_WAIT_H 1" >>confdefs.h + +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5 +$as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; } +if ${ac_cv_header_time+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <sys/types.h> +#include <sys/time.h> +#include <time.h> + +int +main () +{ +if ((struct tm *) 0) +return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_time=yes +else + ac_cv_header_time=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_time" >&5 +$as_echo "$ac_cv_header_time" >&6; } +if test $ac_cv_header_time = yes; then + +$as_echo "#define TIME_WITH_SYS_TIME 1" >>confdefs.h + +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat file-mode macros are broken" >&5 +$as_echo_n "checking whether stat file-mode macros are broken... " >&6; } +if ${ac_cv_header_stat_broken+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <sys/types.h> +#include <sys/stat.h> + +#if defined S_ISBLK && defined S_IFDIR +extern char c1[S_ISBLK (S_IFDIR) ? -1 : 1]; +#endif + +#if defined S_ISBLK && defined S_IFCHR +extern char c2[S_ISBLK (S_IFCHR) ? -1 : 1]; +#endif + +#if defined S_ISLNK && defined S_IFREG +extern char c3[S_ISLNK (S_IFREG) ? -1 : 1]; +#endif + +#if defined S_ISSOCK && defined S_IFREG +extern char c4[S_ISSOCK (S_IFREG) ? -1 : 1]; +#endif + +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stat_broken=no +else + ac_cv_header_stat_broken=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stat_broken" >&5 +$as_echo "$ac_cv_header_stat_broken" >&6; } +if test $ac_cv_header_stat_broken = yes; then + +$as_echo "#define STAT_MACROS_BROKEN 1" >>confdefs.h + +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdbool.h that conforms to C99" >&5 +$as_echo_n "checking for stdbool.h that conforms to C99... " >&6; } +if ${ac_cv_header_stdbool_h+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include <stdbool.h> + #ifndef bool + "error: bool is not defined" + #endif + #ifndef false + "error: false is not defined" + #endif + #if false + "error: false is not 0" + #endif + #ifndef true + "error: true is not defined" + #endif + #if true != 1 + "error: true is not 1" + #endif + #ifndef __bool_true_false_are_defined + "error: __bool_true_false_are_defined is not defined" + #endif + + struct s { _Bool s: 1; _Bool t; } s; + + char a[true == 1 ? 1 : -1]; + char b[false == 0 ? 1 : -1]; + char c[__bool_true_false_are_defined == 1 ? 1 : -1]; + char d[(bool) 0.5 == true ? 1 : -1]; + /* See body of main program for 'e'. */ + char f[(_Bool) 0.0 == false ? 1 : -1]; + char g[true]; + char h[sizeof (_Bool)]; + char i[sizeof s.t]; + enum { j = false, k = true, l = false * true, m = true * 256 }; + /* The following fails for + HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003]. */ + _Bool n[m]; + char o[sizeof n == m * sizeof n[0] ? 1 : -1]; + char p[-1 - (_Bool) 0 < 0 && -1 - (bool) 0 < 0 ? 1 : -1]; + /* Catch a bug in an HP-UX C compiler. See + http://gcc.gnu.org/ml/gcc-patches/2003-12/msg02303.html + http://lists.gnu.org/archive/html/bug-coreutils/2005-11/msg00161.html + */ + _Bool q = true; + _Bool *pq = &q; + +int +main () +{ + + bool e = &s; + *pq |= q; + *pq |= ! q; + /* Refer to every declared value, to avoid compiler optimizations. */ + return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l + + !m + !n + !o + !p + !q + !pq); + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdbool_h=yes +else + ac_cv_header_stdbool_h=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdbool_h" >&5 +$as_echo "$ac_cv_header_stdbool_h" >&6; } + ac_fn_c_check_type "$LINENO" "_Bool" "ac_cv_type__Bool" "$ac_includes_default" +if test "x$ac_cv_type__Bool" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE__BOOL 1 +_ACEOF + + +fi + + +if test $ac_cv_header_stdbool_h = yes; then + +$as_echo "#define HAVE_STDBOOL_H 1" >>confdefs.h + +fi + +for ac_header in \ + errno.h \ + fcntl.h \ + getopt.h \ + langinfo.h \ + limits.h \ + locale.h \ + memory.h \ + string.h \ + strings.h \ + sys/stat.h \ + sys/types.h \ + sys/wait.h \ + sys/time.h \ + time.h \ + unistd.h \ + wordexp.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 +$as_echo_n "checking for an ANSI C-conforming const... " >&6; } +if ${ac_cv_c_const+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + +#ifndef __cplusplus + /* Ultrix mips cc rejects this sort of thing. */ + typedef int charset[2]; + const charset cs = { 0, 0 }; + /* SunOS 4.1.1 cc rejects this. */ + char const *const *pcpcc; + char **ppc; + /* NEC SVR4.0.2 mips cc rejects this. */ + struct point {int x, y;}; + static struct point const zero = {0,0}; + /* AIX XL C 1.02.0.0 rejects this. + It does not let you subtract one const X* pointer from another in + an arm of an if-expression whose if-part is not a constant + expression */ + const char *g = "string"; + pcpcc = &g + (g ? g-g : 0); + /* HPUX 7.0 cc rejects these. */ + ++pcpcc; + ppc = (char**) pcpcc; + pcpcc = (char const *const *) ppc; + { /* SCO 3.2v4 cc rejects this sort of thing. */ + char tx; + char *t = &tx; + char const *s = 0 ? (char *) 0 : (char const *) 0; + + *t++ = 0; + if (s) return 0; + } + { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ + int x[] = {25, 17}; + const int *foo = &x[0]; + ++foo; + } + { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ + typedef const int *iptr; + iptr p = 0; + ++p; + } + { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying + "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ + struct s { int j; const int *ap[3]; } bx; + struct s *b = &bx; b->j = 5; + } + { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ + const int foo = 10; + if (!foo) return 0; + } + return !cs[0] && !zero.x; +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_const=yes +else + ac_cv_c_const=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 +$as_echo "$ac_cv_c_const" >&6; } +if test $ac_cv_c_const = no; then + +$as_echo "#define const /**/" >>confdefs.h + +fi + +ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" +if test "x$ac_cv_type_size_t" = xyes; then : + +else + +cat >>confdefs.h <<_ACEOF +#define size_t unsigned int +_ACEOF + +fi + +ac_fn_c_check_type "$LINENO" "mode_t" "ac_cv_type_mode_t" "$ac_includes_default" +if test "x$ac_cv_type_mode_t" = xyes; then : + +else + +cat >>confdefs.h <<_ACEOF +#define mode_t int +_ACEOF + +fi + +ac_fn_c_check_type "$LINENO" "off_t" "ac_cv_type_off_t" "$ac_includes_default" +if test "x$ac_cv_type_off_t" = xyes; then : + +else + +cat >>confdefs.h <<_ACEOF +#define off_t long int +_ACEOF + +fi + +ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" +if test "x$ac_cv_type_pid_t" = xyes; then : + +else + +cat >>confdefs.h <<_ACEOF +#define pid_t int +_ACEOF + +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for uid_t in sys/types.h" >&5 +$as_echo_n "checking for uid_t in sys/types.h... " >&6; } +if ${ac_cv_type_uid_t+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <sys/types.h> + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "uid_t" >/dev/null 2>&1; then : + ac_cv_type_uid_t=yes +else + ac_cv_type_uid_t=no +fi +rm -f conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_uid_t" >&5 +$as_echo "$ac_cv_type_uid_t" >&6; } +if test $ac_cv_type_uid_t = no; then + +$as_echo "#define uid_t int" >>confdefs.h + + +$as_echo "#define gid_t int" >>confdefs.h + +fi + +ac_fn_c_check_type "$LINENO" "ssize_t" "ac_cv_type_ssize_t" "$ac_includes_default" +if test "x$ac_cv_type_ssize_t" = xyes; then : + +else + +cat >>confdefs.h <<_ACEOF +#define ssize_t int +_ACEOF + +fi + +# FIXME: This is crude. It seems to work on Linux, though. +ac_fn_c_check_decl "$LINENO" "LC_MESSAGES" "ac_cv_have_decl_LC_MESSAGES" "#include <locale.h> +" +if test "x$ac_cv_have_decl_LC_MESSAGES" = xyes; then : + ac_have_decl=1 +else + ac_have_decl=0 +fi + +cat >>confdefs.h <<_ACEOF +#define HAVE_DECL_LC_MESSAGES $ac_have_decl +_ACEOF + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for program_invocation_short_name" >&5 +$as_echo_n "checking for program_invocation_short_name... " >&6; } +if ${yeti_cv_lib_c_program_invocation_short_name+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <errno.h> +int +main () +{ +if (!program_invocation_short_name) return 1; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + yeti_cv_lib_c_program_invocation_short_name=yes +else + yeti_cv_lib_c_program_invocation_short_name=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $yeti_cv_lib_c_program_invocation_short_name" >&5 +$as_echo "$yeti_cv_lib_c_program_invocation_short_name" >&6; } +if test "$yeti_cv_lib_c_program_invocation_short_name" = yes; then + +$as_echo "#define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1" >>confdefs.h + +fi + +for ac_header in vfork.h +do : + ac_fn_c_check_header_mongrel "$LINENO" "vfork.h" "ac_cv_header_vfork_h" "$ac_includes_default" +if test "x$ac_cv_header_vfork_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_VFORK_H 1 +_ACEOF + +fi + +done + +for ac_func in fork vfork +do : + as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" +if eval test \"x\$"$as_ac_var"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF + +fi +done + +if test "x$ac_cv_func_fork" = xyes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working fork" >&5 +$as_echo_n "checking for working fork... " >&6; } +if ${ac_cv_func_fork_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + ac_cv_func_fork_works=cross +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_includes_default +int +main () +{ + + /* By Ruediger Kuhlmann. */ + return fork () < 0; + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + ac_cv_func_fork_works=yes +else + ac_cv_func_fork_works=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fork_works" >&5 +$as_echo "$ac_cv_func_fork_works" >&6; } + +else + ac_cv_func_fork_works=$ac_cv_func_fork +fi +if test "x$ac_cv_func_fork_works" = xcross; then + case $host in + *-*-amigaos* | *-*-msdosdjgpp*) + # Override, as these systems have only a dummy fork() stub + ac_cv_func_fork_works=no + ;; + *) + ac_cv_func_fork_works=yes + ;; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&5 +$as_echo "$as_me: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&2;} +fi +ac_cv_func_vfork_works=$ac_cv_func_vfork +if test "x$ac_cv_func_vfork" = xyes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working vfork" >&5 +$as_echo_n "checking for working vfork... " >&6; } +if ${ac_cv_func_vfork_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + ac_cv_func_vfork_works=cross +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Thanks to Paul Eggert for this test. */ +$ac_includes_default +#include <sys/wait.h> +#ifdef HAVE_VFORK_H +# include <vfork.h> +#endif +/* On some sparc systems, changes by the child to local and incoming + argument registers are propagated back to the parent. The compiler + is told about this with #include <vfork.h>, but some compilers + (e.g. gcc -O) don't grok <vfork.h>. Test for this by using a + static variable whose address is put into a register that is + clobbered by the vfork. */ +static void +#ifdef __cplusplus +sparc_address_test (int arg) +# else +sparc_address_test (arg) int arg; +#endif +{ + static pid_t child; + if (!child) { + child = vfork (); + if (child < 0) { + perror ("vfork"); + _exit(2); + } + if (!child) { + arg = getpid(); + write(-1, "", 0); + _exit (arg); + } + } +} + +int +main () +{ + pid_t parent = getpid (); + pid_t child; + + sparc_address_test (0); + + child = vfork (); + + if (child == 0) { + /* Here is another test for sparc vfork register problems. This + test uses lots of local variables, at least as many local + variables as main has allocated so far including compiler + temporaries. 4 locals are enough for gcc 1.40.3 on a Solaris + 4.1.3 sparc, but we use 8 to be safe. A buggy compiler should + reuse the register of parent for one of the local variables, + since it will think that parent can't possibly be used any more + in this routine. Assigning to the local variable will thus + munge parent in the parent process. */ + pid_t + p = getpid(), p1 = getpid(), p2 = getpid(), p3 = getpid(), + p4 = getpid(), p5 = getpid(), p6 = getpid(), p7 = getpid(); + /* Convince the compiler that p..p7 are live; otherwise, it might + use the same hardware register for all 8 local variables. */ + if (p != p1 || p != p2 || p != p3 || p != p4 + || p != p5 || p != p6 || p != p7) + _exit(1); + + /* On some systems (e.g. IRIX 3.3), vfork doesn't separate parent + from child file descriptors. If the child closes a descriptor + before it execs or exits, this munges the parent's descriptor + as well. Test for this by closing stdout in the child. */ + _exit(close(fileno(stdout)) != 0); + } else { + int status; + struct stat st; + + while (wait(&status) != child) + ; + return ( + /* Was there some problem with vforking? */ + child < 0 + + /* Did the child fail? (This shouldn't happen.) */ + || status + + /* Did the vfork/compiler bug occur? */ + || parent != getpid() + + /* Did the file descriptor bug occur? */ + || fstat(fileno(stdout), &st) != 0 + ); + } +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + ac_cv_func_vfork_works=yes +else + ac_cv_func_vfork_works=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_vfork_works" >&5 +$as_echo "$ac_cv_func_vfork_works" >&6; } + +fi; +if test "x$ac_cv_func_fork_works" = xcross; then + ac_cv_func_vfork_works=$ac_cv_func_vfork + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&5 +$as_echo "$as_me: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&2;} +fi + +if test "x$ac_cv_func_vfork_works" = xyes; then + +$as_echo "#define HAVE_WORKING_VFORK 1" >>confdefs.h + +else + +$as_echo "#define vfork fork" >>confdefs.h + +fi +if test "x$ac_cv_func_fork_works" = xyes; then + +$as_echo "#define HAVE_WORKING_FORK 1" >>confdefs.h + +fi + +for ac_func in \ + ftruncate \ + gettimeofday \ + isatty \ + nl_langinfo \ + random \ + realpath \ + strstr \ + stpcpy \ + setlocale \ + ttyname \ + wordexp +do : + as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" +if eval test \"x\$"$as_ac_var"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF + +fi +done + +ac_fn_c_check_func "$LINENO" "getopt_long" "ac_cv_func_getopt_long" +if test "x$ac_cv_func_getopt_long" = xyes; then : + $as_echo "#define HAVE_GETOPT_LONG 1" >>confdefs.h + +else + case " $LIBOBJS " in + *" getopt_long.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS getopt_long.$ac_objext" + ;; +esac + +fi + + +CONVERTER_LIBS= + + if test "X$prefix" = "XNONE"; then + acl_final_prefix="$ac_default_prefix" + else + acl_final_prefix="$prefix" + fi + if test "X$exec_prefix" = "XNONE"; then + acl_final_exec_prefix='${prefix}' + else + acl_final_exec_prefix="$exec_prefix" + fi + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" + prefix="$acl_save_prefix" + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +# Prepare PATH_SEPARATOR. +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which + # contains only /bin. Note that ksh looks also at the FPATH variable, + # so we have to set that as well for the test. + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ + && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ + || PATH_SEPARATOR=';' + } +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`echo "$ac_prog"| sed 's%\\\\%/%g'` + while echo "$ac_prog" | grep "$re_direlt" > /dev/null 2>&1; do + ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if ${acl_cv_path_LD+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$acl_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + acl_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$acl_cv_path_LD" -v 2>&1 </dev/null` in + *GNU* | *'with BFD'*) + test "$with_gnu_ld" != no && break + ;; + *) + test "$with_gnu_ld" != yes && break + ;; + esac + fi + done + IFS="$acl_save_ifs" +else + acl_cv_path_LD="$LD" # Let the user override the test with a path. +fi +fi + +LD="$acl_cv_path_LD" +if test -n "$LD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if ${acl_cv_prog_gnu_ld+:} false; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 </dev/null` in +*GNU* | *'with BFD'*) + acl_cv_prog_gnu_ld=yes + ;; +*) + acl_cv_prog_gnu_ld=no + ;; +esac +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_prog_gnu_ld" >&5 +$as_echo "$acl_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$acl_cv_prog_gnu_ld + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 +$as_echo_n "checking for shared library run path origin... " >&6; } +if ${acl_cv_rpath+:} false; then : + $as_echo_n "(cached) " >&6 +else + + CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ + ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh + . ./conftest.sh + rm -f ./conftest.sh + acl_cv_rpath=done + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 +$as_echo "$acl_cv_rpath" >&6; } + wl="$acl_cv_wl" + acl_libext="$acl_cv_libext" + acl_shlibext="$acl_cv_shlibext" + acl_libname_spec="$acl_cv_libname_spec" + acl_library_names_spec="$acl_cv_library_names_spec" + acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" + acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" + acl_hardcode_direct="$acl_cv_hardcode_direct" + acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" + # Check whether --enable-rpath was given. +if test "${enable_rpath+set}" = set; then : + enableval=$enable_rpath; : +else + enable_rpath=yes +fi + + + + + acl_libdirstem=lib + acl_libdirstem2= + case "$host_os" in + solaris*) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for 64-bit host" >&5 +$as_echo_n "checking for 64-bit host... " >&6; } +if ${gl_cv_solaris_64bit+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#ifdef _LP64 +sixtyfour bits +#endif + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "sixtyfour bits" >/dev/null 2>&1; then : + gl_cv_solaris_64bit=yes +else + gl_cv_solaris_64bit=no +fi +rm -f conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_solaris_64bit" >&5 +$as_echo "$gl_cv_solaris_64bit" >&6; } + if test $gl_cv_solaris_64bit = yes; then + acl_libdirstem=lib/64 + case "$host_cpu" in + sparc*) acl_libdirstem2=lib/sparcv9 ;; + i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; + esac + fi + ;; + *) + searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` + if test -n "$searchpath"; then + acl_save_IFS="${IFS= }"; IFS=":" + for searchdir in $searchpath; do + if test -d "$searchdir"; then + case "$searchdir" in + */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; + */../ | */.. ) + # Better ignore directories of this form. They are misleading. + ;; + *) searchdir=`cd "$searchdir" && pwd` + case "$searchdir" in + */lib64 ) acl_libdirstem=lib64 ;; + esac ;; + esac + fi + done + IFS="$acl_save_IFS" + fi + ;; + esac + test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" + + + + + + + + + + + + + use_additional=yes + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + +# Check whether --with-libiconv-prefix was given. +if test "${with_libiconv_prefix+set}" = set; then : + withval=$with_libiconv_prefix; + if test "X$withval" = "Xno"; then + use_additional=no + else + if test "X$withval" = "X"; then + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + else + additional_includedir="$withval/include" + additional_libdir="$withval/$acl_libdirstem" + if test "$acl_libdirstem2" != "$acl_libdirstem" \ + && ! test -d "$withval/$acl_libdirstem"; then + additional_libdir="$withval/$acl_libdirstem2" + fi + fi + fi + +fi + + LIBICONV= + LTLIBICONV= + INCICONV= + LIBICONV_PREFIX= + HAVE_LIBICONV= + rpathdirs= + ltrpathdirs= + names_already_handled= + names_next_round='iconv ' + while test -n "$names_next_round"; do + names_this_round="$names_next_round" + names_next_round= + for name in $names_this_round; do + already_handled= + for n in $names_already_handled; do + if test "$n" = "$name"; then + already_handled=yes + break + fi + done + if test -z "$already_handled"; then + names_already_handled="$names_already_handled $name" + uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` + eval value=\"\$HAVE_LIB$uppername\" + if test -n "$value"; then + if test "$value" = yes; then + eval value=\"\$LIB$uppername\" + test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" + eval value=\"\$LTLIB$uppername\" + test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" + else + : + fi + else + found_dir= + found_la= + found_so= + found_a= + eval libname=\"$acl_libname_spec\" # typically: libname=lib$name + if test -n "$acl_shlibext"; then + shrext=".$acl_shlibext" # typically: shrext=.so + else + shrext= + fi + if test $use_additional = yes; then + dir="$additional_libdir" + if test -n "$acl_shlibext"; then + if test -f "$dir/$libname$shrext"; then + found_dir="$dir" + found_so="$dir/$libname$shrext" + else + if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then + ver=`(cd "$dir" && \ + for f in "$libname$shrext".*; do echo "$f"; done \ + | sed -e "s,^$libname$shrext\\\\.,," \ + | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ + | sed 1q ) 2>/dev/null` + if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then + found_dir="$dir" + found_so="$dir/$libname$shrext.$ver" + fi + else + eval library_names=\"$acl_library_names_spec\" + for f in $library_names; do + if test -f "$dir/$f"; then + found_dir="$dir" + found_so="$dir/$f" + break + fi + done + fi + fi + fi + if test "X$found_dir" = "X"; then + if test -f "$dir/$libname.$acl_libext"; then + found_dir="$dir" + found_a="$dir/$libname.$acl_libext" + fi + fi + if test "X$found_dir" != "X"; then + if test -f "$dir/$libname.la"; then + found_la="$dir/$libname.la" + fi + fi + fi + if test "X$found_dir" = "X"; then + for x in $LDFLAGS $LTLIBICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + case "$x" in + -L*) + dir=`echo "X$x" | sed -e 's/^X-L//'` + if test -n "$acl_shlibext"; then + if test -f "$dir/$libname$shrext"; then + found_dir="$dir" + found_so="$dir/$libname$shrext" + else + if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then + ver=`(cd "$dir" && \ + for f in "$libname$shrext".*; do echo "$f"; done \ + | sed -e "s,^$libname$shrext\\\\.,," \ + | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ + | sed 1q ) 2>/dev/null` + if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then + found_dir="$dir" + found_so="$dir/$libname$shrext.$ver" + fi + else + eval library_names=\"$acl_library_names_spec\" + for f in $library_names; do + if test -f "$dir/$f"; then + found_dir="$dir" + found_so="$dir/$f" + break + fi + done + fi + fi + fi + if test "X$found_dir" = "X"; then + if test -f "$dir/$libname.$acl_libext"; then + found_dir="$dir" + found_a="$dir/$libname.$acl_libext" + fi + fi + if test "X$found_dir" != "X"; then + if test -f "$dir/$libname.la"; then + found_la="$dir/$libname.la" + fi + fi + ;; + esac + if test "X$found_dir" != "X"; then + break + fi + done + fi + if test "X$found_dir" != "X"; then + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" + if test "X$found_so" != "X"; then + if test "$enable_rpath" = no \ + || test "X$found_dir" = "X/usr/$acl_libdirstem" \ + || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" + else + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $found_dir" + fi + if test "$acl_hardcode_direct" = yes; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" + else + if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $found_dir" + fi + else + haveit= + for x in $LDFLAGS $LIBICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-L$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" + fi + if test "$acl_hardcode_minus_L" != no; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" + else + LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" + fi + fi + fi + fi + else + if test "X$found_a" != "X"; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" + else + LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" + fi + fi + additional_includedir= + case "$found_dir" in + */$acl_libdirstem | */$acl_libdirstem/) + basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` + if test "$name" = 'iconv'; then + LIBICONV_PREFIX="$basedir" + fi + additional_includedir="$basedir/include" + ;; + */$acl_libdirstem2 | */$acl_libdirstem2/) + basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` + if test "$name" = 'iconv'; then + LIBICONV_PREFIX="$basedir" + fi + additional_includedir="$basedir/include" + ;; + esac + if test "X$additional_includedir" != "X"; then + if test "X$additional_includedir" != "X/usr/include"; then + haveit= + if test "X$additional_includedir" = "X/usr/local/include"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + for x in $CPPFLAGS $INCICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-I$additional_includedir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_includedir"; then + INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" + fi + fi + fi + fi + fi + if test -n "$found_la"; then + save_libdir="$libdir" + case "$found_la" in + */* | *\\*) . "$found_la" ;; + *) . "./$found_la" ;; + esac + libdir="$save_libdir" + for dep in $dependency_libs; do + case "$dep" in + -L*) + additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` + if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ + && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then + haveit= + if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ + || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + haveit= + for x in $LDFLAGS $LIBICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" + fi + fi + haveit= + for x in $LDFLAGS $LTLIBICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" + fi + fi + fi + fi + ;; + -R*) + dir=`echo "X$dep" | sed -e 's/^X-R//'` + if test "$enable_rpath" != no; then + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $dir" + fi + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $dir" + fi + fi + ;; + -l*) + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` + ;; + *.la) + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` + ;; + *) + LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" + ;; + esac + done + fi + else + LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" + fi + fi + fi + done + done + if test "X$rpathdirs" != "X"; then + if test -n "$acl_hardcode_libdir_separator"; then + alldirs= + for found_dir in $rpathdirs; do + alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" + done + acl_save_libdir="$libdir" + libdir="$alldirs" + eval flag=\"$acl_hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" + else + for found_dir in $rpathdirs; do + acl_save_libdir="$libdir" + libdir="$found_dir" + eval flag=\"$acl_hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" + done + fi + fi + if test "X$ltrpathdirs" != "X"; then + for found_dir in $ltrpathdirs; do + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" + done + fi + + + + + + + + + + + + + am_save_CPPFLAGS="$CPPFLAGS" + + for element in $INCICONV; do + haveit= + for x in $CPPFLAGS; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X$element"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" + fi + done + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 +$as_echo_n "checking for iconv... " >&6; } +if ${am_cv_func_iconv+:} false; then : + $as_echo_n "(cached) " >&6 +else + + am_cv_func_iconv="no, consider installing GNU libiconv" + am_cv_lib_iconv=no + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include <stdlib.h> +#include <iconv.h> + +int +main () +{ +iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + am_cv_func_iconv=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test "$am_cv_func_iconv" != yes; then + am_save_LIBS="$LIBS" + LIBS="$LIBS $LIBICONV" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include <stdlib.h> +#include <iconv.h> + +int +main () +{ +iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + am_cv_lib_iconv=yes + am_cv_func_iconv=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$am_save_LIBS" + fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 +$as_echo "$am_cv_func_iconv" >&6; } + if test "$am_cv_func_iconv" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5 +$as_echo_n "checking for working iconv... " >&6; } +if ${am_cv_func_iconv_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + + am_save_LIBS="$LIBS" + if test $am_cv_lib_iconv = yes; then + LIBS="$LIBS $LIBICONV" + fi + am_cv_func_iconv_works=no + for ac_iconv_const in '' 'const'; do + if test "$cross_compiling" = yes; then : + case "$host_os" in + aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; + *) am_cv_func_iconv_works="guessing yes" ;; + esac +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include <iconv.h> +#include <string.h> + +#ifndef ICONV_CONST +# define ICONV_CONST $ac_iconv_const +#endif + +int +main () +{ +int result = 0; + /* Test against AIX 5.1 bug: Failures are not distinguishable from successful + returns. */ + { + iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); + if (cd_utf8_to_88591 != (iconv_t)(-1)) + { + static ICONV_CONST char input[] = "\342\202\254"; /* EURO SIGN */ + char buf[10]; + ICONV_CONST char *inptr = input; + size_t inbytesleft = strlen (input); + char *outptr = buf; + size_t outbytesleft = sizeof (buf); + size_t res = iconv (cd_utf8_to_88591, + &inptr, &inbytesleft, + &outptr, &outbytesleft); + if (res == 0) + result |= 1; + iconv_close (cd_utf8_to_88591); + } + } + /* Test against Solaris 10 bug: Failures are not distinguishable from + successful returns. */ + { + iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); + if (cd_ascii_to_88591 != (iconv_t)(-1)) + { + static ICONV_CONST char input[] = "\263"; + char buf[10]; + ICONV_CONST char *inptr = input; + size_t inbytesleft = strlen (input); + char *outptr = buf; + size_t outbytesleft = sizeof (buf); + size_t res = iconv (cd_ascii_to_88591, + &inptr, &inbytesleft, + &outptr, &outbytesleft); + if (res == 0) + result |= 2; + iconv_close (cd_ascii_to_88591); + } + } + /* Test against AIX 6.1..7.1 bug: Buffer overrun. */ + { + iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1"); + if (cd_88591_to_utf8 != (iconv_t)(-1)) + { + static ICONV_CONST char input[] = "\304"; + static char buf[2] = { (char)0xDE, (char)0xAD }; + ICONV_CONST char *inptr = input; + size_t inbytesleft = 1; + char *outptr = buf; + size_t outbytesleft = 1; + size_t res = iconv (cd_88591_to_utf8, + &inptr, &inbytesleft, + &outptr, &outbytesleft); + if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD) + result |= 4; + iconv_close (cd_88591_to_utf8); + } + } +#if 0 /* This bug could be worked around by the caller. */ + /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ + { + iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); + if (cd_88591_to_utf8 != (iconv_t)(-1)) + { + static ICONV_CONST char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; + char buf[50]; + ICONV_CONST char *inptr = input; + size_t inbytesleft = strlen (input); + char *outptr = buf; + size_t outbytesleft = sizeof (buf); + size_t res = iconv (cd_88591_to_utf8, + &inptr, &inbytesleft, + &outptr, &outbytesleft); + if ((int)res > 0) + result |= 8; + iconv_close (cd_88591_to_utf8); + } + } +#endif + /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is + provided. */ + if (/* Try standardized names. */ + iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) + /* Try IRIX, OSF/1 names. */ + && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) + /* Try AIX names. */ + && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) + /* Try HP-UX names. */ + && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) + result |= 16; + return result; + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + am_cv_func_iconv_works=yes +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + + test "$am_cv_func_iconv_works" = no || break + done + LIBS="$am_save_LIBS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works" >&5 +$as_echo "$am_cv_func_iconv_works" >&6; } + case "$am_cv_func_iconv_works" in + *no) am_func_iconv=no am_cv_lib_iconv=no ;; + *) am_func_iconv=yes ;; + esac + else + am_func_iconv=no am_cv_lib_iconv=no + fi + if test "$am_func_iconv" = yes; then + +$as_echo "#define HAVE_ICONV 1" >>confdefs.h + + fi + if test "$am_cv_lib_iconv" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 +$as_echo_n "checking how to link with libiconv... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 +$as_echo "$LIBICONV" >&6; } + else + CPPFLAGS="$am_save_CPPFLAGS" + LIBICONV= + LTLIBICONV= + fi + + + + if test "$am_cv_func_iconv" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5 +$as_echo_n "checking for iconv declaration... " >&6; } + if ${am_cv_proto_iconv+:} false; then : + $as_echo_n "(cached) " >&6 +else + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include <stdlib.h> +#include <iconv.h> +extern +#ifdef __cplusplus +"C" +#endif +#if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus) +size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); +#else +size_t iconv(); +#endif + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + am_cv_proto_iconv_arg1="" +else + am_cv_proto_iconv_arg1="const" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);" +fi + + am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` + { $as_echo "$as_me:${as_lineno-$LINENO}: result: + $am_cv_proto_iconv" >&5 +$as_echo " + $am_cv_proto_iconv" >&6; } + +cat >>confdefs.h <<_ACEOF +#define ICONV_CONST $am_cv_proto_iconv_arg1 +_ACEOF + + + fi + + + +CONVERTER_LIBS="$CONVERTER_LIBS $LIBICONV" + +libiconv_ok="$am_cv_func_iconv" +if test "$libiconv_ok" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether iconv implementation is usable" >&5 +$as_echo_n "checking whether iconv implementation is usable... " >&6; } + if $CC -o iconvcap$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS $srcdir/iconvcap.c $LIBS $CONVERTER_LIBS 1>&5 2>&5 && test -s ./iconvcap$ac_exeext 2>&5; then + if ./iconvcap 2>&5 >iconvenc.h; then + libiconv_ok=yes + else + libiconv_ok=no + fi + else + libiconv_ok=no + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $libiconv_ok" >&5 +$as_echo "$libiconv_ok" >&6; } + if test "$libiconv_ok" = yes; then + +$as_echo "#define HAVE_GOOD_ICONV 1" >>confdefs.h + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether iconv is transitive" >&5 +$as_echo_n "checking whether iconv is transitive... " >&6; } +if ${yeti_cv_lib_c_iconv_transitive+:} false; then : + $as_echo_n "(cached) " >&6 +else + if ./iconvcap iconvenc.h 2>&5; then + yeti_cv_lib_c_iconv_transitive=yes + else + yeti_cv_lib_c_iconv_transitive=no + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $yeti_cv_lib_c_iconv_transitive" >&5 +$as_echo "$yeti_cv_lib_c_iconv_transitive" >&6; } + if test "$yeti_cv_lib_c_iconv_transitive" = yes; then + +$as_echo "#define ICONV_IS_TRANSITIVE 1" >>confdefs.h + + else + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: A non-transitive but otherwise usable iconv implementation + was found. This beast was believed to be mythical. + Please send your system specs to the maintainer." >&5 +$as_echo "$as_me: WARNING: A non-transitive but otherwise usable iconv implementation + was found. This beast was believed to be mythical. + Please send your system specs to the maintainer." >&2;} + fi + else + echo >iconvenc.h + fi +else + libiconv_ok=no +fi + +if test "$libiconv_ok" != "yes"; then + cat $srcdir/tools/iconvenc.null >iconvenc.h +fi + + +# Check whether --with-librecode was given. +if test "${with_librecode+set}" = set; then : + withval=$with_librecode; case "$withval" in + yes|auto) WANT_LIBRECODE=1 ;; + no) WANT_LIBRECODE=0 ;; + *) WANT_LIBRECODE=1 ; yeti_librecode_CPPFLAGS="-I$withval/include" ; yeti_librecode_LDFLAGS="-L$withval/lib" ;; + esac +else + WANT_LIBRECODE=1 +fi + + +if test "$WANT_LIBRECODE" = 1; then + yeti_save_LIBS="$LIBS" + yeti_save_CPPFLAGS="$CPPFLAGS" + yeti_save_LDFLAGS="$LDFLAGS" + LIBS="$LIBS -lrecode" + CPPFLAGS="$CPPFLAGS $yeti_librecode_CPPFLAGS" + LDFLAGS="$LDFLAGS $yeti_librecode_LDFLAGS" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for recode_new_outer in librecode" >&5 +$as_echo_n "checking for recode_new_outer in librecode... " >&6; } +if ${yeti_cv_lib_recode_new_outer+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +char* program_name = ""; +int +main () +{ +recode_new_outer(0); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + yeti_cv_lib_recode_new_outer=yes +else + yeti_cv_lib_recode_new_outer=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $yeti_cv_lib_recode_new_outer" >&5 +$as_echo "$yeti_cv_lib_recode_new_outer" >&6; } + librecode_ok="$yeti_cv_lib_recode_new_outer"; + if test "$librecode_ok" = yes; then + ac_fn_c_check_header_compile "$LINENO" "recode.h" "ac_cv_header_recode_h" "#define bool int + #define size_t int + #define FILE void +" +if test "x$ac_cv_header_recode_h" = xyes; then : + librecode_ok=yes +else + librecode_ok=no +fi + + + fi + if test "$librecode_ok" = yes; then + ac_fn_c_check_header_compile "$LINENO" "recodext.h" "ac_cv_header_recodext_h" "#define bool int + #define size_t int + #define FILE void +" +if test "x$ac_cv_header_recodext_h" = xyes; then : + librecode_ok=yes +else + librecode_ok=no +fi + + + fi + if test "$librecode_ok" = yes; then + +$as_echo "#define HAVE_LIBRECODE 1" >>confdefs.h + + CONVERTER_LIBS="$CONVERTER_LIBS -lrecode" + fi + LIBS="$yeti_save_LIBS" +else + librecode_ok=no +fi + +if test "$librecode_ok" != "yes"; then + if test "$WANT_LIBRECODE" = 1; then + CPPFLAGS="$yeti_save_CPPFLAGS" + LDFLAGS="$yeti_save_LDFLAGS" + fi +fi + +DEFAULT_CONVERTER_LIST="built-in" +if test "$librecode_ok" = "yes"; then + DEFAULT_CONVERTER_LIST="$DEFAULT_CONVERTER_LIST,librecode" +else + if test "$libiconv_ok" = "yes"; then + DEFAULT_CONVERTER_LIST="$DEFAULT_CONVERTER_LIST,iconv" + fi +fi + +cat >>confdefs.h <<_ACEOF +#define DEFAULT_CONVERTER_LIST "$DEFAULT_CONVERTER_LIST" +_ACEOF + + +if test "$WANT_EXTERNAL" = "yes" -a "$ac_cv_func_fork_works" = "yes"; then + +$as_echo "#define ENABLE_EXTERNAL 1" >>confdefs.h + + if test -n "$DEFAULT_EXTERNAL_CONVERTER"; then + enable_external="yes ($DEFAULT_EXTERNAL_CONVERTER)" + else + enable_external="yes (but no suitable found)" + fi +else + enable_external=no + DEFAULT_EXTERNAL_CONVERTER= +fi + +cat >>confdefs.h <<_ACEOF +#define DEFAULT_EXTERNAL_CONVERTER "$DEFAULT_EXTERNAL_CONVERTER" +_ACEOF + + +locale_alias_ok=no +if test "$ac_cv_func_setlocale" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for locale.alias" >&5 +$as_echo_n "checking for locale.alias... " >&6; } +if ${yeti_cv_file_locale_alias+:} false; then : + $as_echo_n "(cached) " >&6 +else + for yeti_ac_tmp in /usr/share/locale /usr/local/share/locale /etc /usr/lib/X11/locale /usr/X11/lib/locale; do + if test -f "$yeti_ac_tmp/locale.alias"; then + yeti_cv_file_locale_alias="$yeti_ac_tmp/locale.alias" + break + fi + if test -f "$yeti_ac_tmp/locale.aliases"; then + yeti_cv_file_locale_alias="$yeti_ac_tmp/locale.aliases" + break + fi + done +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $yeti_cv_file_locale_alias" >&5 +$as_echo "$yeti_cv_file_locale_alias" >&6; } + if test -n "$yeti_cv_file_locale_alias"; then + locale_alias_ok=yes + +$as_echo "#define HAVE_LOCALE_ALIAS 1" >>confdefs.h + + +cat >>confdefs.h <<_ACEOF +#define LOCALE_ALIAS_PATH "$yeti_cv_file_locale_alias" +_ACEOF + + fi +fi + +if test -n "$MKTEMP_PROG"; then + SHELL_RANDOM_FILENAME='`'$MKTEMP_PROG' /tmp/enca-$$-XXXXXXXX`' +else + SHELL_RANDOM_FILENAME='/tmp/enca-$$-$RANDOM' +fi + + + + + + + +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes: double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + if test "x$cache_file" != "x/dev/null"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +$as_echo "$as_me: updating cache $cache_file" >&6;} + if test ! -f "$cache_file" || test -h "$cache_file"; then + cat confcache >"$cache_file" + else + case $cache_file in #( + */* | ?:*) + mv -f confcache "$cache_file"$$ && + mv -f "$cache_file"$$ "$cache_file" ;; #( + *) + mv -f confcache "$cache_file" ;; + esac + fi + fi + else + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +DEFS=-DHAVE_CONFIG_H + +ac_libobjs= +ac_ltlibobjs= +U= +for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' +done +LIBOBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 +$as_echo_n "checking that generated files are newer than configure... " >&6; } + if test -n "$am_sleep_pid"; then + # Hide warnings about reused PIDs. + wait $am_sleep_pid 2>/dev/null + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 +$as_echo "done" >&6; } + if test -n "$EXEEXT"; then + am__EXEEXT_TRUE= + am__EXEEXT_FALSE='#' +else + am__EXEEXT_TRUE='#' + am__EXEEXT_FALSE= +fi + +if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + as_fn_error $? "conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GTK_DOC_TRUE}" && test -z "${ENABLE_GTK_DOC_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GTK_DOC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi + +: "${CONFIG_STATUS=./config.status}" +ac_write_fail=0 +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by Enca $as_me 1.19, which was +generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +_ACEOF + +case $ac_config_files in *" +"*) set x $ac_config_files; shift; ac_config_files=$*;; +esac + +case $ac_config_headers in *" +"*) set x $ac_config_headers; shift; ac_config_headers=$*;; +esac + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# Files that config.status was made for. +config_files="$ac_config_files" +config_headers="$ac_config_headers" +config_commands="$ac_config_commands" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to <https://github.com/nijel/enca/issues>." + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" +ac_cs_version="\\ +Enca config.status 1.19 +configured by $0, generated by GNU Autoconf 2.69, + with options \\"\$ac_cs_config\\" + +Copyright (C) 2012 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +MKDIR_P='$MKDIR_P' +AWK='$AWK' +test -n "\$AWK" || AWK=awk +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=?*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error $? "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error $? "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +if \$ac_cs_recheck; then + set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + shift + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 + CONFIG_SHELL='$SHELL' + export CONFIG_SHELL + exec "\$@" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + $as_echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# +# INIT-COMMANDS +# +AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" + + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' +macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' +enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' +enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' +pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' +enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' +shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' +SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' +ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' +PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' +host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' +host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' +host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' +build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' +build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' +build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' +SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' +Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' +GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' +EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' +FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' +LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' +NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' +LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' +max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' +ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' +exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' +lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' +lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' +lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' +lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' +lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' +reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' +reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' +OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' +deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' +file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' +file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' +want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' +DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' +sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' +AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' +AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' +archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' +STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' +RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' +old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' +old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' +lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' +CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' +CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' +compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' +GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' +lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' +nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' +lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' +lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' +objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' +MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' +need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' +MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' +DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' +NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' +LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' +OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' +OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' +libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' +shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' +extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' +export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' +whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' +compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' +old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' +archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' +module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' +module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' +with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' +allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' +no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' +hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' +hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' +hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' +hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' +hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' +inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' +link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' +always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' +export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' +exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' +include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' +prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' +postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' +file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' +variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' +need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' +need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' +version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' +runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' +libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' +library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' +soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' +install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' +postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' +postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' +finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' +hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' +sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' +configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' +configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`' +hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' +enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' +old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' +striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' + +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in SHELL \ +ECHO \ +PATH_SEPARATOR \ +SED \ +GREP \ +EGREP \ +FGREP \ +LD \ +NM \ +LN_S \ +lt_SP2NL \ +lt_NL2SP \ +reload_flag \ +OBJDUMP \ +deplibs_check_method \ +file_magic_cmd \ +file_magic_glob \ +want_nocaseglob \ +DLLTOOL \ +sharedlib_from_linklib_cmd \ +AR \ +AR_FLAGS \ +archiver_list_spec \ +STRIP \ +RANLIB \ +CC \ +CFLAGS \ +compiler \ +lt_cv_sys_global_symbol_pipe \ +lt_cv_sys_global_symbol_to_cdecl \ +lt_cv_sys_global_symbol_to_import \ +lt_cv_sys_global_symbol_to_c_name_address \ +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ +lt_cv_nm_interface \ +nm_file_list_spec \ +lt_cv_truncate_bin \ +lt_prog_compiler_no_builtin_flag \ +lt_prog_compiler_pic \ +lt_prog_compiler_wl \ +lt_prog_compiler_static \ +lt_cv_prog_compiler_c_o \ +need_locks \ +MANIFEST_TOOL \ +DSYMUTIL \ +NMEDIT \ +LIPO \ +OTOOL \ +OTOOL64 \ +shrext_cmds \ +export_dynamic_flag_spec \ +whole_archive_flag_spec \ +compiler_needs_object \ +with_gnu_ld \ +allow_undefined_flag \ +no_undefined_flag \ +hardcode_libdir_flag_spec \ +hardcode_libdir_separator \ +exclude_expsyms \ +include_expsyms \ +file_list_spec \ +variables_saved_for_relink \ +libname_spec \ +library_names_spec \ +soname_spec \ +install_override_mode \ +finish_eval \ +old_striplib \ +striplib; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in reload_cmds \ +old_postinstall_cmds \ +old_postuninstall_cmds \ +old_archive_cmds \ +extract_expsyms_cmds \ +old_archive_from_new_cmds \ +old_archive_from_expsyms_cmds \ +archive_cmds \ +archive_expsym_cmds \ +module_cmds \ +module_expsym_cmds \ +export_symbols_cmds \ +prelink_cmds \ +postlink_cmds \ +postinstall_cmds \ +postuninstall_cmds \ +finish_cmds \ +sys_lib_search_path_spec \ +configure_time_dlsearch_path \ +configure_time_lt_sys_library_path; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +ac_aux_dir='$ac_aux_dir' + +# See if we are running on zsh, and set the options that allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST +fi + + + PACKAGE='$PACKAGE' + VERSION='$VERSION' + RM='$RM' + ofile='$ofile' + + + + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "enca.spec") CONFIG_FILES="$CONFIG_FILES enca.spec" ;; + "enca.pc") CONFIG_FILES="$CONFIG_FILES enca.pc" ;; + "devel-docs/Makefile") CONFIG_FILES="$CONFIG_FILES devel-docs/Makefile" ;; + "data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;; + "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;; + "script/Makefile") CONFIG_FILES="$CONFIG_FILES script/Makefile" ;; + "script/b-cstocs") CONFIG_FILES="$CONFIG_FILES script/b-cstocs" ;; + "script/b-map") CONFIG_FILES="$CONFIG_FILES script/b-map" ;; + "script/b-piconv") CONFIG_FILES="$CONFIG_FILES script/b-piconv" ;; + "script/b-umap") CONFIG_FILES="$CONFIG_FILES script/b-umap" ;; + "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; + "src/HELP") CONFIG_FILES="$CONFIG_FILES src/HELP" ;; + "test/Makefile") CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; + "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; + "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; + + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= ac_tmp= + trap 'exit_status=$? + : "${ac_tmp:=$tmp}" + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 +ac_tmp=$tmp + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$ac_tmp/subs1.awk" && +_ACEOF + + +{ + echo "cat >conf$$subs.awk <<_ACEOF" && + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" +} >conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done +rm -f conf$$subs.sh + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && +_ACEOF +sed -n ' +h +s/^/S["/; s/!.*/"]=/ +p +g +s/^[^!]*!// +:repl +t repl +s/'"$ac_delim"'$// +t delim +:nl +h +s/\(.\{148\}\)..*/\1/ +t more1 +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +p +n +b repl +:more1 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t nl +:delim +h +s/\(.\{148\}\)..*/\1/ +t more2 +s/["\\]/\\&/g; s/^/"/; s/$/"/ +p +b +:more2 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t delim +' <conf$$subs.awk | sed ' +/^[^""]/{ + N + s/\n// +} +' >>$CONFIG_STATUS || ac_write_fail=1 +rm -f conf$$subs.awk +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACAWK +cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 +_ACEOF + +# VPATH may cause trouble with some makes, so we remove sole $(srcdir), +# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ +h +s/// +s/^/:/ +s/[ ]*$/:/ +s/:\$(srcdir):/:/g +s/:\${srcdir}:/:/g +s/:@srcdir@:/:/g +s/^:*// +s/:*$// +x +s/\(=[ ]*\).*/\1/ +G +s/\n// +s/^[^=]*=[ ]*$// +}' +fi + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +fi # test -n "$CONFIG_FILES" + +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$ac_tmp/defines.awk" <<\_ACAWK || +BEGIN { +_ACEOF + +# Transform confdefs.h into an awk script `defines.awk', embedded as +# here-document in config.status, that substitutes the proper values into +# config.h.in to produce config.h. + +# Create a delimiter string that does not exist in confdefs.h, to ease +# handling of long lines. +ac_delim='%!_!# ' +for ac_last_try in false false :; do + ac_tt=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_tt"; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +# For the awk script, D is an array of macro values keyed by name, +# likewise P contains macro parameters if any. Preserve backslash +# newline sequences. + +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +sed -n ' +s/.\{148\}/&'"$ac_delim"'/g +t rset +:rset +s/^[ ]*#[ ]*define[ ][ ]*/ / +t def +d +:def +s/\\$// +t bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3"/p +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p +d +:bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3\\\\\\n"\\/p +t cont +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p +t cont +d +:cont +n +s/.\{148\}/&'"$ac_delim"'/g +t clear +:clear +s/\\$// +t bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/"/p +d +:bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p +b cont +' <confdefs.h | sed ' +s/'"$ac_delim"'/"\\\ +"/g' >>$CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { + line = \$ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$ac_tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$ac_tmp/stdin" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_sed_extra="$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ + "$ac_tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&2;} + + rm -f "$ac_tmp/stdin" + case $ac_file in + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; + esac \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # + if test x"$ac_file" != x-; then + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" + } >"$ac_tmp/config.h" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$ac_tmp/config.h" "$ac_file" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error $? "could not create -" "$LINENO" 5 + fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Older Autoconf quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named 'Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running 'make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "$am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} + ;; + "libtool":C) + + # See if we are running on zsh, and set the options that allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST + fi + + cfgfile=${ofile}T + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL +# Generated automatically by $as_me ($PACKAGE) $VERSION +# NOTE: Changes made to this file will be lost: look at ltmain.sh. + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + +# Copyright (C) 2014 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + + +# The names of the tagged configurations supported by this script. +available_tags='' + +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + +# Whether or not to build static libraries. +build_old_libs=$enable_static + +# What type of objects to build. +pic_mode=$pic_mode + +# Whether or not to optimize for fast installation. +fast_install=$enable_fast_install + +# Shared archive member basename,for filename based shared library versioning on AIX. +shared_archive_member_spec=$shared_archive_member_spec + +# Shell to use when invoking shell scripts. +SHELL=$lt_SHELL + +# An echo program that protects backslashes. +ECHO=$lt_ECHO + +# The PATH separator for the build system. +PATH_SEPARATOR=$lt_PATH_SEPARATOR + +# The host system. +host_alias=$host_alias +host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os + +# A sed program that does not truncate output. +SED=$lt_SED + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="\$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP=$lt_GREP + +# An ERE matcher. +EGREP=$lt_EGREP + +# A literal string matcher. +FGREP=$lt_FGREP + +# A BSD- or MS-compatible name lister. +NM=$lt_NM + +# Whether we need soft or hard links. +LN_S=$lt_LN_S + +# What is the maximum length of a command? +max_cmd_len=$max_cmd_len + +# Object file suffix (normally "o"). +objext=$ac_objext + +# Executable file suffix (normally ""). +exeext=$exeext + +# whether the shell understands "unset". +lt_unset=$lt_unset + +# turn spaces into newlines. +SP2NL=$lt_lt_SP2NL + +# turn newlines into spaces. +NL2SP=$lt_lt_NL2SP + +# convert \$build file names to \$host format. +to_host_file_cmd=$lt_cv_to_host_file_cmd + +# convert \$build files to toolchain format. +to_tool_file_cmd=$lt_cv_to_tool_file_cmd + +# An object symbol dumper. +OBJDUMP=$lt_OBJDUMP + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method=$lt_deplibs_check_method + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd=$lt_file_magic_cmd + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob=$lt_file_magic_glob + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob=$lt_want_nocaseglob + +# DLL creation program. +DLLTOOL=$lt_DLLTOOL + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd + +# The archiver. +AR=$lt_AR + +# Flags to create an archive. +AR_FLAGS=$lt_AR_FLAGS + +# How to feed a file listing to the archiver. +archiver_list_spec=$lt_archiver_list_spec + +# A symbol stripping program. +STRIP=$lt_STRIP + +# Commands used to install an old-style archive. +RANLIB=$lt_RANLIB +old_postinstall_cmds=$lt_old_postinstall_cmds +old_postuninstall_cmds=$lt_old_postuninstall_cmds + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=$lock_old_archive_extraction + +# A C compiler. +LTCC=$lt_CC + +# LTCC compiler flags. +LTCFLAGS=$lt_CFLAGS + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl + +# Transform the output of nm into a list of symbols to manually relocate. +global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix + +# The name lister interface. +nm_interface=$lt_lt_cv_nm_interface + +# Specify filename containing input files for \$NM. +nm_file_list_spec=$lt_nm_file_list_spec + +# The root where to search for dependent libraries,and where our libraries should be installed. +lt_sysroot=$lt_sysroot + +# Command to truncate a binary pipe. +lt_truncate_bin=$lt_lt_cv_truncate_bin + +# The name of the directory that contains temporary libtool files. +objdir=$objdir + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=$MAGIC_CMD + +# Must we lock files when doing compilation? +need_locks=$lt_need_locks + +# Manifest tool. +MANIFEST_TOOL=$lt_MANIFEST_TOOL + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL=$lt_DSYMUTIL + +# Tool to change global to local symbols on Mac OS X. +NMEDIT=$lt_NMEDIT + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO=$lt_LIPO + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL=$lt_OTOOL + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64=$lt_OTOOL64 + +# Old archive suffix (normally "a"). +libext=$libext + +# Shared library suffix (normally ".so"). +shrext_cmds=$lt_shrext_cmds + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds=$lt_extract_expsyms_cmds + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink=$lt_variables_saved_for_relink + +# Do we need the "lib" prefix for modules? +need_lib_prefix=$need_lib_prefix + +# Do we need a version for libraries? +need_version=$need_version + +# Library versioning type. +version_type=$version_type + +# Shared library runtime path variable. +runpath_var=$runpath_var + +# Shared library path variable. +shlibpath_var=$shlibpath_var + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=$shlibpath_overrides_runpath + +# Format of library name prefix. +libname_spec=$lt_libname_spec + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec=$lt_library_names_spec + +# The coded name of the library, if different from the real name. +soname_spec=$lt_soname_spec + +# Permission mode override for installation of shared libraries. +install_override_mode=$lt_install_override_mode + +# Command to use after installation of a shared archive. +postinstall_cmds=$lt_postinstall_cmds + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds=$lt_postuninstall_cmds + +# Commands used to finish a libtool library installation in a directory. +finish_cmds=$lt_finish_cmds + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval=$lt_finish_eval + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=$hardcode_into_libs + +# Compile-time system search path for libraries. +sys_lib_search_path_spec=$lt_sys_lib_search_path_spec + +# Detected run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path + +# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. +configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path + +# Whether dlopen is supported. +dlopen_support=$enable_dlopen + +# Whether dlopen of programs is supported. +dlopen_self=$enable_dlopen_self + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=$enable_dlopen_self_static + +# Commands to strip libraries. +old_striplib=$lt_old_striplib +striplib=$lt_striplib + + +# The linker used to build libraries. +LD=$lt_LD + +# How to create reloadable object files. +reload_flag=$lt_reload_flag +reload_cmds=$lt_reload_cmds + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds + +# A language specific compiler. +CC=$lt_compiler + +# Is the compiler the GNU compiler? +with_gcc=$GCC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds +archive_expsym_cmds=$lt_archive_expsym_cmds + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds +module_expsym_cmds=$lt_module_expsym_cmds + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \$shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action + +# ### END LIBTOOL CONFIG + +_LT_EOF + + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + + +# ### END FUNCTIONS SHARED WITH CONFIGURE + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test set != "${COLLECT_NAMES+set}"; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + +ltmain=$ac_aux_dir/ltmain.sh + + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" + + ;; + + esac +done # for ac_tag + + +as_fn_exit 0 +_ACEOF +ac_clean_files=$ac_clean_files_save + +test $ac_write_fail = 0 || + as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. + $ac_cs_success || as_fn_exit 1 +fi +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +fi + + +if test "$yeti_recode_buggy" = yes; then + librecode_state="$librecode_ok (buggy, see above)" +else + librecode_state="$librecode_ok" +fi + +if test -z "$yeti_cv_file_locale_alias"; then + locale_alias_state="built-in (naive)" +else + locale_alias_state="$yeti_cv_file_locale_alias" +fi + +if test "$ac_cv_func_wordexp" = yes; then + ENCAOPT_state="$ac_cv_func_wordexp" +else + ENCAOPT_state="built-in parser (naive)" +fi + +if test "$enable_static" = yes; then + if test "$enable_shared" = yes; then + libenca_state="static, shared" + else + libenca_state=static + fi +else + if test "$enable_shared" = yes; then + # Can this happen? + libenca_state=shared + else + libenca_state="not at all?" + fi +fi + +echo "=================================================================" +echo " Features:" +echo " libenca will be built as: $libenca_state" +echo " GNU recode library interface: $librecode_state" +echo " UNIX98 iconv interface: $libiconv_ok" +if test "$libiconv_ok" != "yes" && test "$librecode_ok" != "yes"; then +echo " (consider installing at least one of GNU libiconv and GNU librecode)" +fi +echo " External converters: $enable_external" +echo " Language preferences from locale: $ac_cv_func_setlocale" +if test "$ac_cv_func_setlocale" = yes; then +echo " Language aliases decryption: $locale_alias_state" +fi +echo " Target charset from locale: $ac_cv_func_nl_langinfo" +echo " ENCAOPT environment variable: $ENCAOPT_state" +echo "=================================================================" + +if test "$ac_cv_header_stdc" != yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: expect build to fail since we depend on \"ISO C headers\"" >&5 +$as_echo "$as_me: WARNING: expect build to fail since we depend on \"ISO C headers\"" >&2;} +fi +if test "$ac_cv_header_unistd_h" != yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: expect build to fail since we depend on \"unistd.h\"" >&5 +$as_echo "$as_me: WARNING: expect build to fail since we depend on \"unistd.h\"" >&2;} +fi +if test "$ac_cv_header_sys_types_h" != yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: expect build to fail since we depend on \"sys/types.h\"" >&5 +$as_echo "$as_me: WARNING: expect build to fail since we depend on \"sys/types.h\"" >&2;} +fi +if test "$ac_cv_header_sys_stat_h" != yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: expect build to fail since we depend on \"sys/stat.h\"" >&5 +$as_echo "$as_me: WARNING: expect build to fail since we depend on \"sys/stat.h\"" >&2;} +fi + +echo +echo "Configure complete, now type \`make' to compile enca." +echo "If it compiles, don't forget to run \`make check'." diff --git a/wlx/wayland_qt_base/build/enca-1.19/configure.ac b/wlx/wayland_qt_base/build/enca-1.19/configure.ac new file mode 100644 index 0000000..4852a2f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/configure.ac @@ -0,0 +1,260 @@ +dnl configure.in by David Necas (Yeti) <yeti@physics.muni.cz> +dnl This file is in public domain. +dnl Process this file with autoconf to produce a configure script. +dnl Shake before use. +AC_INIT(Enca, 1.19, [https://github.com/nijel/enca/issues]) +AC_PREREQ(2.52) +AC_CONFIG_SRCDIR(src/enca.c) +AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_FILES( \ + Makefile \ + enca.spec \ + enca.pc \ + devel-docs/Makefile \ + data/Makefile \ + lib/Makefile \ + script/Makefile \ + script/b-cstocs \ + script/b-map \ + script/b-piconv \ + script/b-umap \ + src/Makefile \ + src/HELP \ + test/Makefile \ + tools/Makefile) + +AC_CONFIG_HEADERS(config.h) +AM_INIT_AUTOMAKE([1.8 gnits check-news dist-xz]) +AM_ACLOCAL_INCLUDE(m4) +AM_MAINTAINER_MODE + +dnl RPM release (normally always 1, may be manually changed by package +dnl maintainer in spec later) +RELEASE=1 + +dnl Checks for programs. +AC_PROG_AWK +AC_PROG_CC +AC_GNU_SOURCE +AC_AIX +AC_ISC_POSIX +AC_PROG_LIBTOOL +AC_PROG_CC +AM_PROG_CC_C_O +AC_PROG_INSTALL +AC_PROG_LN_S +AC_PATH_PROG(MKTEMP_PROG, mktemp) + +dnl With GCC, be paranoiac. It should compile really cleanly. +dnl Except -Wno-sign-compare, but older gcc's don't know it. +if test "$GCC" = yes; then + CFLAGS="-Wall -Wextra -W -pedantic $CFLAGS" +fi + +dnl Check for various external converters. +AC_PATH_PROG(CSTOCS_PROG, cstocs) +AC_PATH_PROG(RECODE_PROG, recode) +AC_PATH_PROG(UMAP_PROG, umap) +AC_PATH_PROG(PICONV_PROG, piconv) +AC_PATH_PROG(MAP_PROG, map) + +dnl External convetor. It may be disabled later, if fork() doesn't work. +AC_ARG_ENABLE(external, + [ --enable-external enable conversion using external programs @<:@yes@:>@], + [case "${enableval}" in + yes) WANT_EXTERNAL=yes ;; + no) WANT_EXTERNAL=no ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-external) ;; + esac], + [WANT_EXTERNAL=yes]) + +dnl gcov coverage +AM_GCOV + +dnl Fool autoconf, it can't parse the for-cycle below +if false; then +AC_DEFINE_UNQUOTED(CSTOCS_PROG,"",[Define to path to the cstocs recoder.]) +AC_DEFINE_UNQUOTED(MAP_PROG,"",[Define to path to the map recoder.]) +AC_DEFINE_UNQUOTED(RECODE_PROG,"",[Define to path to the recode recoder.]) +AC_DEFINE_UNQUOTED(PICONV_PROG,"",[Define to path to the piconv recoder.]) +AC_DEFINE_UNQUOTED(UMAP_PROG,"",[Define to path to the umap recoder.]) +fi + +dnl Find default external converter +for w in cstocs recode piconv map umap; do + wPROG=`echo $w | tr $as_cr_letters $as_cr_LETTERS`_PROG + # Is this POSIX? But even ash supports it. + eval wPROGcv=$`echo ac_cv_path_$wPROG` + if test -n "$wPROGcv"; then + AC_DEFINE_UNQUOTED($wPROG,"$wPROGcv") + if test -z "$DEFAULT_EXTERNAL_CONVERTER"; then + DEFAULT_EXTERNAL_CONVERTER=$w + fi + fi +done + +dnl And for gtk-doc +gtk_CHECK_GTK_DOC + +dnl Checks for libraries. +ye_CHECK_LIBM + +dnl Checks for header files. +AC_HEADER_STDC +AC_HEADER_SYS_WAIT +AC_HEADER_TIME +AC_HEADER_STAT +AC_HEADER_STDBOOL +AC_CHECK_HEADERS( \ + errno.h \ + fcntl.h \ + getopt.h \ + langinfo.h \ + limits.h \ + locale.h \ + memory.h \ + string.h \ + strings.h \ + sys/stat.h \ + sys/types.h \ + sys/wait.h \ + sys/time.h \ + time.h \ + unistd.h \ + wordexp.h) + +dnl Checks for typedefs, structures, and compiler characteristics. +AC_C_CONST +AC_TYPE_SIZE_T +AC_TYPE_MODE_T +AC_TYPE_OFF_T +AC_TYPE_PID_T +AC_TYPE_UID_T +AC_CHECK_TYPE(ssize_t, int) +# FIXME: This is crude. It seems to work on Linux, though. +AC_CHECK_DECLS(LC_MESSAGES,,,[#include <locale.h>]) + +ye_CHECK_VAR_PROGRAM_INVOCATION_SHORT_NAME + +dnl Checks for library functions. +AC_FUNC_FORK +AC_CHECK_FUNCS( \ + ftruncate \ + gettimeofday \ + isatty \ + nl_langinfo \ + random \ + realpath \ + strstr \ + stpcpy \ + setlocale \ + ttyname \ + wordexp) +AC_REPLACE_FUNCS(getopt_long) +dnl Following two check for much more than just library functions, iconv test +dnl in fact has to build a simple iconv app to find out wheter it's usable. +CONVERTER_LIBS= +ye_CHECK_FUNC_ICONV_USABLE +ye_CHECK_LIB_RECODE + +DEFAULT_CONVERTER_LIST="built-in" +if test "$librecode_ok" = "yes"; then + DEFAULT_CONVERTER_LIST="$DEFAULT_CONVERTER_LIST,librecode" +else + if test "$libiconv_ok" = "yes"; then + DEFAULT_CONVERTER_LIST="$DEFAULT_CONVERTER_LIST,iconv" + fi +fi +AC_DEFINE_UNQUOTED(DEFAULT_CONVERTER_LIST,"$DEFAULT_CONVERTER_LIST",[Define to default converter list.]) + +if test "$WANT_EXTERNAL" = "yes" -a "$ac_cv_func_fork_works" = "yes"; then + AC_DEFINE(ENABLE_EXTERNAL,1,[Define to enable external converter programs.]) + if test -n "$DEFAULT_EXTERNAL_CONVERTER"; then + enable_external="yes ($DEFAULT_EXTERNAL_CONVERTER)" + else + enable_external="yes (but no suitable found)" + fi +else + enable_external=no + DEFAULT_EXTERNAL_CONVERTER= +fi +AC_DEFINE_UNQUOTED(DEFAULT_EXTERNAL_CONVERTER,"$DEFAULT_EXTERNAL_CONVERTER",[Define to default external converter program.]) + +dnl Try to find locale.alias. FIXME! FIXME! FIXME! This works on GNU/Linux and +dnl perhaps nowhere else. Any suggestions are welcome. +ye_PATH_LOCALE_ALIAS + +dnl Random filename generation in scripts +if test -n "$MKTEMP_PROG"; then + SHELL_RANDOM_FILENAME='`'$MKTEMP_PROG' /tmp/enca-$$-XXXXXXXX`' +else + SHELL_RANDOM_FILENAME='/tmp/enca-$$-$RANDOM' +fi + +AC_SUBST(RELEASE) +AC_SUBST(CONVERTER_LIBS) +AC_SUBST(DEFAULT_EXTERNAL_CONVERTER) +AC_SUBST(DEFAULT_CONVERTER_LIST) +AC_SUBST(SHELL_RANDOM_FILENAME) + +AC_OUTPUT + +dnl Inform user what optional features will be built. +if test "$yeti_recode_buggy" = yes; then + librecode_state="$librecode_ok (buggy, see above)" +else + librecode_state="$librecode_ok" +fi + +if test -z "$yeti_cv_file_locale_alias"; then + locale_alias_state="built-in (naive)" +else + locale_alias_state="$yeti_cv_file_locale_alias" +fi + +if test "$ac_cv_func_wordexp" = yes; then + ENCAOPT_state="$ac_cv_func_wordexp" +else + ENCAOPT_state="built-in parser (naive)" +fi + +if test "$enable_static" = yes; then + if test "$enable_shared" = yes; then + libenca_state="static, shared" + else + libenca_state=static + fi +else + if test "$enable_shared" = yes; then + # Can this happen? + libenca_state=shared + else + libenca_state="not at all?" + fi +fi + +echo "=================================================================" +echo " Features:" +echo " libenca will be built as: $libenca_state" +echo " GNU recode library interface: $librecode_state" +echo " UNIX98 iconv interface: $libiconv_ok" +if test "$libiconv_ok" != "yes" && test "$librecode_ok" != "yes"; then +echo " (consider installing at least one of GNU libiconv and GNU librecode)" +fi +echo " External converters: $enable_external" +echo " Language preferences from locale: $ac_cv_func_setlocale" +if test "$ac_cv_func_setlocale" = yes; then +echo " Language aliases decryption: $locale_alias_state" +fi +echo " Target charset from locale: $ac_cv_func_nl_langinfo" +echo " ENCAOPT environment variable: $ENCAOPT_state" +echo "=================================================================" + +ye_WARN_FAIL($ac_cv_header_stdc,"ISO C headers") +ye_WARN_FAIL($ac_cv_header_unistd_h,"unistd.h") +ye_WARN_FAIL($ac_cv_header_sys_types_h,"sys/types.h") +ye_WARN_FAIL($ac_cv_header_sys_stat_h,"sys/stat.h") + +echo +echo "Configure complete, now type \`make' to compile enca." +echo "If it compiles, don't forget to run \`make check'." diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/.deps/basetoc.Po b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/basetoc.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/basetoc.Po @@ -0,0 +1 @@ +# dummy diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/.deps/countall.Po b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/countall.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/countall.Po @@ -0,0 +1 @@ +# dummy diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/.deps/countpair.Po b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/countpair.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/countpair.Po @@ -0,0 +1 @@ +# dummy diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/.deps/findletters.Po b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/findletters.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/findletters.Po @@ -0,0 +1 @@ +# dummy diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/.deps/mystrings.Po b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/mystrings.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/mystrings.Po @@ -0,0 +1 @@ +# dummy diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/.deps/pairtoc.Po b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/pairtoc.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/pairtoc.Po @@ -0,0 +1 @@ +# dummy diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/.deps/xlt.Po b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/xlt.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/.deps/xlt.Po @@ -0,0 +1 @@ +# dummy diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/Letters b/wlx/wayland_qt_base/build/enca-1.19/data/Letters new file mode 100644 index 0000000..ac01f13 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/Letters @@ -0,0 +1,1117 @@ +00c0 +00c1 +00c2 +00c3 +00c4 +00c5 +00c6 +00c7 +00c8 +00c9 +00ca +00cb +00cc +00cd +00ce +00cf +00d0 +00d1 +00d2 +00d3 +00d4 +00d5 +00d6 +00d8 +00d9 +00da +00db +00dc +00dd +00de +00df +00e0 +00e1 +00e2 +00e3 +00e4 +00e5 +00e6 +00e7 +00e8 +00e9 +00ea +00eb +00ec +00ed +00ee +00ef +00f0 +00f1 +00f2 +00f3 +00f4 +00f5 +00f6 +00f8 +00f9 +00fa +00fb +00fc +00fd +00fe +00ff +0100 +0101 +0102 +0103 +0104 +0105 +0106 +0107 +0108 +0109 +010a +010b +010c +010d +010e +010f +0110 +0111 +0112 +0113 +0114 +0115 +0116 +0117 +0118 +0119 +011a +011b +011c +011d +011e +011f +0120 +0121 +0122 +0123 +0124 +0125 +0126 +0127 +0128 +0129 +012a +012b +012c +012d +012e +012f +0130 +0131 +0134 +0135 +0136 +0137 +0138 +0139 +013a +013b +013c +013d +013e +013f +0140 +0141 +0142 +0143 +0144 +0145 +0146 +0147 +0148 +0149 +014a +014b +014c +014d +014e +014f +0150 +0151 +0154 +0155 +0156 +0157 +0158 +0159 +015a +015b +015c +015d +015e +015f +0160 +0161 +0162 +0163 +0164 +0165 +0166 +0167 +0168 +0169 +016a +016b +016c +016d +016e +016f +0170 +0171 +0172 +0173 +0174 +0175 +0176 +0177 +0178 +0179 +017a +017b +017c +017d +017e +017f +0180 +0181 +0182 +0183 +0184 +0185 +0186 +0187 +0188 +0189 +018a +018b +018c +018d +018e +018f +0190 +0191 +0192 +0193 +0194 +0195 +0196 +0197 +0198 +0199 +019a +019b +019c +019d +019e +019f +01a0 +01a1 +01a2 +01a3 +01a4 +01a5 +01a6 +01a7 +01a8 +01a9 +01aa +01ab +01ac +01ad +01ae +01af +01b0 +01b1 +01b2 +01b3 +01b4 +01b5 +01b6 +01b7 +01b8 +01b9 +01ba +01bb +01bc +01bd +01be +01bf +01c0 +01c1 +01c2 +01c3 +01c4 +01c5 +01c6 +01c7 +01c8 +01c9 +01ca +01cb +01cc +01cd +01ce +01cf +01d0 +01d1 +01d2 +01d3 +01d4 +01d5 +01d6 +01d7 +01d8 +01d9 +01da +01db +01dc +01dd +01de +01df +01e0 +01e1 +01e2 +01e3 +01e4 +01e5 +01e6 +01e7 +01e8 +01e9 +01ea +01eb +01ec +01ed +01ee +01ef +01f0 +01f1 +01f2 +01f3 +01f4 +01f5 +01f6 +01f7 +01f8 +01f9 +01fa +01fb +01fc +01fd +01fe +01ff +0200 +0201 +0202 +0203 +0204 +0205 +0206 +0207 +0208 +0209 +020a +020b +020c +020d +020e +020f +0210 +0211 +0212 +0213 +0214 +0215 +0216 +0217 +0218 +0219 +021a +021b +021c +021d +021e +021f +0220 +0222 +0223 +0224 +0225 +0226 +0227 +0228 +0229 +022a +022b +022c +022d +022e +022f +0230 +0231 +0232 +0233 +0250 +0251 +0252 +0253 +0254 +0255 +0256 +0257 +0258 +0259 +025a +025b +025c +025d +025e +025f +0260 +0261 +0262 +0263 +0264 +0265 +0266 +0267 +0268 +0269 +026a +026b +026c +026d +026e +026f +0270 +0271 +0272 +0273 +0274 +0275 +0276 +0277 +0278 +0279 +027a +027b +027c +027d +027e +027f +0280 +0281 +0282 +0283 +0284 +0285 +0286 +0287 +0288 +0289 +028a +028b +028c +028d +028e +028f +0290 +0291 +0292 +0293 +0294 +0295 +0296 +0297 +0298 +0299 +029a +029b +029c +029d +029e +029f +02a0 +02a1 +02a2 +02a3 +02a4 +02a5 +02a6 +02a7 +02a8 +02a9 +02aa +02ab +02ac +02ad +02b0 +02b1 +02b2 +02b3 +02b4 +02b5 +02b6 +02b7 +02b8 +02b9 +02ba +02bb +02bc +02bd +02be +02bf +02c0 +02c1 +02c2 +02c3 +02c4 +02c5 +02c6 +02c8 +02c9 +02ca +02cb +02cc +02cd +02ce +02cf +02d0 +02d1 +02d2 +02d3 +02d4 +02d5 +02d6 +02d7 +02de +02df +02e0 +02e1 +02e2 +02e3 +02e4 +02e5 +02e6 +02e7 +02e8 +02e9 +02ea +02eb +02ec +02ed +02ee +0363 +0364 +0365 +0366 +0367 +0368 +0369 +036a +036b +036c +036d +036e +036f +0386 +0388 +0389 +038a +038c +038e +038f +0390 +0391 +0392 +0393 +0394 +0395 +0396 +0397 +0398 +0399 +039a +039b +039c +039d +039e +039f +03a0 +03a1 +03a3 +03a4 +03a5 +03a6 +03a7 +03a8 +03a9 +03aa +03ab +03ac +03ad +03ae +03af +03b0 +03b1 +03b2 +03b3 +03b4 +03b5 +03b6 +03b7 +03b8 +03b9 +03ba +03bb +03bc +03bd +03be +03bf +03c0 +03c1 +03c2 +03c3 +03c4 +03c5 +03c6 +03c7 +03c8 +03c9 +03ca +03cb +03cc +03cd +03ce +03d8 +03d9 +03da +03db +03dc +03dd +03de +03df +03e0 +03e1 +03e2 +03e3 +03e4 +03e5 +03e6 +03e7 +03e8 +03e9 +03ea +03eb +03ec +03ed +03ee +03ef +03f3 +0400 +0401 +0402 +0403 +0404 +0405 +0406 +0407 +0408 +0409 +040a +040b +040c +040d +040e +040f +0410 +0411 +0412 +0413 +0414 +0415 +0416 +0417 +0418 +0419 +041a +041b +041c +041d +041e +041f +0420 +0421 +0422 +0423 +0424 +0425 +0426 +0427 +0428 +0429 +042a +042b +042c +042d +042e +042f +0430 +0431 +0432 +0433 +0434 +0435 +0436 +0437 +0438 +0439 +043a +043b +043c +043d +043e +043f +0440 +0441 +0442 +0443 +0444 +0445 +0446 +0447 +0448 +0449 +044a +044b +044c +044d +044e +044f +0450 +0451 +0452 +0453 +0454 +0455 +0456 +0457 +0458 +0459 +045a +045b +045c +045d +045e +045f +0460 +0461 +0462 +0463 +0464 +0465 +0466 +0467 +0468 +0469 +046a +046b +046c +046d +046e +046f +0470 +0471 +0472 +0473 +0474 +0475 +0476 +0477 +0478 +0479 +047a +047b +047c +047d +047e +047f +0480 +0481 +048a +048b +048c +048d +048e +048f +0490 +0491 +0492 +0493 +0494 +0495 +0496 +0497 +0498 +0499 +049a +049b +049c +049d +049e +049f +04a0 +04a1 +04a2 +04a3 +04a6 +04a7 +04a8 +04a9 +04aa +04ab +04ac +04ad +04ae +04af +04b0 +04b1 +04b2 +04b3 +04b6 +04b7 +04b8 +04b9 +04ba +04bb +04bc +04bd +04be +04bf +04c0 +04c1 +04c2 +04c3 +04c4 +04c5 +04c6 +04c7 +04c8 +04c9 +04ca +04cb +04cc +04cd +04ce +04d0 +04d1 +04d2 +04d3 +04d6 +04d7 +04d8 +04d9 +04da +04db +04dc +04dd +04de +04df +04e0 +04e1 +04e2 +04e3 +04e4 +04e5 +04e6 +04e7 +04e8 +04e9 +04ea +04eb +04ec +04ed +04ee +04ef +04f0 +04f1 +04f2 +04f3 +04f4 +04f5 +04f8 +04f9 +0500 +0501 +0502 +0503 +0504 +0505 +0506 +0507 +0508 +0509 +050a +050b +050c +050d +050e +050f +1e00 +1e01 +1e02 +1e03 +1e04 +1e05 +1e06 +1e07 +1e08 +1e09 +1e0a +1e0b +1e0c +1e0d +1e0e +1e0f +1e10 +1e11 +1e12 +1e13 +1e14 +1e15 +1e16 +1e17 +1e18 +1e19 +1e1a +1e1b +1e1c +1e1d +1e1e +1e1f +1e20 +1e21 +1e22 +1e23 +1e24 +1e25 +1e26 +1e27 +1e28 +1e29 +1e2a +1e2b +1e2c +1e2d +1e2e +1e2f +1e30 +1e31 +1e32 +1e33 +1e34 +1e35 +1e36 +1e37 +1e38 +1e39 +1e3a +1e3b +1e3c +1e3d +1e3e +1e3f +1e40 +1e41 +1e42 +1e43 +1e44 +1e45 +1e46 +1e47 +1e48 +1e49 +1e4a +1e4b +1e4c +1e4d +1e4e +1e4f +1e50 +1e51 +1e52 +1e53 +1e54 +1e55 +1e56 +1e57 +1e58 +1e59 +1e5a +1e5b +1e5c +1e5d +1e5e +1e5f +1e60 +1e61 +1e62 +1e63 +1e64 +1e65 +1e66 +1e67 +1e68 +1e69 +1e6a +1e6b +1e6c +1e6d +1e6e +1e6f +1e70 +1e71 +1e72 +1e73 +1e74 +1e75 +1e76 +1e77 +1e78 +1e79 +1e7a +1e7b +1e7c +1e7d +1e7e +1e7f +1e80 +1e81 +1e82 +1e83 +1e84 +1e85 +1e86 +1e87 +1e88 +1e89 +1e8a +1e8b +1e8c +1e8d +1e8e +1e8f +1e90 +1e91 +1e92 +1e93 +1e94 +1e95 +1e96 +1e97 +1e98 +1e99 +1e9a +1e9b +1ea0 +1ea1 +1ea2 +1ea3 +1ea4 +1ea5 +1ea6 +1ea7 +1ea8 +1ea9 +1eaa +1eab +1eac +1ead +1eae +1eaf +1eb0 +1eb1 +1eb2 +1eb3 +1eb4 +1eb5 +1eb6 +1eb7 +1eb8 +1eb9 +1eba +1ebb +1ebc +1ebd +1ebe +1ebf +1ec0 +1ec1 +1ec2 +1ec3 +1ec4 +1ec5 +1ec6 +1ec7 +1ec8 +1ec9 +1eca +1ecb +1ecc +1ecd +1ece +1ecf +1ed0 +1ed1 +1ed2 +1ed3 +1ed4 +1ed5 +1ed6 +1ed7 +1ed8 +1ed9 +1eda +1edb +1edc +1edd +1ede +1edf +1ee0 +1ee1 +1ee2 +1ee3 +1ee4 +1ee5 +1ee6 +1ee7 +1ee8 +1ee9 +1eea +1eeb +1eec +1eed +1eee +1eef +1ef0 +1ef1 +1ef2 +1ef3 +1ef4 +1ef5 +1ef6 +1ef7 +1ef8 +1ef9 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/Makefile b/wlx/wayland_qt_base/build/enca-1.19/data/Makefile new file mode 100644 index 0000000..90dc99b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/Makefile @@ -0,0 +1,803 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# data/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + + + + +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/enca +pkgincludedir = $(includedir)/enca +pkglibdir = $(libdir)/enca +pkglibexecdir = $(libexecdir)/enca +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-pc-linux-gnu +host_triplet = x86_64-pc-linux-gnu +noinst_PROGRAMS = basetoc$(EXEEXT) countall$(EXEEXT) \ + countpair$(EXEEXT) findletters$(EXEEXT) mystrings$(EXEEXT) \ + pairtoc$(EXEEXT) xlt$(EXEEXT) +subdir = data +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(noinst_HEADERS) \ + $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +PROGRAMS = $(noinst_PROGRAMS) +am_basetoc_OBJECTS = basetoc.$(OBJEXT) +basetoc_OBJECTS = $(am_basetoc_OBJECTS) +basetoc_LDADD = $(LDADD) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +am_countall_OBJECTS = countall.$(OBJEXT) +countall_OBJECTS = $(am_countall_OBJECTS) +countall_LDADD = $(LDADD) +am_countpair_OBJECTS = countpair.$(OBJEXT) +countpair_OBJECTS = $(am_countpair_OBJECTS) +countpair_LDADD = $(LDADD) +am_findletters_OBJECTS = findletters.$(OBJEXT) +findletters_OBJECTS = $(am_findletters_OBJECTS) +findletters_LDADD = $(LDADD) +am_mystrings_OBJECTS = mystrings.$(OBJEXT) +mystrings_OBJECTS = $(am_mystrings_OBJECTS) +mystrings_LDADD = $(LDADD) +am_pairtoc_OBJECTS = pairtoc.$(OBJEXT) +pairtoc_OBJECTS = $(am_pairtoc_OBJECTS) +pairtoc_LDADD = $(LDADD) +am_xlt_OBJECTS = xlt.$(OBJEXT) +xlt_OBJECTS = $(am_xlt_OBJECTS) +xlt_LDADD = $(LDADD) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(basetoc_SOURCES) $(countall_SOURCES) $(countpair_SOURCES) \ + $(findletters_SOURCES) $(mystrings_SOURCES) $(pairtoc_SOURCES) \ + $(xlt_SOURCES) +DIST_SOURCES = $(basetoc_SOURCES) $(countall_SOURCES) \ + $(countpair_SOURCES) $(findletters_SOURCES) \ + $(mystrings_SOURCES) $(pairtoc_SOURCES) $(xlt_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +DATA = $(noinst_DATA) +HEADERS = $(noinst_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ + $(top_srcdir)/mkinstalldirs README +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing aclocal-1.15 -I m4 +AMTAR = $${TAR-tar} +AM_DEFAULT_VERBOSITY = 1 +AR = ar +AUTOCONF = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoconf +AUTOHEADER = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoheader +AUTOMAKE = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing automake-1.15 +AWK = gawk +CC = /usr/bin/cc +CCDEPMODE = depmode=gcc3 +CFLAGS = -Wall -Wextra -W -pedantic -g -O2 +CONVERTER_LIBS = +CPP = /usr/bin/cc -E +CPPFLAGS = +CSTOCS_PROG = +CYGPATH_W = echo +DEFAULT_CONVERTER_LIST = built-in,iconv +DEFAULT_EXTERNAL_CONVERTER = recode +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +FGREP = /usr/bin/grep -F +GCOV = /usr/bin/gcov +GCOV_CPPFLAGS = +GCOV_FLAGS = +GCOV_LDFLAGS = +GREP = /usr/bin/grep +GTKDOC = false +HTML_DIR = ${datarootdir}/gtk-doc/html +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBICONV = +LIBM = -lm +LIBOBJS = +LIBS = -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LN_S = ln -s +LTLIBICONV = +LTLIBOBJS = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing makeinfo +MANIFEST_TOOL = : +MAP_PROG = +MKDIR_P = /usr/bin/mkdir -p +MKTEMP_PROG = /usr/bin/mktemp +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = enca +PACKAGE_BUGREPORT = https://github.com/nijel/enca/issues +PACKAGE_NAME = Enca +PACKAGE_STRING = Enca 1.19 +PACKAGE_TARNAME = enca +PACKAGE_URL = +PACKAGE_VERSION = 1.19 +PATH_SEPARATOR = : +PICONV_PROG = /usr/bin/core_perl/piconv +RANLIB = ranlib +RECODE_PROG = /usr/bin/recode +RELEASE = 1 +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SHELL_RANDOM_FILENAME = `/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` +STRIP = strip +UMAP_PROG = +VERSION = 1.19 +abs_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/data +abs_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/data +abs_top_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +abs_top_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +ac_ct_AR = ar +ac_ct_CC = /usr/bin/cc +ac_ct_DUMPBIN = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-pc-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = pc +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} +dvidir = ${docdir} +exec_prefix = ${prefix} +host = x86_64-pc-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = pc +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /usr/local +program_transform_name = s,x,x, +psdir = ${docdir} +runstatedir = ${localstatedir}/run +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = . +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = .. +noinst_DATA = $(BASES) $(RAWCOUNTS) $(PAIRCOUNTS) $(MAPS) Letters +noinst_HEADERS = \ + belarusian/belarusian.h \ + bulgarian/bulgarian.h \ + chinese/chinese.h \ + chinese/zh_weight_big5.h \ + chinese/zh_weight_gbk.h \ + croatian/croatian.h \ + czech/czech.h \ + estonian/estonian.h \ + hungarian/hungarian.h \ + latvian/latvian.h \ + lithuanian/lithuanian.h \ + polish/polish.h \ + russian/russian.h \ + slovak/slovak.h \ + slovene/slovene.h \ + ukrainian/ukrainian.h + +basetoc_SOURCES = basetoc.c +countall_SOURCES = countall.c +countpair_SOURCES = countpair.c +findletters_SOURCES = findletters.c +mystrings_SOURCES = mystrings.c +pairtoc_SOURCES = pairtoc.c +xlt_SOURCES = xlt.c +noinst_SCRPITS = \ + clean.sh \ + doit.sh \ + extreme.pl \ + makepaircounts.sh \ + map2letters.sh \ + normalize.pl \ + totals.pl \ + belarusian/doit.sh \ + bulgarian/doit.sh \ + croatian/doit.sh \ + czech/doit.sh \ + estonian/doit.sh \ + hungarian/doit.sh \ + latvian/doit.sh \ + lithuanian/doit.sh \ + polish/doit.sh \ + russian/doit.sh \ + slovak/doit.sh \ + slovene/doit.sh \ + ukrainian/doit.sh + +BASES = \ + belarusian/cp1251.base \ + bulgarian/cp1251.base \ + croatian/cp1250.base \ + czech/iso88592.base \ + estonian/iso88594.base \ + hungarian/iso88592.base \ + russian/koi8r.base \ + latvian/cp1257.base \ + lithuanian/cp1257.base \ + polish/iso88592.base \ + slovak/cp1250.base \ + slovene/iso88592.base \ + ukrainian/cp1251.base + +RAWCOUNTS = \ + belarusian/rawcounts.cp1251 \ + bulgarian/rawcounts.cp1251 \ + croatian/rawcounts.cp1250 \ + czech/rawcounts.iso88592 \ + estonian/rawcounts.iso88594 \ + hungarian/rawcounts.iso88592 \ + latvian/rawcounts.cp1257 \ + lithuanian/rawcounts.cp1257 \ + polish/rawcounts.iso88592 \ + russian/rawcounts.koi8r \ + slovak/rawcounts.cp1250 \ + slovene/rawcounts.iso88592 \ + ukrainian/rawcounts.cp1251 + +PAIRCOUNTS = \ + belarusian/paircounts.cp1251 \ + belarusian/paircounts.ibm866 \ + bulgarian/paircounts.cp1251 \ + russian/paircounts.koi8r \ + ukrainian/paircounts.cp1251 + +MAPS = \ + maps/baltic.map \ + maps/cork.map \ + maps/cp1125.map \ + maps/cp1250.map \ + maps/cp1251.map \ + maps/cp1257.map \ + maps/ecma113.map \ + maps/ibm775.map \ + maps/ibm852.map \ + maps/ibm855.map \ + maps/ibm866-bad.map \ + maps/ibm866.map \ + maps/iso885913.map \ + maps/iso885916.map \ + maps/iso88592.map \ + maps/iso88594.map \ + maps/iso88595.map \ + maps/keybcs2.map \ + maps/koi8cs2.map \ + maps/koi8r.map \ + maps/koi8u.map \ + maps/koi8ub.map \ + maps/koi8uni.map \ + maps/macce.map \ + maps/maccyr.map + +OTHERDATA = \ + chinese/zh_weight_big5.txt \ + chinese/zh_weight_gb.txt + +EXTRA_DIST = README $(BASES) $(RAWCOUNTS) $(PAIRCOUNTS) $(MAPS) $(OTHERDATA) \ + $(noinst_SCRPITS) Letters + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits data/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits data/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +basetoc$(EXEEXT): $(basetoc_OBJECTS) $(basetoc_DEPENDENCIES) $(EXTRA_basetoc_DEPENDENCIES) + @rm -f basetoc$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(basetoc_OBJECTS) $(basetoc_LDADD) $(LIBS) + +countall$(EXEEXT): $(countall_OBJECTS) $(countall_DEPENDENCIES) $(EXTRA_countall_DEPENDENCIES) + @rm -f countall$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(countall_OBJECTS) $(countall_LDADD) $(LIBS) + +countpair$(EXEEXT): $(countpair_OBJECTS) $(countpair_DEPENDENCIES) $(EXTRA_countpair_DEPENDENCIES) + @rm -f countpair$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(countpair_OBJECTS) $(countpair_LDADD) $(LIBS) + +findletters$(EXEEXT): $(findletters_OBJECTS) $(findletters_DEPENDENCIES) $(EXTRA_findletters_DEPENDENCIES) + @rm -f findletters$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(findletters_OBJECTS) $(findletters_LDADD) $(LIBS) + +mystrings$(EXEEXT): $(mystrings_OBJECTS) $(mystrings_DEPENDENCIES) $(EXTRA_mystrings_DEPENDENCIES) + @rm -f mystrings$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(mystrings_OBJECTS) $(mystrings_LDADD) $(LIBS) + +pairtoc$(EXEEXT): $(pairtoc_OBJECTS) $(pairtoc_DEPENDENCIES) $(EXTRA_pairtoc_DEPENDENCIES) + @rm -f pairtoc$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(pairtoc_OBJECTS) $(pairtoc_LDADD) $(LIBS) + +xlt$(EXEEXT): $(xlt_OBJECTS) $(xlt_DEPENDENCIES) $(EXTRA_xlt_DEPENDENCIES) + @rm -f xlt$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(xlt_OBJECTS) $(xlt_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/basetoc.Po +include ./$(DEPDIR)/countall.Po +include ./$(DEPDIR)/countpair.Po +include ./$(DEPDIR)/findletters.Po +include ./$(DEPDIR)/mystrings.Po +include ./$(DEPDIR)/pairtoc.Po +include ./$(DEPDIR)/xlt.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(PROGRAMS) $(DATA) $(HEADERS) +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool clean-local clean-noinstPROGRAMS \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-local distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ + clean-libtool clean-local clean-noinstPROGRAMS cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-local distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# We don't want to recreate the headers over and over, namely we don't want +# to recreate them during normal compilation. Run `make headers' to create +# them. +headers: $(BASES) xlt letters + ./doit.sh + +letters: + ./map2letters.sh + +.PHONY: headers letters + +clean-local: + -rm -f *~ */*~ core.* + +distclean-local: + -./clean.sh + -rm -f $(noinst_PROGRAMS) + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/Makefile.am b/wlx/wayland_qt_base/build/enca-1.19/data/Makefile.am new file mode 100644 index 0000000..14e852b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/Makefile.am @@ -0,0 +1,145 @@ +noinst_PROGRAMS = \ + basetoc \ + countall \ + countpair \ + findletters \ + mystrings \ + pairtoc \ + xlt +noinst_DATA = $(BASES) $(RAWCOUNTS) $(PAIRCOUNTS) $(MAPS) Letters +noinst_HEADERS = \ + belarusian/belarusian.h \ + bulgarian/bulgarian.h \ + chinese/chinese.h \ + chinese/zh_weight_big5.h \ + chinese/zh_weight_gbk.h \ + croatian/croatian.h \ + czech/czech.h \ + estonian/estonian.h \ + hungarian/hungarian.h \ + latvian/latvian.h \ + lithuanian/lithuanian.h \ + polish/polish.h \ + russian/russian.h \ + slovak/slovak.h \ + slovene/slovene.h \ + ukrainian/ukrainian.h + +basetoc_SOURCES = basetoc.c +countall_SOURCES = countall.c +countpair_SOURCES = countpair.c +findletters_SOURCES = findletters.c +mystrings_SOURCES = mystrings.c +pairtoc_SOURCES = pairtoc.c +xlt_SOURCES = xlt.c + +noinst_SCRPITS = \ + clean.sh \ + doit.sh \ + extreme.pl \ + makepaircounts.sh \ + map2letters.sh \ + normalize.pl \ + totals.pl \ + belarusian/doit.sh \ + bulgarian/doit.sh \ + croatian/doit.sh \ + czech/doit.sh \ + estonian/doit.sh \ + hungarian/doit.sh \ + latvian/doit.sh \ + lithuanian/doit.sh \ + polish/doit.sh \ + russian/doit.sh \ + slovak/doit.sh \ + slovene/doit.sh \ + ukrainian/doit.sh + +BASES = \ + belarusian/cp1251.base \ + bulgarian/cp1251.base \ + croatian/cp1250.base \ + czech/iso88592.base \ + estonian/iso88594.base \ + hungarian/iso88592.base \ + russian/koi8r.base \ + latvian/cp1257.base \ + lithuanian/cp1257.base \ + polish/iso88592.base \ + slovak/cp1250.base \ + slovene/iso88592.base \ + ukrainian/cp1251.base + +RAWCOUNTS = \ + belarusian/rawcounts.cp1251 \ + bulgarian/rawcounts.cp1251 \ + croatian/rawcounts.cp1250 \ + czech/rawcounts.iso88592 \ + estonian/rawcounts.iso88594 \ + hungarian/rawcounts.iso88592 \ + latvian/rawcounts.cp1257 \ + lithuanian/rawcounts.cp1257 \ + polish/rawcounts.iso88592 \ + russian/rawcounts.koi8r \ + slovak/rawcounts.cp1250 \ + slovene/rawcounts.iso88592 \ + ukrainian/rawcounts.cp1251 + +PAIRCOUNTS = \ + belarusian/paircounts.cp1251 \ + belarusian/paircounts.ibm866 \ + bulgarian/paircounts.cp1251 \ + russian/paircounts.koi8r \ + ukrainian/paircounts.cp1251 + +MAPS = \ + maps/baltic.map \ + maps/cork.map \ + maps/cp1125.map \ + maps/cp1250.map \ + maps/cp1251.map \ + maps/cp1257.map \ + maps/ecma113.map \ + maps/ibm775.map \ + maps/ibm852.map \ + maps/ibm855.map \ + maps/ibm866-bad.map \ + maps/ibm866.map \ + maps/iso885913.map \ + maps/iso885916.map \ + maps/iso88592.map \ + maps/iso88594.map \ + maps/iso88595.map \ + maps/keybcs2.map \ + maps/koi8cs2.map \ + maps/koi8r.map \ + maps/koi8u.map \ + maps/koi8ub.map \ + maps/koi8uni.map \ + maps/macce.map \ + maps/maccyr.map + +OTHERDATA = \ + chinese/zh_weight_big5.txt \ + chinese/zh_weight_gb.txt + +EXTRA_DIST = README $(BASES) $(RAWCOUNTS) $(PAIRCOUNTS) $(MAPS) $(OTHERDATA) \ + $(noinst_SCRPITS) Letters + +# We don't want to recreate the headers over and over, namely we don't want +# to recreate them during normal compilation. Run `make headers' to create +# them. +headers: $(BASES) xlt letters + ./doit.sh + +letters: + ./map2letters.sh + +.PHONY: headers letters + +clean-local: + -rm -f *~ */*~ core.* + +distclean-local: + -./clean.sh + -rm -f $(noinst_PROGRAMS) diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/Makefile.in b/wlx/wayland_qt_base/build/enca-1.19/data/Makefile.in new file mode 100644 index 0000000..f0c2123 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/Makefile.in @@ -0,0 +1,803 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +noinst_PROGRAMS = basetoc$(EXEEXT) countall$(EXEEXT) \ + countpair$(EXEEXT) findletters$(EXEEXT) mystrings$(EXEEXT) \ + pairtoc$(EXEEXT) xlt$(EXEEXT) +subdir = data +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(noinst_HEADERS) \ + $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +PROGRAMS = $(noinst_PROGRAMS) +am_basetoc_OBJECTS = basetoc.$(OBJEXT) +basetoc_OBJECTS = $(am_basetoc_OBJECTS) +basetoc_LDADD = $(LDADD) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +am_countall_OBJECTS = countall.$(OBJEXT) +countall_OBJECTS = $(am_countall_OBJECTS) +countall_LDADD = $(LDADD) +am_countpair_OBJECTS = countpair.$(OBJEXT) +countpair_OBJECTS = $(am_countpair_OBJECTS) +countpair_LDADD = $(LDADD) +am_findletters_OBJECTS = findletters.$(OBJEXT) +findletters_OBJECTS = $(am_findletters_OBJECTS) +findletters_LDADD = $(LDADD) +am_mystrings_OBJECTS = mystrings.$(OBJEXT) +mystrings_OBJECTS = $(am_mystrings_OBJECTS) +mystrings_LDADD = $(LDADD) +am_pairtoc_OBJECTS = pairtoc.$(OBJEXT) +pairtoc_OBJECTS = $(am_pairtoc_OBJECTS) +pairtoc_LDADD = $(LDADD) +am_xlt_OBJECTS = xlt.$(OBJEXT) +xlt_OBJECTS = $(am_xlt_OBJECTS) +xlt_LDADD = $(LDADD) +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(basetoc_SOURCES) $(countall_SOURCES) $(countpair_SOURCES) \ + $(findletters_SOURCES) $(mystrings_SOURCES) $(pairtoc_SOURCES) \ + $(xlt_SOURCES) +DIST_SOURCES = $(basetoc_SOURCES) $(countall_SOURCES) \ + $(countpair_SOURCES) $(findletters_SOURCES) \ + $(mystrings_SOURCES) $(pairtoc_SOURCES) $(xlt_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +DATA = $(noinst_DATA) +HEADERS = $(noinst_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ + $(top_srcdir)/mkinstalldirs README +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERTER_LIBS = @CONVERTER_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CSTOCS_PROG = @CSTOCS_PROG@ +CYGPATH_W = @CYGPATH_W@ +DEFAULT_CONVERTER_LIST = @DEFAULT_CONVERTER_LIST@ +DEFAULT_EXTERNAL_CONVERTER = @DEFAULT_EXTERNAL_CONVERTER@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCOV = @GCOV@ +GCOV_CPPFLAGS = @GCOV_CPPFLAGS@ +GCOV_FLAGS = @GCOV_FLAGS@ +GCOV_LDFLAGS = @GCOV_LDFLAGS@ +GREP = @GREP@ +GTKDOC = @GTKDOC@ +HTML_DIR = @HTML_DIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBM = @LIBM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MAP_PROG = @MAP_PROG@ +MKDIR_P = @MKDIR_P@ +MKTEMP_PROG = @MKTEMP_PROG@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PICONV_PROG = @PICONV_PROG@ +RANLIB = @RANLIB@ +RECODE_PROG = @RECODE_PROG@ +RELEASE = @RELEASE@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SHELL_RANDOM_FILENAME = @SHELL_RANDOM_FILENAME@ +STRIP = @STRIP@ +UMAP_PROG = @UMAP_PROG@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +noinst_DATA = $(BASES) $(RAWCOUNTS) $(PAIRCOUNTS) $(MAPS) Letters +noinst_HEADERS = \ + belarusian/belarusian.h \ + bulgarian/bulgarian.h \ + chinese/chinese.h \ + chinese/zh_weight_big5.h \ + chinese/zh_weight_gbk.h \ + croatian/croatian.h \ + czech/czech.h \ + estonian/estonian.h \ + hungarian/hungarian.h \ + latvian/latvian.h \ + lithuanian/lithuanian.h \ + polish/polish.h \ + russian/russian.h \ + slovak/slovak.h \ + slovene/slovene.h \ + ukrainian/ukrainian.h + +basetoc_SOURCES = basetoc.c +countall_SOURCES = countall.c +countpair_SOURCES = countpair.c +findletters_SOURCES = findletters.c +mystrings_SOURCES = mystrings.c +pairtoc_SOURCES = pairtoc.c +xlt_SOURCES = xlt.c +noinst_SCRPITS = \ + clean.sh \ + doit.sh \ + extreme.pl \ + makepaircounts.sh \ + map2letters.sh \ + normalize.pl \ + totals.pl \ + belarusian/doit.sh \ + bulgarian/doit.sh \ + croatian/doit.sh \ + czech/doit.sh \ + estonian/doit.sh \ + hungarian/doit.sh \ + latvian/doit.sh \ + lithuanian/doit.sh \ + polish/doit.sh \ + russian/doit.sh \ + slovak/doit.sh \ + slovene/doit.sh \ + ukrainian/doit.sh + +BASES = \ + belarusian/cp1251.base \ + bulgarian/cp1251.base \ + croatian/cp1250.base \ + czech/iso88592.base \ + estonian/iso88594.base \ + hungarian/iso88592.base \ + russian/koi8r.base \ + latvian/cp1257.base \ + lithuanian/cp1257.base \ + polish/iso88592.base \ + slovak/cp1250.base \ + slovene/iso88592.base \ + ukrainian/cp1251.base + +RAWCOUNTS = \ + belarusian/rawcounts.cp1251 \ + bulgarian/rawcounts.cp1251 \ + croatian/rawcounts.cp1250 \ + czech/rawcounts.iso88592 \ + estonian/rawcounts.iso88594 \ + hungarian/rawcounts.iso88592 \ + latvian/rawcounts.cp1257 \ + lithuanian/rawcounts.cp1257 \ + polish/rawcounts.iso88592 \ + russian/rawcounts.koi8r \ + slovak/rawcounts.cp1250 \ + slovene/rawcounts.iso88592 \ + ukrainian/rawcounts.cp1251 + +PAIRCOUNTS = \ + belarusian/paircounts.cp1251 \ + belarusian/paircounts.ibm866 \ + bulgarian/paircounts.cp1251 \ + russian/paircounts.koi8r \ + ukrainian/paircounts.cp1251 + +MAPS = \ + maps/baltic.map \ + maps/cork.map \ + maps/cp1125.map \ + maps/cp1250.map \ + maps/cp1251.map \ + maps/cp1257.map \ + maps/ecma113.map \ + maps/ibm775.map \ + maps/ibm852.map \ + maps/ibm855.map \ + maps/ibm866-bad.map \ + maps/ibm866.map \ + maps/iso885913.map \ + maps/iso885916.map \ + maps/iso88592.map \ + maps/iso88594.map \ + maps/iso88595.map \ + maps/keybcs2.map \ + maps/koi8cs2.map \ + maps/koi8r.map \ + maps/koi8u.map \ + maps/koi8ub.map \ + maps/koi8uni.map \ + maps/macce.map \ + maps/maccyr.map + +OTHERDATA = \ + chinese/zh_weight_big5.txt \ + chinese/zh_weight_gb.txt + +EXTRA_DIST = README $(BASES) $(RAWCOUNTS) $(PAIRCOUNTS) $(MAPS) $(OTHERDATA) \ + $(noinst_SCRPITS) Letters + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits data/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits data/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +basetoc$(EXEEXT): $(basetoc_OBJECTS) $(basetoc_DEPENDENCIES) $(EXTRA_basetoc_DEPENDENCIES) + @rm -f basetoc$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(basetoc_OBJECTS) $(basetoc_LDADD) $(LIBS) + +countall$(EXEEXT): $(countall_OBJECTS) $(countall_DEPENDENCIES) $(EXTRA_countall_DEPENDENCIES) + @rm -f countall$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(countall_OBJECTS) $(countall_LDADD) $(LIBS) + +countpair$(EXEEXT): $(countpair_OBJECTS) $(countpair_DEPENDENCIES) $(EXTRA_countpair_DEPENDENCIES) + @rm -f countpair$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(countpair_OBJECTS) $(countpair_LDADD) $(LIBS) + +findletters$(EXEEXT): $(findletters_OBJECTS) $(findletters_DEPENDENCIES) $(EXTRA_findletters_DEPENDENCIES) + @rm -f findletters$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(findletters_OBJECTS) $(findletters_LDADD) $(LIBS) + +mystrings$(EXEEXT): $(mystrings_OBJECTS) $(mystrings_DEPENDENCIES) $(EXTRA_mystrings_DEPENDENCIES) + @rm -f mystrings$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(mystrings_OBJECTS) $(mystrings_LDADD) $(LIBS) + +pairtoc$(EXEEXT): $(pairtoc_OBJECTS) $(pairtoc_DEPENDENCIES) $(EXTRA_pairtoc_DEPENDENCIES) + @rm -f pairtoc$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(pairtoc_OBJECTS) $(pairtoc_LDADD) $(LIBS) + +xlt$(EXEEXT): $(xlt_OBJECTS) $(xlt_DEPENDENCIES) $(EXTRA_xlt_DEPENDENCIES) + @rm -f xlt$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(xlt_OBJECTS) $(xlt_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/basetoc.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/countall.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/countpair.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/findletters.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mystrings.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pairtoc.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xlt.Po@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(PROGRAMS) $(DATA) $(HEADERS) +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool clean-local clean-noinstPROGRAMS \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-local distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ + clean-libtool clean-local clean-noinstPROGRAMS cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-local distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +# We don't want to recreate the headers over and over, namely we don't want +# to recreate them during normal compilation. Run `make headers' to create +# them. +headers: $(BASES) xlt letters + ./doit.sh + +letters: + ./map2letters.sh + +.PHONY: headers letters + +clean-local: + -rm -f *~ */*~ core.* + +distclean-local: + -./clean.sh + -rm -f $(noinst_PROGRAMS) + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/README b/wlx/wayland_qt_base/build/enca-1.19/data/README new file mode 100644 index 0000000..49ba187 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/README @@ -0,0 +1,76 @@ +=== Programs === +doit.sh -- Regenerates all */*.base and */*.c files from the source one + (given as first parameter in */doit.sh), used by */doit.sh to + regenerate stuff in individual directories too. Uses many of + following scripts. + +*/doit.sh -- Customized scripts for individual directories. Once a directory + contains doit.sh, it's run by the main one. + +clean.sh -- Removes most auxiliary files from language subdirs. + +basetoc.c -- [filter] Converts one .base file to .c file, used by doit.sh + $ ./basetoc <CHARSET.base >CHARSET.c + +totals.pl -- Reads generated .c files and computes significancy data, weight + sums and other summary data, writes file `totals.c' + $ ./totals.pl CHARSET1.c ... CHARSETn.c + +normalize.pl -- [filter] Does some kind of funny weight normalization, useful + for producing CHARSET.base files, since the weights must fit + into unsigned short int: + $ ./normalize.pl <COUNTS >NORMALIZED_COUNTS + Given a file on command line, it normalizes input to have + exactly(!) the same weight sum: + $ ./normalize.pl REFERENCE_COUNTS <COUNTS >RENORMALIZED_COUNTS + This is not run by doit.sh. + +extreme.pl -- Given two count files, it finds characters most suitable for + hook deciding between these two, i.e. characters with the + biggest difference of occurences: + $ ./extreme.pl COUNT1 COUNT2 + +xlt.c -- [filter] Extremely simple charset converter, to become independent + on the other broken converters: + $ ./xlt SOURCE.map TARGET.map <TEXT >CONVERTED_TEXT + +mystrings.c -- [filter] Extract text chunks from input (strings(1) doesn't + seem to do good job on 8bit files): + $ ./mystrings <FILE | ... + +countall.c -- [filter] Count character frequencies + $ ./countall <TEXT >rawcounts.CHARSET + +countpair.c -- [filter] Count 8bit letter pair frequencies and print a table + containing as much pairs as to get 95% of all + $ ./countpair CHARSET.letters <TEXT >paircounts.CHARSET + +findletters.c -- [filter] Find what 8bit characters from a charset map are + letters + $ ./findletters CHARSET.map <Letters >CHARSET.letters + +map2letters.sh -- Run findletters.c for all charsets in maps/. + +=== Data === +Letters -- Unicode characters assumed to be letters, excluding 7bits. Also + excluding non-European scripts, to keep it small. + +maps/ -- 8bit charset -> UCS2 maps, notable ones: + ibm866-bad.map -- Translates Latin `i' and `I' to Cyrillic 0x0456 and 0x0406, + thus approximates them the opposite way when used as + TARGET. + maccyr.map -- It's Macintosh Cyrillic after Apple unification of Russian + and Ukriainian variants and adding Euro symbol there, in + Mac OS 9.0 or so (recode uses the old Russian maccyr -- FIXME + with iconv it doesn't?). + macce.map -- Macintosh Central European encoding, the real one, not the + crappy one used by recode. + koi8u.map -- KOI8-U (Ukrainian) (recode uses some strange mapping?). + koi8uni.map -- KOI8-Unified. + koi8ub.map -- KOI8-UB (Ukrainian/Belarusian). + cork.map -- T1 Cork encoding (recode uses some strange mapping?). + iso885913.map -- ISO-8859-13 map (recode uses some strange mapping?). + +letters/ -- lists of 8bit charset that are letters (generated) for various + charsets, run map2letters.sh to create it + diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/basetoc.c b/wlx/wayland_qt_base/build/enca-1.19/data/basetoc.c new file mode 100644 index 0000000..03723ad --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/basetoc.c @@ -0,0 +1,37 @@ +#include <stdio.h> +#include <ctype.h> + +#define mytoupper(x) (islower(x) ? toupper(x) : (x)) + +int +main(int argc, char *argv[]) +{ + unsigned int weights[0x100]; + unsigned int i, j; + unsigned char c; + + for (i = 0; i < 0x100; i++) + weights[i] = 0; + + while (scanf("%c %u\n", &c, &j) == 2) + weights[c] = j; + + puts("/* THIS IS A GENERATED TABLE, see data/basetoc.c. */"); + printf("static const unsigned short int RAW_"); + for (i = 0; argv[1][i]; i++) + printf("%c", mytoupper(argv[1][i])); + puts("[] = {"); + + for (i = 0; i < 0x100; i++) { + if (i % 8 == 0) + printf(" "); + printf("%4u", weights[i]); + if (i % 8 == 7) + printf(", /* 0x%02x */\n", i-7); + else + printf(", "); + } + puts("};\n"); + + return 0; +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/belarusian.h b/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/belarusian.h new file mode 100644 index 0000000..7aaa133 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/belarusian.h @@ -0,0 +1,970 @@ +/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1251[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 939, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 1491, 0, 0, 0, 0, /* 0xb0 */ + 187, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 137, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 5987, 651, 1083, 728, 1220, 1497, 282, 1029, /* 0xe0 */ + 0, 380, 1400, 1540, 1111, 2360, 1390, 1015, /* 0xe8 */ + 1623, 1555, 1345, 1172, 0, 424, 896, 556, /* 0xf0 */ + 445, 0, 0, 1673, 602, 381, 227, 1394, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_CP1251[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 255, 255, 0, 255, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 255, 0, 255, 255, 255, 255, /* 0x88 */ + 255, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 255, 0, 255, 255, 255, 255, /* 0x98 */ + 0, 255, 1, 255, 0, 255, 0, 0, /* 0xa0 */ + 2, 0, 255, 0, 0, 0, 0, 255, /* 0xa8 */ + 0, 0, 3, 4, 255, 0, 0, 0, /* 0xb0 */ + 5, 0, 255, 0, 255, 255, 255, 255, /* 0xb8 */ + 6, 7, 8, 9, 255, 255, 255, 10, /* 0xc0 */ + 255, 255, 11, 255, 12, 13, 255, 14, /* 0xc8 */ + 15, 255, 16, 17, 255, 255, 255, 255, /* 0xd0 */ + 255, 255, 255, 255, 255, 255, 255, 18, /* 0xd8 */ + 19, 20, 21, 22, 23, 24, 25, 26, /* 0xe0 */ + 255, 27, 28, 29, 30, 31, 32, 33, /* 0xe8 */ + 34, 35, 36, 37, 38, 39, 40, 41, /* 0xf0 */ + 42, 255, 255, 43, 44, 45, 46, 47, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_CP1251[] = { + + (unsigned char*)"\xef\xed\xf1\xe7\xe0\xe4\xff\xe2\xf2\xe1\xea\xec\xb3\xe3\xa2\xf0\xf3\xf8\xeb\xc0\xf7\xf6\xf5\xe6\xcf\xcd\xd1\xc1\xb8\xcc\xc2\xca\xdf\xd3\xc4\xc7\xd2\xc3\xb2\xd0\xd5\xcb\xf4\xd8\xe5\xd7\xa8", /* FILLCHAR */ + (unsigned char*)".\xf1\xed\xeb\xe4\xf8\xe6\xe2\xe7\xea", /* 0xa2 */ + (unsigned char*)"\xed", /* 0xa8 */ + (unsigned char*)".", /* 0xb2 */ + (unsigned char*)".\xed\xea\xeb\xf6\xf1\xec\xf5\xa2\xf0\xf7\xff\xe2\xf2\xe4\xe7\xf8", /* 0xb3 */ + (unsigned char*)"\xed.\xe9", /* 0xb8 */ + (unsigned char*)".\xeb", /* 0xc0 */ + (unsigned char*)"\xe5\xe0", /* 0xc1 */ + (unsigned char*)"\xee", /* 0xc2 */ + (unsigned char*)"\xfd", /* 0xc3 */ + (unsigned char*)"\xe0", /* 0xc7 */ + (unsigned char*)"\xe0", /* 0xca */ + (unsigned char*)"\xe0", /* 0xcc */ + (unsigned char*)"\xe0\xe5", /* 0xcd */ + (unsigned char*)"\xe0\xf0", /* 0xcf */ + (unsigned char*)"\xe0", /* 0xd0 */ + (unsigned char*)"\xe0", /* 0xd2 */ + (unsigned char*)".", /* 0xd3 */ + (unsigned char*)".", /* 0xdf */ + (unsigned char*)".\xeb\xe4\xf0\xf1\xa2\xed\xec\xe2\xea\xe3\xf6\xe9\xe1\xe7\xf2\xef\xf7\xe5\xff\xf5\xfe\xf8\xe6\xb8\xf4\xb3", /* 0xe0 */ + (unsigned char*)"\xfb\xe0\xe5\xee.\xf0\xf3\xb3\xeb\xff\xed", /* 0xe1 */ + (unsigned char*)"\xe0\xfb\xe5\xee\xb3\xff\xf3.", /* 0xe2 */ + (unsigned char*)"\xe0\xee\xfd.\xeb\xf3\xf0\xb3\xed\xe5", /* 0xe3 */ + (unsigned char*)"\xe0\xe7.\xfb\xed\xf3\xee\xf0\xea\xe2\xeb\xe6\xf1\xfd\xf7", /* 0xe4 */ + (unsigned char*)".\xf0\xed\xeb\xe4\xf1\xf6\xe9\xa2\xec\xea\xf2\xe7\xf8\xf7\xe2\xef\xe5\xe6\xe1", /* 0xe5 */ + (unsigned char*)"\xe0\xfb.\xed\xee", /* 0xe6 */ + (unsigned char*)"\xe0.\xe5\xb3\xed\xff\xe2\xfc\xf3\xe4\xf0\xec\xe1\xe3\xeb\xfb", /* 0xe7 */ + (unsigned char*)".\xed\xf8\xf1", /* 0xe9 */ + (unsigned char*)"\xe0.\xb3\xf3\xee\xf0\xeb\xf2\xf1\xed", /* 0xea */ + (unsigned char*)"\xe0\xb3\xfc\xe5\xff\xee.\xfe\xfb\xf3\xb8", /* 0xeb */ + (unsigned char*)".\xe0\xb3\xe5\xee\xf3\xff\xfb\xed\xeb", /* 0xec */ + (unsigned char*)"\xe0\xe5\xfb\xb3.\xff\xf3\xed\xee\xfc\xf2\xf1\xea\xf6\xe4\xf8\xf7", /* 0xed */ + (unsigned char*)".\xa2\xeb\xe4\xf0\xe2\xed\xf1\xe9\xe3\xec\xe6\xe1\xf2\xea\xf7\xe5\xe7\xef\xf8\xf6\xf5", /* 0xee */ + (unsigned char*)"\xe0\xf0\xe5\xee\xeb\xb3\xfb\xf3.\xff", /* 0xef */ + (unsigned char*)"\xe0\xfb\xee\xf3\xfd.\xed\xea\xf2\xf8\xec\xe3\xe2\xf1", /* 0xf0 */ + (unsigned char*)"\xf2\xff\xea\xe0\xf6\xef\xfc.\xf3\xeb\xe2\xb3\xe5\xed\xb8\xee\xfb\xec", /* 0xf1 */ + (unsigned char*)"\xe0\xee\xfb\xf0\xf3.\xe2\xea\xfd\xed", /* 0xf2 */ + (unsigned char*)".\xf1\xe4\xeb\xec\xf2\xf0\xfe\xea\xef\xa2\xf6\xf7\xe6\xf8\xed\xf5\xe1\xe3\xe7\xe2", /* 0xf3 */ + (unsigned char*)"\xe0", /* 0xf4 */ + (unsigned char*)".\xe0\xee\xf2\xb3\xf3\xed", /* 0xf5 */ + (unsigned char*)"\xfc\xe0\xfb\xb3\xf6\xe5\xff.\xea\xfd", /* 0xf6 */ + (unsigned char*)"\xe0\xfb\xed\xfd\xf3.\xee\xea", /* 0xf7 */ + (unsigned char*)"\xf2\xfb\xf7\xe0.\xea\xeb\xfd\xed", /* 0xf8 */ + (unsigned char*)".\xec\xff\xeb\xf5\xed\xea\xf6\xa2\xf1\xe2\xf2\xf7\xf0\xe9\xef\xb3\xe1\xe3\xf8\xe4\xe7", /* 0xfb */ + (unsigned char*)".\xed\xea\xf6\xec\xf8\xe2\xf1", /* 0xfc */ + (unsigned char*)"\xf2\xed\xf0.\xeb\xe9\xe1\xf1", /* 0xfd */ + (unsigned char*)".\xf7\xf6\xe4", /* 0xfe */ + (unsigned char*)".\xea\xed\xe3\xf0\xeb\xe4\xa2\xec\xf6\xe5\xf8\xf1\xe2\xf2\xe1\xe7\xf7\xef\xf5", /* 0xff */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM866[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 143, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 6241, 679, 1128, 759, 1272, 1561, 293, 1073, /* 0xa0 */ + 0, 397, 1460, 1606, 1159, 2459, 1448, 1057, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 1692, 1621, 1401, 1222, 0, 441, 933, 580, /* 0xe0 */ + 463, 0, 0, 1744, 628, 398, 237, 1452, /* 0xe8 */ + 0, 194, 0, 0, 0, 0, 0, 979, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_IBM866[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 1, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 2, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 3, 4, 5, 6, 255, 255, 255, 7, /* 0x80 */ + 255, 255, 8, 255, 9, 10, 255, 11, /* 0x88 */ + 12, 255, 13, 14, 15, 255, 255, 16, /* 0x90 */ + 255, 255, 255, 255, 255, 255, 255, 17, /* 0x98 */ + 18, 19, 20, 21, 22, 23, 24, 25, /* 0xa0 */ + 255, 26, 27, 28, 29, 30, 31, 32, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 33, 34, 35, 36, 37, 38, 39, 40, /* 0xe0 */ + 41, 255, 255, 42, 43, 44, 45, 46, /* 0xe8 */ + 47, 48, 255, 255, 255, 255, 255, 49, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_IBM866[] = { + + (unsigned char*)"\xaf\xad\x69\xe1\xa7\xa0\xa4\xef\xa2\xa1\xe2\xaa\xa3\xac\xf7\x97\xe0\xe3\xe8\x80\xab\xe7\xe6\xe5\x8f\xa6\x8d\x49\x91\x81\xf1\x93\x8c\x8a\x82\x9f\x84\x92\x83\x87\x90\x95\x8b\xe4\x96\x98\xf0\xa5", /* FILLCHAR */ + (unsigned char*)".", /* 0x49 */ + (unsigned char*)".\xad\xe1\xaa\xe6\xab\xe5\xac\xf7\xef\xe7\xe0\xe2\xa2\xa7\xa4\xe8", /* 0x69 */ + (unsigned char*)".\xab", /* 0x80 */ + (unsigned char*)"\xa5\xa0", /* 0x81 */ + (unsigned char*)"\xae", /* 0x82 */ + (unsigned char*)"\xed", /* 0x83 */ + (unsigned char*)"\xa0", /* 0x87 */ + (unsigned char*)"\xa0", /* 0x8a */ + (unsigned char*)"\xa0", /* 0x8c */ + (unsigned char*)"\xa0\xa5", /* 0x8d */ + (unsigned char*)"\xa0\xe0", /* 0x8f */ + (unsigned char*)"\xa0", /* 0x90 */ + (unsigned char*)"\xa0", /* 0x92 */ + (unsigned char*)".", /* 0x93 */ + (unsigned char*)".", /* 0x94 */ + (unsigned char*)".", /* 0x97 */ + (unsigned char*)".", /* 0x9f */ + (unsigned char*)".\xab\xa4\xe0\xe1\xf7\xad\xac\xa2\xaa\xa3\xe6\xa9\xa1\xa7\xe2\xaf\xe7\xa5\xef\xe5\xee\xe8\xa6\x69\xf1\xe4", /* 0xa0 */ + (unsigned char*)"\xeb\xa0\xa5\xae\xe0\x69.\xe3\xab\xef\xad", /* 0xa1 */ + (unsigned char*)"\xa0\xeb\xa5\x69\xae\xef\xe3", /* 0xa2 */ + (unsigned char*)"\xa0\xae\xed\x69\xab\xe3\xe0.\xad\xa5", /* 0xa3 */ + (unsigned char*)"\xa0\xa7.\xeb\xad\xe3\xae\xe0\xaa\xa2\xab\xa6\xe1\xed\xe7", /* 0xa4 */ + (unsigned char*)".\xe0\xad\xab\xa4\xe1\xe6\xa9\xf7\xac\xaa\xe2\xa7\xe8\xe7\xa2\xaf\xa5\xa6\xa1", /* 0xa5 */ + (unsigned char*)"\xa0\xeb.\xad\xae", /* 0xa6 */ + (unsigned char*)"\xa0.\xa5\x69\xad\xef\xa2\xec\xe3\xa4\xe0\xac\xa1\xa3\xab\xeb", /* 0xa7 */ + (unsigned char*)".\xad\xe8\xe1", /* 0xa9 */ + (unsigned char*)"\xa0\x69.\xe3\xae\xe0\xab\xe2\xe1\xad", /* 0xaa */ + (unsigned char*)"\x69\xa0\xec\xa5\xef\xae\xee\xeb\xe3.\xf1", /* 0xab */ + (unsigned char*)".\xa0\x69\xa5\xae\xe3\xef\xeb\xad\xab", /* 0xac */ + (unsigned char*)"\xa0\xa5\xeb\x69\xef.\xe3\xad\xae\xec\xe2\xe1\xaa\xe6\xa4\xe8\xe7", /* 0xad */ + (unsigned char*)".\xf7\xab\xa4\xe0\xa2\xad\xe1\xa9\xa3\xac\xa6\xa1\xe2\xaa\xe7\xa5\xa7\xaf\xe8\xe6\xe5", /* 0xae */ + (unsigned char*)"\xa0\xe0\xa5\xae\x69\xab\xeb\xe3\xef", /* 0xaf */ + (unsigned char*)"\xa0\xeb\xae\xe3\xed.\xad\xaa\xe2\xe8\xac\xa3\xa2\xe1", /* 0xe0 */ + (unsigned char*)"\xe2\xef\xaa\xa0\xe6\xaf\xec\x69\xe3\xab\xa2.\xa5\xad\xf1\xae\xeb\xac", /* 0xe1 */ + (unsigned char*)"\xa0\xae\xeb\xe0\xe3.\xa2\xaa\xed\xad", /* 0xe2 */ + (unsigned char*)".\xe1\xa4\xab\xac\xe2\xe0\xee\xaa\xaf\xf7\xe6\xe7\xa6\xe8\xad\xe5\xa1\xa3\xa7\xa2", /* 0xe3 */ + (unsigned char*)"\xa0\x69", /* 0xe4 */ + (unsigned char*)".\xa0\xae\x69\xe2\xe3\xad", /* 0xe5 */ + (unsigned char*)"\xec\x69\xa0\xeb\xe6\xa5\xef\xaa\xed\xf1", /* 0xe6 */ + (unsigned char*)"\xa0\xeb\xad\xed\xe3.\xae\xaa", /* 0xe7 */ + (unsigned char*)"\xe2\xeb\xe7\xa0.\xaa\xab\xed\xad", /* 0xe8 */ + (unsigned char*)".\xac\xef\xab\xe5\xad\xaa\xe6\xf7\xe1\xa2\xe2\xe7\x69\xe0\xa9\xaf\xa1\xa3\xe8\xa4\xa7", /* 0xeb */ + (unsigned char*)".\xad\xaa\xe6\xac\xe8\xa2\xe1", /* 0xec */ + (unsigned char*)"\xe2\xad\xe0.\xab\xa9\xa1\xe1", /* 0xed */ + (unsigned char*)".\xe7\xe6\xa4", /* 0xee */ + (unsigned char*)".\xaa\xad\xa3\xe0\xab\xa4\xf7\xac\xe6\xa5\xe8\xe1\xa2\xe2\xa1\xa7\xe7\xaf\xe5\xa6", /* 0xef */ + (unsigned char*)"\xad", /* 0xf0 */ + (unsigned char*)"\xad.\xa9", /* 0xf1 */ + (unsigned char*)".\xe1\xad\xab\xa4\xe8\xa6\xa2\xa7\xaa", /* 0xf7 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO88595[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 137, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 5987, 651, 1083, 728, 1220, 1497, 282, 1029, /* 0xd0 */ + 0, 380, 1400, 1540, 1111, 2360, 1390, 1015, /* 0xd8 */ + 1623, 1555, 1345, 1172, 0, 424, 896, 556, /* 0xe0 */ + 445, 0, 0, 1673, 602, 381, 227, 1394, /* 0xe8 */ + 0, 187, 0, 0, 0, 0, 1491, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 939, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_ISO88595[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 2, 255, 255, 255, 255, 3, 255, /* 0xa0 */ + 255, 255, 255, 255, 255, 0, 255, 255, /* 0xa8 */ + 6, 7, 8, 9, 255, 255, 255, 10, /* 0xb0 */ + 255, 255, 11, 255, 12, 13, 255, 14, /* 0xb8 */ + 15, 255, 16, 17, 255, 255, 255, 255, /* 0xc0 */ + 255, 255, 255, 255, 255, 255, 255, 18, /* 0xc8 */ + 19, 20, 21, 22, 23, 24, 25, 26, /* 0xd0 */ + 255, 27, 28, 29, 30, 31, 32, 33, /* 0xd8 */ + 34, 35, 36, 37, 38, 39, 40, 41, /* 0xe0 */ + 42, 255, 255, 43, 44, 45, 46, 47, /* 0xe8 */ + 0, 5, 255, 255, 255, 255, 4, 255, /* 0xf0 */ + 255, 255, 255, 255, 255, 0, 1, 255, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_ISO88595[] = { + + (unsigned char*)"\xdf\xdd\xe1\xd7\xd0\xd4\xef\xd2\xe2\xd1\xda\xdc\xf6\xd3\xfe\xe0\xe3\xe8\xdb\xb0\xe7\xe6\xe5\xd6\xbf\xbd\xc1\xb1\xf1\xbc\xb2\xba\xcf\xc3\xb4\xb7\xc2\xb3\xa6\xc0\xc5\xbb\xe4\xc8\xd5\xc7\xa1", /* FILLCHAR */ + (unsigned char*)".\xe1\xdd\xdb\xd4\xe8\xd6\xd2\xd7\xda", /* 0xfe */ + (unsigned char*)"\xdd", /* 0xa1 */ + (unsigned char*)".", /* 0xa6 */ + (unsigned char*)".\xdd\xda\xdb\xe6\xe1\xdc\xe5\xfe\xe0\xe7\xef\xd2\xe2\xd4\xd7\xe8", /* 0xf6 */ + (unsigned char*)"\xdd.\xd9", /* 0xf1 */ + (unsigned char*)".\xdb", /* 0xb0 */ + (unsigned char*)"\xd5\xd0", /* 0xb1 */ + (unsigned char*)"\xde", /* 0xb2 */ + (unsigned char*)"\xed", /* 0xb3 */ + (unsigned char*)"\xd0", /* 0xb7 */ + (unsigned char*)"\xd0", /* 0xba */ + (unsigned char*)"\xd0", /* 0xbc */ + (unsigned char*)"\xd0\xd5", /* 0xbd */ + (unsigned char*)"\xd0\xe0", /* 0xbf */ + (unsigned char*)"\xd0", /* 0xc0 */ + (unsigned char*)"\xd0", /* 0xc2 */ + (unsigned char*)".", /* 0xc3 */ + (unsigned char*)".", /* 0xcf */ + (unsigned char*)".\xdb\xd4\xe0\xe1\xfe\xdd\xdc\xd2\xda\xd3\xe6\xd9\xd1\xd7\xe2\xdf\xe7\xd5\xef\xe5\xee\xe8\xd6\xf1\xe4\xf6", /* 0xd0 */ + (unsigned char*)"\xeb\xd0\xd5\xde.\xe0\xe3\xf6\xdb\xef\xdd", /* 0xd1 */ + (unsigned char*)"\xd0\xeb\xd5\xde\xf6\xef\xe3.", /* 0xd2 */ + (unsigned char*)"\xd0\xde\xed.\xdb\xe3\xe0\xf6\xdd\xd5", /* 0xd3 */ + (unsigned char*)"\xd0\xd7.\xeb\xdd\xe3\xde\xe0\xda\xd2\xdb\xd6\xe1\xed\xe7", /* 0xd4 */ + (unsigned char*)".\xe0\xdd\xdb\xd4\xe1\xe6\xd9\xfe\xdc\xda\xe2\xd7\xe8\xe7\xd2\xdf\xd5\xd6\xd1", /* 0xd5 */ + (unsigned char*)"\xd0\xeb.\xdd\xde", /* 0xd6 */ + (unsigned char*)"\xd0.\xd5\xf6\xdd\xef\xd2\xec\xe3\xd4\xe0\xdc\xd1\xd3\xdb\xeb", /* 0xd7 */ + (unsigned char*)".\xdd\xe8\xe1", /* 0xd9 */ + (unsigned char*)"\xd0.\xf6\xe3\xde\xe0\xdb\xe2\xe1\xdd", /* 0xda */ + (unsigned char*)"\xd0\xf6\xec\xd5\xef\xde.\xee\xeb\xe3\xf1", /* 0xdb */ + (unsigned char*)".\xd0\xf6\xd5\xde\xe3\xef\xeb\xdd\xdb", /* 0xdc */ + (unsigned char*)"\xd0\xd5\xeb\xf6.\xef\xe3\xdd\xde\xec\xe2\xe1\xda\xe6\xd4\xe8\xe7", /* 0xdd */ + (unsigned char*)".\xfe\xdb\xd4\xe0\xd2\xdd\xe1\xd9\xd3\xdc\xd6\xd1\xe2\xda\xe7\xd5\xd7\xdf\xe8\xe6\xe5", /* 0xde */ + (unsigned char*)"\xd0\xe0\xd5\xde\xdb\xf6\xeb\xe3.\xef", /* 0xdf */ + (unsigned char*)"\xd0\xeb\xde\xe3\xed.\xdd\xda\xe2\xe8\xdc\xd3\xd2\xe1", /* 0xe0 */ + (unsigned char*)"\xe2\xef\xda\xd0\xe6\xdf\xec.\xe3\xdb\xd2\xf6\xd5\xdd\xf1\xde\xeb\xdc", /* 0xe1 */ + (unsigned char*)"\xd0\xde\xeb\xe0\xe3.\xd2\xda\xed\xdd", /* 0xe2 */ + (unsigned char*)".\xe1\xd4\xdb\xdc\xe2\xe0\xee\xda\xdf\xfe\xe6\xe7\xd6\xe8\xdd\xe5\xd1\xd3\xd7\xd2", /* 0xe3 */ + (unsigned char*)"\xd0", /* 0xe4 */ + (unsigned char*)".\xd0\xde\xe2\xf6\xe3\xdd", /* 0xe5 */ + (unsigned char*)"\xec\xd0\xeb\xf6\xe6\xd5\xef.\xda\xed", /* 0xe6 */ + (unsigned char*)"\xd0\xeb\xdd\xed\xe3.\xde\xda", /* 0xe7 */ + (unsigned char*)"\xe2\xeb\xe7\xd0.\xda\xdb\xed\xdd", /* 0xe8 */ + (unsigned char*)".\xdc\xef\xdb\xe5\xdd\xda\xe6\xfe\xe1\xd2\xe2\xe7\xe0\xd9\xdf\xf6\xd1\xd3\xe8\xd4\xd7", /* 0xeb */ + (unsigned char*)".\xdd\xda\xe6\xdc\xe8\xd2\xe1", /* 0xec */ + (unsigned char*)"\xe2\xdd\xe0.\xdb\xd9\xd1\xe1", /* 0xed */ + (unsigned char*)".\xe7\xe6\xd4", /* 0xee */ + (unsigned char*)".\xda\xdd\xd3\xe0\xdb\xd4\xfe\xdc\xe6\xd5\xe8\xe1\xd2\xe2\xd1\xd7\xe7\xdf\xe5", /* 0xef */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_KOI8UNI[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 187, 0, 0, 1491, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 939, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 227, 5987, 651, 896, 1220, 1497, 0, 728, /* 0xc0 */ + 424, 0, 380, 1400, 1540, 1111, 2360, 1390, /* 0xc8 */ + 1015, 1394, 1623, 1555, 1345, 1172, 282, 1083, /* 0xd0 */ + 602, 1673, 1029, 445, 381, 0, 556, 0, /* 0xd8 */ + 0, 137, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_KOI8UNI[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 255, 255, 5, 255, 255, 4, 255, /* 0xa0 */ + 255, 255, 255, 255, 255, 255, 1, 255, /* 0xa8 */ + 0, 255, 255, 2, 255, 255, 3, 255, /* 0xb0 */ + 255, 255, 255, 255, 255, 255, 255, 255, /* 0xb8 */ + 46, 19, 20, 40, 23, 24, 38, 22, /* 0xc0 */ + 39, 255, 27, 28, 29, 30, 31, 32, /* 0xc8 */ + 33, 47, 34, 35, 36, 37, 25, 21, /* 0xd0 */ + 44, 43, 26, 42, 45, 255, 41, 255, /* 0xd8 */ + 255, 6, 7, 255, 255, 255, 255, 9, /* 0xe0 */ + 255, 255, 255, 11, 255, 12, 13, 255, /* 0xe8 */ + 14, 18, 15, 255, 16, 17, 255, 8, /* 0xf0 */ + 255, 255, 10, 255, 255, 255, 255, 255, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_KOI8UNI[] = { + + (unsigned char*)"\xd0\xce\xd3\xda\xc1\xc4\xd1\xd7\xd4\xc2\xcb\xcd\xa6\xc7\xae\xd2\xd5\xdb\xcc\xe1\xde\xc3\xc8\xd6\xf0\xee\xf3\xe2\xa3\xed\xf7\xeb\xf1\xf5\xe4\xfa\xf4\xe7\xb6\xf2\xe8\xec\xc6\xfb\xc5\xfe\xb3", /* FILLCHAR */ + (unsigned char*)".\xd3\xce\xcc\xc4\xdb\xd6\xd7\xda\xcb", /* 0xae */ + (unsigned char*)"\xce", /* 0xb3 */ + (unsigned char*)".", /* 0xb6 */ + (unsigned char*)".\xce\xcb\xcc\xc3\xd3\xcd\xc8\xae\xd2\xde\xd1\xd7\xd4\xc4\xda\xdb", /* 0xa6 */ + (unsigned char*)"\xce.\xca", /* 0xa3 */ + (unsigned char*)".\xcc", /* 0xe1 */ + (unsigned char*)"\xc5\xc1", /* 0xe2 */ + (unsigned char*)"\xcf", /* 0xf7 */ + (unsigned char*)"\xdc", /* 0xe7 */ + (unsigned char*)"\xc1", /* 0xfa */ + (unsigned char*)"\xc1", /* 0xeb */ + (unsigned char*)"\xc1", /* 0xed */ + (unsigned char*)"\xc1\xc5", /* 0xee */ + (unsigned char*)"\xc1\xd2", /* 0xf0 */ + (unsigned char*)"\xc1", /* 0xf2 */ + (unsigned char*)"\xc1", /* 0xf4 */ + (unsigned char*)".", /* 0xf5 */ + (unsigned char*)".", /* 0xf1 */ + (unsigned char*)".\xcc\xc4\xd2\xd3\xae\xce\xcd\xd7\xcb\xc7\xc3\xca\xc2\xda\xd4\xd0\xde\xc5\xd1\xc8\xc0\xdb\xd6\xa3\xc6\xa6", /* 0xc1 */ + (unsigned char*)"\xd9\xc1\xc5\xcf.\xd2\xd5\xa6\xcc\xd1\xce", /* 0xc2 */ + (unsigned char*)"\xc1\xd9\xc5\xcf\xa6\xd1\xd5.", /* 0xd7 */ + (unsigned char*)"\xc1\xcf\xdc.\xcc\xd5\xd2\xa6\xce\xc5", /* 0xc7 */ + (unsigned char*)"\xc1\xda.\xd9\xce\xd5\xcf\xd2\xcb\xd7\xcc\xd6\xd3\xdc\xde", /* 0xc4 */ + (unsigned char*)".\xd2\xce\xcc\xc4\xd3\xc3\xca\xae\xcd\xcb\xd4\xda\xdb\xde\xd7\xd0\xc5\xd6\xc2", /* 0xc5 */ + (unsigned char*)"\xc1\xd9.\xce\xcf", /* 0xd6 */ + (unsigned char*)"\xc1.\xc5\xa6\xce\xd1\xd7\xd8\xd5\xc4\xd2\xcd\xc2\xc7\xcc\xd9", /* 0xda */ + (unsigned char*)".\xce\xdb\xd3", /* 0xca */ + (unsigned char*)"\xc1.\xa6\xd5\xcf\xd2\xcc\xd4\xd3\xce", /* 0xcb */ + (unsigned char*)"\xc1\xa6\xd8\xc5\xd1\xcf.\xc0\xd9\xd5\xa3", /* 0xcc */ + (unsigned char*)".\xc1\xa6\xc5\xcf\xd5\xd1\xd9\xce\xcc", /* 0xcd */ + (unsigned char*)"\xc1\xc5\xd9\xa6.\xd1\xd5\xce\xcf\xd8\xd4\xd3\xcb\xc3\xc4\xdb\xde", /* 0xce */ + (unsigned char*)".\xae\xcc\xc4\xd2\xd7\xce\xd3\xca\xc7\xcd\xd6\xc2\xd4\xcb\xde\xc5\xda\xd0\xdb\xc3\xc8", /* 0xcf */ + (unsigned char*)"\xc1\xd2\xc5\xcf\xcc\xa6\xd9\xd5.\xd1", /* 0xd0 */ + (unsigned char*)"\xc1\xd9\xcf\xd5\xdc.\xce\xcb\xd4\xdb\xcd\xc7\xd7\xd3", /* 0xd2 */ + (unsigned char*)"\xd4\xd1\xcb\xc1\xc3\xd0\xd8.\xd5\xcc\xd7\xa6\xc5\xce\xa3\xcf\xd9\xcd", /* 0xd3 */ + (unsigned char*)"\xc1\xcf\xd9\xd2\xd5.\xd7\xcb\xdc\xce", /* 0xd4 */ + (unsigned char*)".\xd3\xc4\xcc\xcd\xd4\xd2\xc0\xcb\xd0\xae\xc3\xde\xd6\xdb\xce\xc8\xc2\xc7\xda\xd7", /* 0xd5 */ + (unsigned char*)"\xc1", /* 0xc6 */ + (unsigned char*)".\xc1\xcf\xd4\xa6\xd5\xce", /* 0xc8 */ + (unsigned char*)"\xd8\xc1\xd9\xa6\xc3\xc5\xd1.\xcb\xdc", /* 0xc3 */ + (unsigned char*)"\xc1\xd9\xce\xdc\xd5.\xcf\xcb", /* 0xde */ + (unsigned char*)"\xd4\xd9\xde\xc1.\xcb\xcc\xdc\xce", /* 0xdb */ + (unsigned char*)".\xcd\xd1\xcc\xc8\xce\xcb\xc3\xae\xd3\xd7\xd4\xde\xd2\xca\xd0\xa6\xc2\xc7\xdb\xc4\xda", /* 0xd9 */ + (unsigned char*)".\xce\xcb\xc3\xcd\xdb\xd7\xd3", /* 0xd8 */ + (unsigned char*)"\xd4\xce\xd2.\xcc\xca\xc2\xd3", /* 0xdc */ + (unsigned char*)".\xde\xc3\xc4", /* 0xc0 */ + (unsigned char*)".\xcb\xce\xc7\xd2\xcc\xc4\xae\xcd\xc3\xc5\xdb\xd3\xd7\xd4\xc2\xda\xde\xd0\xc8", /* 0xd1 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_MACCYR[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 137, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 1491, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 939, 0, 0, 0, 0, 187, 1394, /* 0xd8 */ + 5987, 651, 1083, 728, 1220, 1497, 282, 1029, /* 0xe0 */ + 0, 380, 1400, 1540, 1111, 2360, 1390, 1015, /* 0xe8 */ + 1623, 1555, 1345, 1172, 0, 424, 896, 556, /* 0xf0 */ + 445, 0, 0, 1673, 602, 381, 227, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_MACCYR[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 6, 7, 8, 9, 255, 255, 255, 10, /* 0x80 */ + 255, 255, 11, 255, 12, 13, 255, 14, /* 0x88 */ + 15, 255, 16, 17, 255, 255, 255, 255, /* 0x90 */ + 255, 255, 255, 255, 255, 255, 255, 18, /* 0x98 */ + 0, 0, 255, 0, 0, 0, 0, 3, /* 0xa0 */ + 0, 0, 0, 255, 255, 0, 255, 255, /* 0xa8 */ + 0, 0, 0, 0, 4, 0, 255, 255, /* 0xb0 */ + 255, 255, 255, 255, 255, 255, 255, 255, /* 0xb8 */ + 255, 255, 0, 0, 255, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 255, 255, 255, 255, 255, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 255, 1, 255, 255, 0, 2, 5, 47, /* 0xd8 */ + 19, 20, 21, 22, 23, 24, 25, 26, /* 0xe0 */ + 255, 27, 28, 29, 30, 31, 32, 33, /* 0xe8 */ + 34, 35, 36, 37, 38, 39, 40, 41, /* 0xf0 */ + 42, 255, 255, 43, 44, 45, 46, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_MACCYR[] = { + + (unsigned char*)"\xef\xed\xf1\xe7\xe0\xe4\xdf\xe2\xf2\xe1\xea\xec\xb4\xe3\xd9\xf0\xf3\xf8\xeb\x80\xf7\xf6\xf5\xe6\x8f\x8d\x91\x81\xde\x8c\x82\x8a\x9f\x93\x84\x87\x92\x83\xa7\x90\x95\x8b\xf4\x98\xe5\x97\xdd", /* FILLCHAR */ + (unsigned char*)".\xf1\xed\xeb\xe4\xf8\xe6\xe2\xe7\xea", /* 0xd9 */ + (unsigned char*)"\xed", /* 0xdd */ + (unsigned char*)".", /* 0xa7 */ + (unsigned char*)".\xed\xea\xeb\xf6\xf1\xec\xf5\xd9\xf0\xf7\xdf\xe2\xf2\xe4\xe7\xf8", /* 0xb4 */ + (unsigned char*)"\xed.\xe9", /* 0xde */ + (unsigned char*)".\xeb", /* 0x80 */ + (unsigned char*)"\xe5\xe0", /* 0x81 */ + (unsigned char*)"\xee", /* 0x82 */ + (unsigned char*)"\xfd", /* 0x83 */ + (unsigned char*)"\xe0", /* 0x87 */ + (unsigned char*)"\xe0", /* 0x8a */ + (unsigned char*)"\xe0", /* 0x8c */ + (unsigned char*)"\xe0\xe5", /* 0x8d */ + (unsigned char*)"\xe0\xf0", /* 0x8f */ + (unsigned char*)"\xe0", /* 0x90 */ + (unsigned char*)"\xe0", /* 0x92 */ + (unsigned char*)".", /* 0x93 */ + (unsigned char*)".", /* 0x9f */ + (unsigned char*)".\xeb\xe4\xf0\xf1\xd9\xed\xec\xe2\xea\xe3\xf6\xe9\xe1\xe7\xf2\xef\xf7\xe5\xdf\xf5\xfe\xf8\xe6\xde\xf4\xb4", /* 0xe0 */ + (unsigned char*)"\xfb\xe0\xe5\xee.\xf0\xf3\xb4\xeb\xdf\xed", /* 0xe1 */ + (unsigned char*)"\xe0\xfb\xe5\xee\xb4\xdf\xf3.", /* 0xe2 */ + (unsigned char*)"\xe0\xee\xfd.\xeb\xf3\xf0\xb4\xed\xe5", /* 0xe3 */ + (unsigned char*)"\xe0\xe7.\xfb\xed\xf3\xee\xf0\xea\xe2\xeb\xe6\xf1\xfd\xf7", /* 0xe4 */ + (unsigned char*)".\xf0\xed\xeb\xe4\xf1\xf6\xe9\xd9\xec\xea\xf2\xe7\xf8\xf7\xe2\xef\xe5\xe6\xe1", /* 0xe5 */ + (unsigned char*)"\xe0\xfb.\xed\xee", /* 0xe6 */ + (unsigned char*)"\xe0.\xe5\xb4\xed\xdf\xe2\xfc\xf3\xe4\xf0\xec\xe1\xe3\xeb\xfb", /* 0xe7 */ + (unsigned char*)".\xed\xf8\xf1", /* 0xe9 */ + (unsigned char*)"\xe0.\xb4\xf3\xee\xf0\xeb\xf2\xf1\xed", /* 0xea */ + (unsigned char*)"\xe0\xb4\xfc\xe5\xdf\xee.\xfe\xfb\xf3\xde", /* 0xeb */ + (unsigned char*)".\xe0\xb4\xe5\xee\xf3\xdf\xfb\xed\xeb", /* 0xec */ + (unsigned char*)"\xe0\xe5\xfb\xb4.\xdf\xf3\xed\xee\xfc\xf2\xf1\xea\xf6\xe4\xf8\xf7", /* 0xed */ + (unsigned char*)".\xd9\xeb\xe4\xf0\xe2\xed\xf1\xe9\xe3\xec\xe6\xe1\xf2\xea\xf7\xe5\xe7\xef\xf8\xf6\xf5", /* 0xee */ + (unsigned char*)"\xe0\xf0\xe5\xee\xeb\xb4\xfb\xf3.\xdf", /* 0xef */ + (unsigned char*)"\xe0\xfb\xee\xf3\xfd.\xed\xea\xf2\xf8\xec\xe3\xe2\xf1", /* 0xf0 */ + (unsigned char*)"\xf2\xdf\xea\xe0\xf6\xef\xfc.\xf3\xeb\xe2\xb4\xe5\xed\xde\xee\xfb\xec", /* 0xf1 */ + (unsigned char*)"\xe0\xee\xfb\xf0\xf3.\xe2\xea\xfd\xed", /* 0xf2 */ + (unsigned char*)".\xf1\xe4\xeb\xec\xf2\xf0\xfe\xea\xef\xd9\xf6\xf7\xe6\xf8\xed\xf5\xe1\xe3\xe7\xe2", /* 0xf3 */ + (unsigned char*)"\xe0", /* 0xf4 */ + (unsigned char*)".\xe0\xee\xf2\xb4\xf3\xed", /* 0xf5 */ + (unsigned char*)"\xfc\xe0\xfb\xb4\xf6\xe5\xdf.\xea\xfd", /* 0xf6 */ + (unsigned char*)"\xe0\xfb\xed\xfd\xf3.\xee\xea", /* 0xf7 */ + (unsigned char*)"\xf2\xfb\xf7\xe0.\xea\xeb\xfd\xed", /* 0xf8 */ + (unsigned char*)".\xec\xdf\xeb\xf5\xed\xea\xf6\xd9\xf1\xe2\xf2\xf7\xf0\xe9\xef\xb4\xe1\xe3\xf8\xe4\xe7", /* 0xfb */ + (unsigned char*)".\xed\xea\xf6\xec\xf8\xe2\xf1", /* 0xfc */ + (unsigned char*)"\xf2\xed\xf0.\xeb\xe9\xe1\xf1", /* 0xfd */ + (unsigned char*)".\xf7\xf6\xe4", /* 0xfe */ + (unsigned char*)".\xea\xed\xe3\xf0\xeb\xe4\xd9\xec\xf6\xe5\xf8\xf1\xe2\xf2\xe1\xe7\xf7\xef\xf5", /* 0xdf */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM855[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 187, 0, 0, 0, /* 0x80 */ + 0, 0, 1491, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 939, 0, 0, 0, 227, 0, 0, 0, /* 0x98 */ + 5987, 137, 651, 0, 896, 0, 1220, 0, /* 0xa0 */ + 1497, 0, 0, 0, 728, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 424, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 380, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 1400, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 1540, 0, 1111, 0, 2360, 0, 1390, 0, /* 0xd0 */ + 1015, 0, 0, 0, 0, 0, 1394, 0, /* 0xd8 */ + 0, 1623, 0, 1555, 0, 1345, 0, 1172, /* 0xe0 */ + 0, 282, 0, 1083, 0, 602, 0, 0, /* 0xe8 */ + 0, 1673, 0, 1029, 0, 445, 0, 381, /* 0xf0 */ + 0, 0, 0, 556, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_IBM855[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 255, 255, 255, 255, 5, 2, 255, 255, /* 0x80 */ + 255, 255, 4, 3, 255, 255, 255, 255, /* 0x88 */ + 255, 255, 255, 255, 255, 0, 255, 255, /* 0x90 */ + 1, 255, 255, 255, 46, 255, 255, 255, /* 0x98 */ + 19, 6, 20, 7, 40, 255, 23, 255, /* 0xa0 */ + 24, 255, 38, 255, 22, 9, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 39, 255, 255, /* 0xb0 */ + 255, 0, 0, 0, 0, 27, 255, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 28, 11, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 29, 255, 30, 12, 31, 13, 32, 255, /* 0xd0 */ + 33, 0, 0, 0, 0, 14, 47, 0, /* 0xd8 */ + 18, 34, 15, 35, 255, 36, 16, 37, /* 0xe0 */ + 17, 25, 255, 21, 8, 44, 255, 0, /* 0xe8 */ + 0, 43, 255, 26, 10, 42, 255, 45, /* 0xf0 */ + 255, 255, 255, 41, 255, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_IBM855[] = { + + (unsigned char*)"\xd8\xd4\xe3\xf3\xa0\xa6\xde\xeb\xe5\xa2\xc6\xd2\x8a\xac\x98\xe1\xe7\xf5\xd0\xa1\xfb\xa4\xb5\xe9\xdd\xd5\xe4\xa3\x84\xd3\xec\xc7\xe0\xe8\xa7\xf4\xe6\xad\x8b\xe2\xb6\xd1\xaa\xf6\xa8\xfc\x85", /* FILLCHAR */ + (unsigned char*)".\xe3\xd4\xd0\xa6\xf5\xe9\xeb\xf3\xc6", /* 0x98 */ + (unsigned char*)"\xd4", /* 0x85 */ + (unsigned char*)".", /* 0x8b */ + (unsigned char*)".\xd4\xc6\xd0\xa4\xe3\xd2\xb5\x98\xe1\xfb\xde\xeb\xe5\xa6\xf3\xf5", /* 0x8a */ + (unsigned char*)"\xd4.\xbd", /* 0x84 */ + (unsigned char*)".\xd0", /* 0xa1 */ + (unsigned char*)"\xa8\xa0", /* 0xa3 */ + (unsigned char*)"\xd6", /* 0xec */ + (unsigned char*)"\xf7", /* 0xad */ + (unsigned char*)"\xa0", /* 0xf4 */ + (unsigned char*)"\xa0", /* 0xc7 */ + (unsigned char*)"\xa0", /* 0xd3 */ + (unsigned char*)"\xa0\xa8", /* 0xd5 */ + (unsigned char*)"\xa0\xe1", /* 0xdd */ + (unsigned char*)"\xa0", /* 0xe2 */ + (unsigned char*)"\xa0", /* 0xe6 */ + (unsigned char*)".", /* 0xe8 */ + (unsigned char*)".", /* 0xe0 */ + (unsigned char*)".\xd0\xa6\xe1\xe3\x98\xd4\xd2\xeb\xc6\xac\xa4\xbd\xa2\xf3\xe5\xd8\xfb\xa8\xde\xb5\x9c\xf5\xe9\x84\xaa\x8a", /* 0xa0 */ + (unsigned char*)"\xf1\xa0\xa8\xd6.\xe1\xe7\x8a\xd0\xde\xd4", /* 0xa2 */ + (unsigned char*)"\xa0\xf1\xa8\xd6\x8a\xde\xe7.", /* 0xeb */ + (unsigned char*)"\xa0\xd6\xf7.\xd0\xe7\xe1\x8a\xd4\xa8", /* 0xac */ + (unsigned char*)"\xa0\xf3.\xf1\xd4\xe7\xd6\xe1\xc6\xeb\xd0\xe9\xe3\xf7\xfb", /* 0xa6 */ + (unsigned char*)".\xe1\xd4\xd0\xa6\xe3\xa4\xbd\x98\xd2\xc6\xe5\xf3\xf5\xfb\xeb\xd8\xa8\xe9\xa2", /* 0xa8 */ + (unsigned char*)"\xa0\xf1.\xd4\xd6", /* 0xe9 */ + (unsigned char*)"\xa0.\xa8\x8a\xd4\xde\xeb\xed\xe7\xa6\xe1\xd2\xa2\xac\xd0\xf1", /* 0xf3 */ + (unsigned char*)".\xd4\xf5\xe3", /* 0xbd */ + (unsigned char*)"\xa0.\x8a\xe7\xd6\xe1\xd0\xe5\xe3\xd4", /* 0xc6 */ + (unsigned char*)"\xa0\x8a\xed\xa8\xde\xd6.\x9c\xf1\xe7\x84", /* 0xd0 */ + (unsigned char*)".\xa0\x8a\xa8\xd6\xe7\xde\xf1\xd4\xd0", /* 0xd2 */ + (unsigned char*)"\xa0\xa8\xf1\x8a.\xde\xe7\xd4\xd6\xed\xe5\xe3\xc6\xa4\xa6\xf5\xfb", /* 0xd4 */ + (unsigned char*)".\x98\xd0\xa6\xe1\xeb\xd4\xe3\xbd\xac\xd2\xe9\xa2\xe5\xc6\xfb\xa8\xf3\xd8\xf5\xa4\xb5", /* 0xd6 */ + (unsigned char*)"\xa0\xe1\xa8\xd6\xd0\x8a\xf1\xe7.\xde", /* 0xd8 */ + (unsigned char*)"\xa0\xf1\xd6\xe7\xf7.\xd4\xc6\xe5\xf5\xd2\xac\xeb\xe3", /* 0xe1 */ + (unsigned char*)"\xe5\xde\xc6\xa0\xa4\xd8\xed.\xe7\xd0\xeb\x8a\xa8\xd4\x84\xd6\xf1\xd2", /* 0xe3 */ + (unsigned char*)"\xa0\xd6\xf1\xe1\xe7.\xeb\xc6\xf7\xd4", /* 0xe5 */ + (unsigned char*)".\xe3\xa6\xd0\xd2\xe5\xe1\x9c\xc6\xd8\x98\xa4\xfb\xe9\xf5\xd4\xb5\xa2\xac\xf3\xeb", /* 0xe7 */ + (unsigned char*)"\xa0", /* 0xaa */ + (unsigned char*)".\xa0\xd6\xe5\x8a\xe7\xd4", /* 0xb5 */ + (unsigned char*)"\xed\xa0\xf1\x8a\xa4\xa8\xde.\xc6\xf7", /* 0xa4 */ + (unsigned char*)"\xa0\xf1\xd4\xf7\xe7.\xd6\xc6", /* 0xfb */ + (unsigned char*)"\xe5\xf1\xfb\xa0.\xc6\xd0\xf7\xd4", /* 0xf5 */ + (unsigned char*)".\xd2\xde\xd0\xb5\xd4\xc6\xa4\x98\xe3\xeb\xe5\xfb\xe1\xbd\xd8\x8a\xa2\xac\xf5\xa6\xf3", /* 0xf1 */ + (unsigned char*)".\xd4\xc6\xa4\xd2\xf5\xeb\xe3", /* 0xed */ + (unsigned char*)"\xe5\xd4\xe1.\xd0\xbd\xa2\xe3", /* 0xf7 */ + (unsigned char*)".\xfb\xa4\xa6", /* 0x9c */ + (unsigned char*)".\xc6\xd4\xac\xe1\xd0\xa6\x98\xd2\xa4\xa8\xf5\xe3\xeb\xe5\xa2\xf3\xfb\xd8\xb5", /* 0xde */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_KOI8U[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 939, 187, 0, 0, 1491, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 227, 5987, 651, 896, 1220, 1497, 0, 728, /* 0xc0 */ + 424, 0, 380, 1400, 1540, 1111, 2360, 1390, /* 0xc8 */ + 1015, 1394, 1623, 1555, 1345, 1172, 282, 1083, /* 0xd0 */ + 602, 1673, 1029, 445, 381, 0, 556, 0, /* 0xd8 */ + 0, 137, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_KOI8U[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 1, 5, 255, 0, 4, 255, /* 0xa0 */ + 0, 0, 0, 0, 0, 255, 0, 0, /* 0xa8 */ + 0, 0, 0, 2, 255, 0, 3, 255, /* 0xb0 */ + 0, 0, 0, 0, 0, 255, 0, 0, /* 0xb8 */ + 46, 19, 20, 40, 23, 24, 38, 22, /* 0xc0 */ + 39, 255, 27, 28, 29, 30, 31, 32, /* 0xc8 */ + 33, 47, 34, 35, 36, 37, 25, 21, /* 0xd0 */ + 44, 43, 26, 42, 45, 255, 41, 255, /* 0xd8 */ + 255, 6, 7, 255, 255, 255, 255, 9, /* 0xe0 */ + 255, 255, 255, 11, 255, 12, 13, 255, /* 0xe8 */ + 14, 18, 15, 255, 16, 17, 255, 8, /* 0xf0 */ + 255, 255, 10, 255, 255, 255, 255, 255, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_KOI8U[] = { + + (unsigned char*)"\xd0\xce\xd3\xda\xc1\xc4\xd1\xd7\xd4\xc2\xcb\xcd\xa6\xc7\xa2\xd2\xd5\xdb\xcc\xe1\xde\xc3\xc8\xd6\xf0\xee\xf3\xe2\xa3\xed\xf7\xeb\xf1\xf5\xe4\xfa\xf4\xe7\xb6\xf2\xe8\xec\xc6\xfb\xc5\xfe\xb3", /* FILLCHAR */ + (unsigned char*)".\xd3\xce\xcc\xc4\xdb\xd6\xd7\xda\xcb", /* 0xa2 */ + (unsigned char*)"\xce", /* 0xb3 */ + (unsigned char*)".", /* 0xb6 */ + (unsigned char*)".\xce\xcb\xcc\xc3\xd3\xcd\xc8\xa2\xd2\xde\xd1\xd7\xd4\xc4\xda\xdb", /* 0xa6 */ + (unsigned char*)"\xce.\xca", /* 0xa3 */ + (unsigned char*)".\xcc", /* 0xe1 */ + (unsigned char*)"\xc5\xc1", /* 0xe2 */ + (unsigned char*)"\xcf", /* 0xf7 */ + (unsigned char*)"\xdc", /* 0xe7 */ + (unsigned char*)"\xc1", /* 0xfa */ + (unsigned char*)"\xc1", /* 0xeb */ + (unsigned char*)"\xc1", /* 0xed */ + (unsigned char*)"\xc1\xc5", /* 0xee */ + (unsigned char*)"\xc1\xd2", /* 0xf0 */ + (unsigned char*)"\xc1", /* 0xf2 */ + (unsigned char*)"\xc1", /* 0xf4 */ + (unsigned char*)".", /* 0xf5 */ + (unsigned char*)".", /* 0xf1 */ + (unsigned char*)".\xcc\xc4\xd2\xd3\xa2\xce\xcd\xd7\xcb\xc7\xc3\xca\xc2\xda\xd4\xd0\xde\xc5\xd1\xc8\xc0\xdb\xd6\xa3\xc6\xa6", /* 0xc1 */ + (unsigned char*)"\xd9\xc1\xc5\xcf.\xd2\xd5\xa6\xcc\xd1\xce", /* 0xc2 */ + (unsigned char*)"\xc1\xd9\xc5\xcf\xa6\xd1\xd5.", /* 0xd7 */ + (unsigned char*)"\xc1\xcf\xdc.\xcc\xd5\xd2\xa6\xce\xc5", /* 0xc7 */ + (unsigned char*)"\xc1\xda.\xd9\xce\xd5\xcf\xd2\xcb\xd7\xcc\xd6\xd3\xdc\xde", /* 0xc4 */ + (unsigned char*)".\xd2\xce\xcc\xc4\xd3\xc3\xca\xa2\xcd\xcb\xd4\xda\xdb\xde\xd7\xd0\xc5\xd6\xc2", /* 0xc5 */ + (unsigned char*)"\xc1\xd9.\xce\xcf", /* 0xd6 */ + (unsigned char*)"\xc1.\xc5\xa6\xce\xd1\xd7\xd8\xd5\xc4\xd2\xcd\xc2\xc7\xcc\xd9", /* 0xda */ + (unsigned char*)".\xce\xdb\xd3", /* 0xca */ + (unsigned char*)"\xc1.\xa6\xd5\xcf\xd2\xcc\xd4\xd3\xce", /* 0xcb */ + (unsigned char*)"\xc1\xa6\xd8\xc5\xd1\xcf.\xc0\xd9\xd5\xa3", /* 0xcc */ + (unsigned char*)".\xc1\xa6\xc5\xcf\xd5\xd1\xd9\xce\xcc", /* 0xcd */ + (unsigned char*)"\xc1\xc5\xd9\xa6.\xd1\xd5\xce\xcf\xd8\xd4\xd3\xcb\xc3\xc4\xdb\xde", /* 0xce */ + (unsigned char*)".\xa2\xcc\xc4\xd2\xd7\xce\xd3\xca\xc7\xcd\xd6\xc2\xd4\xcb\xde\xc5\xda\xd0\xdb\xc3\xc8", /* 0xcf */ + (unsigned char*)"\xc1\xd2\xc5\xcf\xcc\xa6\xd9\xd5.\xd1", /* 0xd0 */ + (unsigned char*)"\xc1\xd9\xcf\xd5\xdc.\xce\xcb\xd4\xdb\xcd\xc7\xd7\xd3", /* 0xd2 */ + (unsigned char*)"\xd4\xd1\xcb\xc1\xc3\xd0\xd8.\xd5\xcc\xd7\xa6\xc5\xce\xa3\xcf\xd9\xcd", /* 0xd3 */ + (unsigned char*)"\xc1\xcf\xd9\xd2\xd5.\xd7\xcb\xdc\xce", /* 0xd4 */ + (unsigned char*)".\xd3\xc4\xcc\xcd\xd4\xd2\xc0\xcb\xd0\xa2\xc3\xde\xd6\xdb\xce\xc8\xc2\xc7\xda\xd7", /* 0xd5 */ + (unsigned char*)"\xc1", /* 0xc6 */ + (unsigned char*)".\xc1\xcf\xd4\xa6\xd5\xce", /* 0xc8 */ + (unsigned char*)"\xd8\xc1\xd9\xa6\xc3\xc5\xd1.\xcb\xdc", /* 0xc3 */ + (unsigned char*)"\xc1\xd9\xce\xdc\xd5.\xcf\xcb", /* 0xde */ + (unsigned char*)"\xd4\xd9\xde\xc1.\xcb\xcc\xdc\xce", /* 0xdb */ + (unsigned char*)".\xcd\xd1\xcc\xc8\xce\xcb\xc3\xa2\xd3\xd7\xd4\xde\xd2\xca\xd0\xa6\xc2\xc7\xdb\xc4\xda", /* 0xd9 */ + (unsigned char*)".\xce\xcb\xc3\xcd\xdb\xd7\xd3", /* 0xd8 */ + (unsigned char*)"\xd4\xce\xd2.\xcc\xca\xc2\xd3", /* 0xdc */ + (unsigned char*)".\xde\xc3\xc4", /* 0xc0 */ + (unsigned char*)".\xcb\xce\xc7\xd2\xcc\xc4\xa2\xcd\xc3\xc5\xdb\xd3\xd7\xd4\xc2\xda\xde\xd0\xc8", /* 0xd1 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/totals.pl. */ +static const unsigned short int SIGNIFICANT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 280, 0, 0, 0, 187, 0, 0, 0, /* 0x80 */ + 0, 0, 1491, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 939, 0, 0, 0, 227, 0, 0, 0, /* 0x98 */ + 12228, 816, 3657, 1133, 2168, 1561, 4495, 1073, /* 0xa0 */ + 1497, 397, 1460, 1606, 1887, 2459, 2387, 1057, /* 0xa8 */ + 137, 0, 0, 1491, 1491, 424, 0, 0, /* 0xb0 */ + 187, 0, 0, 0, 0, 380, 0, 0, /* 0xb8 */ + 591, 11974, 1302, 1792, 2440, 2994, 1400, 1456, /* 0xc0 */ + 848, 0, 760, 2800, 3080, 2222, 4720, 2780, /* 0xc8 */ + 9557, 3439, 5440, 3838, 6270, 3841, 2236, 3195, /* 0xd0 */ + 2219, 4665, 3458, 2430, 1873, 2360, 4083, 2409, /* 0xd8 */ + 15289, 6375, 4912, 5405, 2440, 5204, 2393, 4366, /* 0xe0 */ + 908, 1042, 2800, 7580, 3452, 6101, 3244, 4876, /* 0xe8 */ + 3246, 5164, 2690, 3373, 0, 1293, 3283, 2472, /* 0xf0 */ + 890, 0, 0, 3902, 1204, 762, 1393, 1394, /* 0xf8 */ +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define WEIGHT_SUM 36720 + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const char *const CHARSET_NAMES[] = { + "cp1251", + "ibm866", + "iso88595", + "koi8uni", + "maccyr", + "ibm855", + "koi8u", +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned short int *const CHARSET_WEIGHTS[] = { + RAW_CP1251, + RAW_IBM866, + RAW_ISO88595, + RAW_KOI8UNI, + RAW_MACCYR, + RAW_IBM855, + RAW_KOI8U, +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned char *const CHARSET_LETTERS[] = { + LETTER_CP1251, + LETTER_IBM866, + LETTER_ISO88595, + LETTER_KOI8UNI, + LETTER_MACCYR, + LETTER_IBM855, + LETTER_KOI8U, +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned char **const CHARSET_PAIRS[] = { + PAIR_CP1251, + PAIR_IBM866, + PAIR_ISO88595, + PAIR_KOI8UNI, + PAIR_MACCYR, + PAIR_IBM855, + PAIR_KOI8U, +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define NCHARSETS 7 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/cp1251.base b/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/cp1251.base new file mode 100644 index 0000000..381d848 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/cp1251.base @@ -0,0 +1,32 @@ + 939 + 1491 + 187 + 137 + 5987 + 651 + 1083 + 728 + 1220 + 1497 + 282 + 1029 + 380 + 1400 + 1540 + 1111 + 2360 + 1390 + 1015 + 1623 + 1555 + 1345 + 1172 + 424 + 896 + 556 + 445 + 1673 + 602 + 381 + 227 + 1394 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/doit.sh new file mode 100755 index 0000000..3ad3709 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/doit.sh @@ -0,0 +1,6 @@ +#! /bin/bash +grep -v '' cp1251.base | ../xlt ../maps/cp1251.map ../maps/ibm866.map\ + >ibm866.base +../normalize.pl cp1251.base <ibm866.base >ibm866.xbase +rm ibm866.base +../doit.sh cp1251 ibm866 iso88595 koi8uni maccyr ibm855 koi8u diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/paircounts.cp1251 b/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/paircounts.cp1251 new file mode 100644 index 0000000..1fba104 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/paircounts.cp1251 @@ -0,0 +1,48 @@ +.:òר +:. +: +:. +:. +:. +:. +: +: +: +: +: +: +: +: +: +: +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +: +:. +:. +:. +:. +:. +:. +:. +:. +:. diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/paircounts.ibm866 b/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/paircounts.ibm866 new file mode 100644 index 0000000..b92aeeb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/paircounts.ibm866 @@ -0,0 +1,50 @@ +.:i᧠⪣耫另I񓌊䖘 +I:. +i:.⢧ +:. +: +: +: +: +: +: +: +: +: +: +:. +:. +:. +:. +:.橡i +:력i. +:i +:i. +:.ઢ +:.୫碯 +:. +:.iଡ +:. +:i. +:i. +:.i뭫 +:i.㭮 +:.ࢭᩣ祧 +:८i +:.謣 +:猪i㫢. +:. +:.ᤫ塣 +:i +:.i +:i +:. +:. +:.孪i੯褧 +:. +:. +:. +:.૤⡧ +: +:. +:.᭫覢 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/rawcounts.cp1251 b/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/rawcounts.cp1251 new file mode 100644 index 0000000..04e87f6 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/belarusian/rawcounts.cp1251 @@ -0,0 +1,187 @@ +0x09 . 1923 +0x0a . 98633 +0x0d . 20222 +0x10 . 3 +0x20 1500444 +0x21 ! 4403 +0x22 " 52979 +0x23 # 3816 +0x24 $ 2 +0x25 % 480 +0x26 & 7338 +0x27 ' 3061 +0x28 ( 3804 +0x29 ) 3842 +0x2a * 112 +0x2b + 1146 +0x2c , 86939 +0x2d - 9782 +0x2e . 75938 +0x2f / 47631 +0x30 0 12353 +0x31 1 41640 +0x32 2 12998 +0x33 3 9557 +0x34 4 8543 +0x35 5 8525 +0x36 6 8053 +0x37 7 28159 +0x38 8 9477 +0x39 9 8496 +0x3a : 5084 +0x3b ; 9095 +0x3c < 94257 +0x3d = 29109 +0x3e > 94342 +0x3f ? 5693 +0x40 @ 33 +0x41 A 2011 +0x42 B 1666 +0x43 C 1831 +0x44 D 1125 +0x45 E 2516 +0x46 F 1556 +0x47 G 681 +0x48 H 1367 +0x49 I 3673 +0x4a J 255 +0x4b K 516 +0x4c L 1581 +0x4d M 981 +0x4e N 2067 +0x4f O 1681 +0x50 P 2243 +0x51 Q 121 +0x52 R 2338 +0x53 S 2155 +0x54 T 2889 +0x55 U 557 +0x56 V 959 +0x57 W 443 +0x58 X 629 +0x59 Y 252 +0x5a Z 268 +0x5b [ 171 +0x5c \ 23 +0x5d ] 171 +0x5f _ 462 +0x60 ` 26 +0x61 a 70028 +0x62 b 12407 +0x63 c 9423 +0x64 d 26286 +0x65 e 55347 +0x66 f 5261 +0x67 g 5733 +0x68 h 8719 +0x69 i 68421 +0x6a j 822 +0x6b k 2336 +0x6c l 11282 +0x6d m 23072 +0x6e n 33746 +0x6f o 13238 +0x70 p 45524 +0x71 q 427 +0x72 r 15846 +0x73 s 16244 +0x74 t 20968 +0x75 u 4747 +0x76 v 3397 +0x77 w 3695 +0x78 x 1260 +0x79 y 2531 +0x7a z 1666 +0x7b { 183 +0x7c | 116 +0x7d } 183 +0x7e ~ 13 +0x7f . 30 +0x84 64 +0x85 478 +0x92 462 +0x93 1452 +0x94 1417 +0x96 562 +0x97 20396 +0x9a 2 +0x9d 3 +0xa0 1 +0xa1 297 +0xa2 93964 +0xa8 1446 +0xa9 4 +0xaa 1 +0xab 450 +0xaf 3 +0xb2 4693 +0xb3 149120 +0xb7 4 +0xb8 18768 +0xb9 175 +0xbb 442 +0xbf 7 +0xc0 13704 +0xc1 7306 +0xc2 6072 +0xc3 4710 +0xc4 5121 +0xc5 1198 +0xc6 748 +0xc7 4622 +0xc8 575 +0xc9 162 +0xca 6378 +0xcb 3131 +0xcc 6195 +0xcd 8428 +0xce 1035 +0xcf 7995 +0xd0 4369 +0xd1 8045 +0xd2 4984 +0xd3 5268 +0xd4 920 +0xd5 2711 +0xd6 1599 +0xd7 1673 +0xd8 1778 +0xd9 26 +0xda 1 +0xdb 633 +0xdc 235 +0xdd 365 +0xde 580 +0xdf 5244 +0xe0 598769 +0xe1 65173 +0xe2 108380 +0xe3 72835 +0xe4 122086 +0xe5 149700 +0xe6 28212 +0xe7 102941 +0xe8 4930 +0xe9 38082 +0xea 140088 +0xeb 154012 +0xec 111138 +0xed 236040 +0xee 139014 +0xef 101567 +0xf0 162342 +0xf1 155543 +0xf2 134516 +0xf3 117245 +0xf4 5538 +0xf5 42419 +0xf6 89686 +0xf7 55672 +0xf8 44530 +0xf9 213 +0xfa 51 +0xfb 167379 +0xfc 60244 +0xfd 38167 +0xfe 22715 +0xff 139416 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/bulgarian.h b/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/bulgarian.h new file mode 100644 index 0000000..81f5f70 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/bulgarian.h @@ -0,0 +1,658 @@ +/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1251[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 125, 0, 97, 0, 0, 0, 0, 0, /* 0xc0 */ + 104, 0, 0, 0, 0, 170, 0, 98, /* 0xc8 */ + 0, 107, 135, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 5956, 713, 2084, 731, 1638, 4455, 396, 1148, /* 0xe0 */ + 4081, 299, 1679, 1654, 1291, 3203, 4364, 1306, /* 0xe8 */ + 2168, 2364, 3471, 676, 0, 376, 224, 669, /* 0xf0 */ + 376, 324, 992, 0, 0, 0, 0, 893, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_CP1251[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 255, 255, 0, 255, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 255, 0, 255, 255, 255, 255, /* 0x88 */ + 255, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 255, 0, 255, 255, 255, 255, /* 0x98 */ + 0, 255, 255, 255, 0, 255, 0, 0, /* 0xa0 */ + 255, 0, 255, 0, 0, 0, 0, 255, /* 0xa8 */ + 0, 0, 255, 255, 255, 0, 0, 0, /* 0xb0 */ + 255, 0, 255, 0, 255, 255, 255, 255, /* 0xb8 */ + 1, 255, 2, 255, 255, 255, 255, 3, /* 0xc0 */ + 4, 255, 5, 255, 6, 7, 255, 8, /* 0xc8 */ + 255, 255, 9, 255, 255, 255, 255, 255, /* 0xd0 */ + 255, 255, 255, 255, 255, 255, 255, 255, /* 0xd8 */ + 10, 11, 12, 13, 14, 15, 16, 17, /* 0xe0 */ + 18, 19, 20, 21, 22, 23, 24, 25, /* 0xe8 */ + 26, 27, 28, 29, 30, 31, 32, 33, /* 0xf0 */ + 34, 35, 36, 255, 255, 255, 255, 37, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_CP1251[] = { + + (unsigned char*)"\xf1\xed\xef\xe4\xe8\xe2\xee\xf2\xea\xec\xe7\xe1\xe5\xe3\xf0\xf7\xcd\xe0\xeb\xf3\xd2\xcf\xd1\xc2\xc4\xc0\xca\xf9\xc8\xcc\xf5\xc7\xe6\xc1\xce\xff\xf6\xd0\xf4\xc3\xc5\xf8\xd5\xcb\xd7\xd3", /* FILLCHAR */ + (unsigned char*)".", /* 0xc0 */ + (unsigned char*)".\xe8", /* 0xc2 */ + (unsigned char*)"\xe0", /* 0xc7 */ + (unsigned char*)".", /* 0xc8 */ + (unsigned char*)"\xe0\xee", /* 0xca */ + (unsigned char*)"\xe0", /* 0xcc */ + (unsigned char*)"\xe5\xe0\xee\xe8", /* 0xcd */ + (unsigned char*)"\xee\xf0", /* 0xcf */ + (unsigned char*)"\xee", /* 0xd2 */ + (unsigned char*)".\xf2\xed\xe2\xeb\xea\xe7\xec\xf0\xf1\xe4\xf8\xe9\xef\xf5\xe1\xf7\xf9\xe3\xe6\xe5\xff\xf6", /* 0xe0 */ + (unsigned char*)"\xe5\xe8\xf0\xee\xe0\xfa\xeb\xff\xe2\xf3", /* 0xe1 */ + (unsigned char*)"\xe0\xe5\xe8\xee.\xfa\xf1\xf0\xed\xff\xeb\xf2", /* 0xe2 */ + (unsigned char*)"\xee\xe0\xeb\xe8\xf0\xed.\xfa", /* 0xe3 */ + (unsigned char*)"\xe0\xe5\xe8\xee.\xed\xf0\xfa\xe2\xf3\xff\xf1", /* 0xe4 */ + (unsigned char*)".\xed\xf2\xe4\xeb\xf1\xf0\xec\xf8\xe7\xea\xe3\xf7\xf9\xe6\xe2\xef\xe1\xe9\xf5\xf6\xee", /* 0xe5 */ + (unsigned char*)"\xe5\xe8\xe4\xe0\xed.", /* 0xe6 */ + (unsigned char*)"\xe0\xe8\xe2\xed.\xef\xe5\xe4\xeb\xec\xee\xea\xe1\xe3\xf0", /* 0xe7 */ + (unsigned char*)".\xf2\xed\xe7\xff\xeb\xe5\xf1\xf7\xec\xea\xe2\xf0\xe3\xf6\xe4\xf5\xf8\xe6\xf9\xee\xef", /* 0xe8 */ + (unsigned char*)".\xf2\xed\xf1\xea", /* 0xe9 */ + (unsigned char*)"\xe0\xee\xe8.\xfa\xf0\xe2\xf2\xeb\xf3\xed", /* 0xea */ + (unsigned char*)"\xe8\xe5\xe0\xee.\xed\xff\xea\xf3\xfa\xfe", /* 0xeb */ + (unsigned char*)"\xe5\xe0.\xe8\xee\xf3\xed\xfa\xff", /* 0xec */ + (unsigned char*)"\xe0\xe8\xe5\xee.\xff\xf2\xf1\xed\xe4\xf6\xea", /* 0xed */ + (unsigned char*)".\xf2\xe2\xf1\xf0\xeb\xe1\xe3\xe4\xe9\xed\xea\xe6\xec\xf7\xef\xff\xe7\xe8\xe5\xf9", /* 0xee */ + (unsigned char*)"\xee\xf0\xe0\xe8\xfa\xe5\xeb\xf3", /* 0xef */ + (unsigned char*)"\xe0\xe5\xe8\xee\xfa.\xf3\xff\xed\xe2\xf2\xe4\xf1\xec\xea", /* 0xf0 */ + (unsigned char*)"\xf2\xe5\xe8.\xfa\xeb\xe0\xea\xe2\xed\xef\xec\xee\xff\xf0", /* 0xf1 */ + (unsigned char*)"\xee\xe0\xe5.\xe8\xf0\xe2\xed\xfa\xff\xf3\xea\xf2\xeb", /* 0xf2 */ + (unsigned char*)".\xf1\xe2\xf7\xec\xe4\xe3\xea\xf0\xef\xe1\xf8\xeb\xe6\xed\xf2", /* 0xf3 */ + (unsigned char*)"\xe8", /* 0xf4 */ + (unsigned char*)".\xe0\xee\xed\xe2", /* 0xf5 */ + (unsigned char*)"\xe8\xe5\xe0", /* 0xf6 */ + (unsigned char*)"\xe5\xe0\xe8\xed\xea\xf3\xee", /* 0xf7 */ + (unsigned char*)"\xe5.\xe8\xe0", /* 0xf8 */ + (unsigned char*)"\xe5\xee\xe0\xe8", /* 0xf9 */ + (unsigned char*)"\xf0\xeb\xf2\xec\xf1\xea\xe7\xe4\xed\xe2\xf9\xef\xe6\xe3\xe1", /* 0xfa */ + (unsigned char*)".\xf2\xea\xe2\xf5\xec\xeb\xf1\xe1\xed", /* 0xff */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO88595[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 125, 0, 97, 0, 0, 0, 0, 0, /* 0xb0 */ + 104, 0, 0, 0, 0, 170, 0, 98, /* 0xb8 */ + 0, 107, 135, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 5956, 713, 2084, 731, 1638, 4455, 396, 1148, /* 0xd0 */ + 4081, 299, 1679, 1654, 1291, 3203, 4364, 1306, /* 0xd8 */ + 2168, 2364, 3471, 676, 0, 376, 224, 669, /* 0xe0 */ + 376, 324, 992, 0, 0, 0, 0, 893, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_ISO88595[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 255, 255, 255, 255, 255, 255, 255, /* 0xa0 */ + 255, 255, 255, 255, 255, 0, 255, 255, /* 0xa8 */ + 1, 255, 2, 255, 255, 255, 255, 3, /* 0xb0 */ + 4, 255, 5, 255, 6, 7, 255, 8, /* 0xb8 */ + 255, 255, 9, 255, 255, 255, 255, 255, /* 0xc0 */ + 255, 255, 255, 255, 255, 255, 255, 255, /* 0xc8 */ + 10, 11, 12, 13, 14, 15, 16, 17, /* 0xd0 */ + 18, 19, 20, 21, 22, 23, 24, 25, /* 0xd8 */ + 26, 27, 28, 29, 30, 31, 32, 33, /* 0xe0 */ + 34, 35, 36, 255, 255, 255, 255, 37, /* 0xe8 */ + 0, 255, 255, 255, 255, 255, 255, 255, /* 0xf0 */ + 255, 255, 255, 255, 255, 0, 255, 255, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_ISO88595[] = { + + (unsigned char*)"\xe1\xdd\xdf\xd4\xd8\xd2\xde\xe2\xda\xdc\xd7\xd1\xd5\xd3\xe0\xe7\xbd\xd0\xdb\xe3\xc2\xbf\xc1\xb2\xb4\xb0\xba\xe9\xb8\xbc\xe5\xb7\xd6\xb1\xbe\xef\xe6\xc0\xe4\xb3\xb5\xe8\xc5\xbb\xc7\xc3", /* FILLCHAR */ + (unsigned char*)".", /* 0xb0 */ + (unsigned char*)".\xd8", /* 0xb2 */ + (unsigned char*)"\xd0", /* 0xb7 */ + (unsigned char*)".", /* 0xb8 */ + (unsigned char*)"\xd0\xde", /* 0xba */ + (unsigned char*)"\xd0", /* 0xbc */ + (unsigned char*)"\xd5\xd0\xde\xd8", /* 0xbd */ + (unsigned char*)"\xde\xe0", /* 0xbf */ + (unsigned char*)"\xde", /* 0xc2 */ + (unsigned char*)".\xe2\xdd\xd2\xdb\xda\xd7\xdc\xe0\xe1\xd4\xe8\xd9\xdf\xe5\xd1\xe7\xe9\xd3\xd6\xd5\xef\xe6", /* 0xd0 */ + (unsigned char*)"\xd5\xd8\xe0\xde\xd0\xea\xdb\xef\xd2\xe3", /* 0xd1 */ + (unsigned char*)"\xd0\xd5\xd8\xde.\xea\xe1\xe0\xdd\xef\xdb\xe2", /* 0xd2 */ + (unsigned char*)"\xde\xd0\xdb\xd8\xe0\xdd.\xea", /* 0xd3 */ + (unsigned char*)"\xd0\xd5\xd8\xde.\xdd\xe0\xea\xd2\xe3\xef\xe1", /* 0xd4 */ + (unsigned char*)".\xdd\xe2\xd4\xdb\xe1\xe0\xdc\xe8\xd7\xda\xd3\xe7\xe9\xd6\xd2\xdf\xd1\xd9\xe5\xe6\xde", /* 0xd5 */ + (unsigned char*)"\xd5\xd8\xd4\xd0\xdd.", /* 0xd6 */ + (unsigned char*)"\xd0\xd8\xd2\xdd.\xdf\xd5\xd4\xdb\xdc\xde\xda\xd1\xd3\xe0", /* 0xd7 */ + (unsigned char*)".\xe2\xdd\xd7\xef\xdb\xd5\xe1\xe7\xdc\xda\xd2\xe0\xd3\xe6\xd4\xe5\xe8\xd6\xe9\xde\xdf", /* 0xd8 */ + (unsigned char*)".\xe2\xdd\xe1\xda", /* 0xd9 */ + (unsigned char*)"\xd0\xde\xd8.\xea\xe0\xd2\xe2\xdb\xe3\xdd", /* 0xda */ + (unsigned char*)"\xd8\xd5\xd0\xde.\xdd\xef\xda\xe3\xea\xee", /* 0xdb */ + (unsigned char*)"\xd5\xd0.\xd8\xde\xe3\xdd\xea\xef", /* 0xdc */ + (unsigned char*)"\xd0\xd8\xd5\xde.\xef\xe2\xe1\xdd\xd4\xe6\xda", /* 0xdd */ + (unsigned char*)".\xe2\xd2\xe1\xe0\xdb\xd1\xd3\xd4\xd9\xdd\xda\xd6\xdc\xe7\xdf\xef\xd7\xd8\xd5\xe9", /* 0xde */ + (unsigned char*)"\xde\xe0\xd0\xd8\xea\xd5\xdb\xe3", /* 0xdf */ + (unsigned char*)"\xd0\xd5\xd8\xde\xea.\xe3\xef\xdd\xd2\xe2\xd4\xe1\xdc\xda", /* 0xe0 */ + (unsigned char*)"\xe2\xd5\xd8.\xea\xdb\xd0\xda\xd2\xdd\xdf\xdc\xde\xef\xe0", /* 0xe1 */ + (unsigned char*)"\xde\xd0\xd5.\xd8\xe0\xd2\xdd\xea\xef\xe3\xda\xe2\xdb", /* 0xe2 */ + (unsigned char*)".\xe1\xd2\xe7\xdc\xd4\xd3\xda\xe0\xdf\xd1\xe8\xdb\xd6\xdd\xe2", /* 0xe3 */ + (unsigned char*)"\xd8", /* 0xe4 */ + (unsigned char*)".\xd0\xde\xdd\xd2", /* 0xe5 */ + (unsigned char*)"\xd8\xd5\xd0", /* 0xe6 */ + (unsigned char*)"\xd5\xd0\xd8\xdd\xda\xe3\xde", /* 0xe7 */ + (unsigned char*)"\xd5.\xd8\xd0", /* 0xe8 */ + (unsigned char*)"\xd5\xde\xd0\xd8", /* 0xe9 */ + (unsigned char*)"\xe0\xdb\xe2\xdc\xe1\xda\xd7\xd4\xdd\xd2\xe9\xdf\xd6\xd3\xd1", /* 0xea */ + (unsigned char*)".\xe2\xda\xd2\xe5\xdc\xdb\xe1\xd1\xdd", /* 0xef */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM855[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 992, 0, /* 0x98 */ + 5956, 125, 713, 0, 224, 0, 1638, 0, /* 0xa0 */ + 4455, 0, 0, 0, 731, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 376, 0, 4081, /* 0xb0 */ + 104, 0, 0, 0, 0, 299, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 1679, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 1654, 0, 1291, 0, 3203, 170, 4364, 0, /* 0xd0 */ + 1306, 0, 0, 0, 0, 98, 893, 0, /* 0xd8 */ + 0, 2168, 0, 2364, 107, 3471, 135, 676, /* 0xe0 */ + 0, 396, 0, 2084, 97, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 1148, 0, 376, 0, 0, /* 0xf0 */ + 0, 324, 0, 669, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_IBM855[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 255, 255, 255, 255, 255, 255, 255, 255, /* 0x80 */ + 255, 255, 255, 255, 255, 255, 255, 255, /* 0x88 */ + 255, 255, 255, 255, 255, 0, 255, 255, /* 0x90 */ + 255, 255, 255, 255, 255, 255, 36, 255, /* 0x98 */ + 10, 1, 11, 255, 32, 255, 14, 255, /* 0xa0 */ + 15, 255, 30, 255, 13, 255, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 31, 255, 18, /* 0xb0 */ + 4, 0, 0, 0, 0, 19, 255, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 20, 5, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 21, 255, 22, 6, 23, 7, 24, 255, /* 0xd0 */ + 25, 0, 0, 0, 0, 8, 37, 0, /* 0xd8 */ + 255, 26, 255, 27, 255, 28, 9, 29, /* 0xe0 */ + 255, 16, 255, 12, 2, 255, 255, 0, /* 0xe8 */ + 0, 255, 255, 17, 3, 34, 255, 255, /* 0xf0 */ + 255, 35, 255, 33, 255, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_IBM855[] = { + + (unsigned char*)"\xe3\xd4\xd8\xa6\xb7\xeb\xd6\xe5\xc6\xd2\xf3\xa2\xa8\xac\xe1\xfb\xd5\xa0\xd0\xe7\xe6\xdd\xe4\xec\xa7\xa1\xc7\xf9\xb8\xd3\xb5\xf4\xe9\xa3\xd7\xde\xa4\xe2\xaa\xad\xa9\xf5\xb6\xd1\xfc\xe8", /* FILLCHAR */ + (unsigned char*)".", /* 0xa1 */ + (unsigned char*)".\xb7", /* 0xec */ + (unsigned char*)"\xa0", /* 0xf4 */ + (unsigned char*)".", /* 0xb8 */ + (unsigned char*)"\xa0\xd6", /* 0xc7 */ + (unsigned char*)"\xa0", /* 0xd3 */ + (unsigned char*)"\xa8\xa0\xd6\xb7", /* 0xd5 */ + (unsigned char*)"\xd6\xe1", /* 0xdd */ + (unsigned char*)"\xd6", /* 0xe6 */ + (unsigned char*)".\xe5\xd4\xeb\xd0\xc6\xf3\xd2\xe1\xe3\xa6\xf5\xbd\xd8\xb5\xa2\xfb\xf9\xac\xe9\xa8\xde\xa4", /* 0xa0 */ + (unsigned char*)"\xa8\xb7\xe1\xd6\xa0\x9e\xd0\xde\xeb\xe7", /* 0xa2 */ + (unsigned char*)"\xa0\xa8\xb7\xd6.\x9e\xe3\xe1\xd4\xde\xd0\xe5", /* 0xeb */ + (unsigned char*)"\xd6\xa0\xd0\xb7\xe1\xd4.\x9e", /* 0xac */ + (unsigned char*)"\xa0\xa8\xb7\xd6.\xd4\xe1\x9e\xeb\xe7\xde\xe3", /* 0xa6 */ + (unsigned char*)".\xd4\xe5\xa6\xd0\xe3\xe1\xd2\xf5\xf3\xc6\xac\xfb\xf9\xe9\xeb\xd8\xa2\xbd\xb5\xa4\xd6", /* 0xa8 */ + (unsigned char*)"\xa8\xb7\xa6\xa0\xd4.", /* 0xe9 */ + (unsigned char*)"\xa0\xb7\xeb\xd4.\xd8\xa8\xa6\xd0\xd2\xd6\xc6\xa2\xac\xe1", /* 0xf3 */ + (unsigned char*)".\xe5\xd4\xf3\xde\xd0\xa8\xe3\xfb\xd2\xc6\xeb\xe1\xac\xa4\xa6\xb5\xf5\xe9\xf9\xd6\xd8", /* 0xb7 */ + (unsigned char*)".\xe5\xd4\xe3\xc6", /* 0xbd */ + (unsigned char*)"\xa0\xd6\xb7.\x9e\xe1\xeb\xe5\xd0\xe7\xd4", /* 0xc6 */ + (unsigned char*)"\xb7\xa8\xa0\xd6.\xd4\xde\xc6\xe7\x9e\x9c", /* 0xd0 */ + (unsigned char*)"\xa8\xa0.\xb7\xd6\xe7\xd4\x9e\xde", /* 0xd2 */ + (unsigned char*)"\xa0\xb7\xa8\xd6.\xde\xe5\xe3\xd4\xa6\xa4\xc6", /* 0xd4 */ + (unsigned char*)".\xe5\xeb\xe3\xe1\xd0\xa2\xac\xa6\xbd\xd4\xc6\xe9\xd2\xfb\xd8\xde\xf3\xb7\xa8\xf9", /* 0xd6 */ + (unsigned char*)"\xd6\xe1\xa0\xb7\x9e\xa8\xd0\xe7", /* 0xd8 */ + (unsigned char*)"\xa0\xa8\xb7\xd6\x9e.\xe7\xde\xd4\xeb\xe5\xa6\xe3\xd2\xc6", /* 0xe1 */ + (unsigned char*)"\xe5\xa8\xb7.\x9e\xd0\xa0\xc6\xeb\xd4\xd8\xd2\xd6\xde\xe1", /* 0xe3 */ + (unsigned char*)"\xd6\xa0\xa8.\xb7\xe1\xeb\xd4\x9e\xde\xe7\xc6\xe5\xd0", /* 0xe5 */ + (unsigned char*)".\xe3\xeb\xfb\xd2\xa6\xac\xc6\xe1\xd8\xa2\xf5\xd0\xe9\xd4\xe5", /* 0xe7 */ + (unsigned char*)"\xb7", /* 0xaa */ + (unsigned char*)".\xa0\xd6\xd4\xeb", /* 0xb5 */ + (unsigned char*)"\xb7\xa8\xa0", /* 0xa4 */ + (unsigned char*)"\xa8\xa0\xb7\xd4\xc6\xe7\xd6", /* 0xfb */ + (unsigned char*)"\xa8.\xb7\xa0", /* 0xf5 */ + (unsigned char*)"\xa8\xd6\xa0\xb7", /* 0xf9 */ + (unsigned char*)"\xe1\xd0\xe5\xd2\xe3\xc6\xf3\xa6\xd4\xeb\xf9\xd8\xe9\xac\xa2", /* 0x9e */ + (unsigned char*)".\xe5\xc6\xeb\xb5\xd2\xd0\xe3\xa2\xd4", /* 0xde */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_MACCYR[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 125, 0, 97, 0, 0, 0, 0, 0, /* 0x80 */ + 104, 0, 0, 0, 0, 170, 0, 98, /* 0x88 */ + 0, 107, 135, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 893, /* 0xd8 */ + 5956, 713, 2084, 731, 1638, 4455, 396, 1148, /* 0xe0 */ + 4081, 299, 1679, 1654, 1291, 3203, 4364, 1306, /* 0xe8 */ + 2168, 2364, 3471, 676, 0, 376, 224, 669, /* 0xf0 */ + 376, 324, 992, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_MACCYR[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 1, 255, 2, 255, 255, 255, 255, 3, /* 0x80 */ + 4, 255, 5, 255, 6, 7, 255, 8, /* 0x88 */ + 255, 255, 9, 255, 255, 255, 255, 255, /* 0x90 */ + 255, 255, 255, 255, 255, 255, 255, 255, /* 0x98 */ + 0, 0, 255, 0, 0, 0, 0, 255, /* 0xa0 */ + 0, 0, 0, 255, 255, 0, 255, 255, /* 0xa8 */ + 0, 0, 0, 0, 255, 0, 255, 255, /* 0xb0 */ + 255, 255, 255, 255, 255, 255, 255, 255, /* 0xb8 */ + 255, 255, 0, 0, 255, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 255, 255, 255, 255, 255, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 255, 255, 255, 255, 0, 255, 255, 37, /* 0xd8 */ + 10, 11, 12, 13, 14, 15, 16, 17, /* 0xe0 */ + 18, 19, 20, 21, 22, 23, 24, 25, /* 0xe8 */ + 26, 27, 28, 29, 30, 31, 32, 33, /* 0xf0 */ + 34, 35, 36, 255, 255, 255, 255, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_MACCYR[] = { + + (unsigned char*)"\xf1\xed\xef\xe4\xe8\xe2\xee\xf2\xea\xec\xe7\xe1\xe5\xe3\xf0\xf7\x8d\xe0\xeb\xf3\x92\x8f\x91\x82\x84\x80\x8a\xf9\x88\x8c\xf5\x87\xe6\x81\x8e\xdf\xf6\x90\xf4\x83\x85\xf8\x95\x8b\x97\x93", /* FILLCHAR */ + (unsigned char*)".", /* 0x80 */ + (unsigned char*)".\xe8", /* 0x82 */ + (unsigned char*)"\xe0", /* 0x87 */ + (unsigned char*)".", /* 0x88 */ + (unsigned char*)"\xe0\xee", /* 0x8a */ + (unsigned char*)"\xe0", /* 0x8c */ + (unsigned char*)"\xe5\xe0\xee\xe8", /* 0x8d */ + (unsigned char*)"\xee\xf0", /* 0x8f */ + (unsigned char*)"\xee", /* 0x92 */ + (unsigned char*)".\xf2\xed\xe2\xeb\xea\xe7\xec\xf0\xf1\xe4\xf8\xe9\xef\xf5\xe1\xf7\xf9\xe3\xe6\xe5\xdf\xf6", /* 0xe0 */ + (unsigned char*)"\xe5\xe8\xf0\xee\xe0\xfa\xeb\xdf\xe2\xf3", /* 0xe1 */ + (unsigned char*)"\xe0\xe5\xe8\xee.\xfa\xf1\xf0\xed\xdf\xeb\xf2", /* 0xe2 */ + (unsigned char*)"\xee\xe0\xeb\xe8\xf0\xed.\xfa", /* 0xe3 */ + (unsigned char*)"\xe0\xe5\xe8\xee.\xed\xf0\xfa\xe2\xf3\xdf\xf1", /* 0xe4 */ + (unsigned char*)".\xed\xf2\xe4\xeb\xf1\xf0\xec\xf8\xe7\xea\xe3\xf7\xf9\xe6\xe2\xef\xe1\xe9\xf5\xf6\xee", /* 0xe5 */ + (unsigned char*)"\xe5\xe8\xe4\xe0\xed.", /* 0xe6 */ + (unsigned char*)"\xe0\xe8\xe2\xed.\xef\xe5\xe4\xeb\xec\xee\xea\xe1\xe3\xf0", /* 0xe7 */ + (unsigned char*)".\xf2\xed\xe7\xdf\xeb\xe5\xf1\xf7\xec\xea\xe2\xf0\xe3\xf6\xe4\xf5\xf8\xe6\xf9\xee\xef", /* 0xe8 */ + (unsigned char*)".\xf2\xed\xf1\xea", /* 0xe9 */ + (unsigned char*)"\xe0\xee\xe8.\xfa\xf0\xe2\xf2\xeb\xf3\xed", /* 0xea */ + (unsigned char*)"\xe8\xe5\xe0\xee.\xed\xdf\xea\xf3\xfa\xfe", /* 0xeb */ + (unsigned char*)"\xe5\xe0.\xe8\xee\xf3\xed\xfa\xdf", /* 0xec */ + (unsigned char*)"\xe0\xe8\xe5\xee.\xdf\xf2\xf1\xed\xe4\xf6\xea", /* 0xed */ + (unsigned char*)".\xf2\xe2\xf1\xf0\xeb\xe1\xe3\xe4\xe9\xed\xea\xe6\xec\xf7\xef\xdf\xe7\xe8\xe5\xf9", /* 0xee */ + (unsigned char*)"\xee\xf0\xe0\xe8\xfa\xe5\xeb\xf3", /* 0xef */ + (unsigned char*)"\xe0\xe5\xe8\xee\xfa.\xf3\xdf\xed\xe2\xf2\xe4\xf1\xec\xea", /* 0xf0 */ + (unsigned char*)"\xf2\xe5\xe8.\xfa\xeb\xe0\xea\xe2\xed\xef\xec\xee\xdf\xf0", /* 0xf1 */ + (unsigned char*)"\xee\xe0\xe5.\xe8\xf0\xe2\xed\xfa\xdf\xf3\xea\xf2\xeb", /* 0xf2 */ + (unsigned char*)".\xf1\xe2\xf7\xec\xe4\xe3\xea\xf0\xef\xe1\xf8\xeb\xe6\xed\xf2", /* 0xf3 */ + (unsigned char*)"\xe8", /* 0xf4 */ + (unsigned char*)".\xe0\xee\xed\xe2", /* 0xf5 */ + (unsigned char*)"\xe8\xe5\xe0", /* 0xf6 */ + (unsigned char*)"\xe5\xe0\xe8\xed\xea\xf3\xee", /* 0xf7 */ + (unsigned char*)"\xe5.\xe8\xe0", /* 0xf8 */ + (unsigned char*)"\xe5\xee\xe0\xe8", /* 0xf9 */ + (unsigned char*)"\xf0\xeb\xf2\xec\xf1\xea\xe7\xe4\xed\xe2\xf9\xef\xe6\xe3\xe1", /* 0xfa */ + (unsigned char*)".\xf2\xea\xe2\xf5\xec\xeb\xf1\xe1\xed", /* 0xdf */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ECMA113[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 5956, 713, 224, 1638, 4455, 0, 731, /* 0xc0 */ + 376, 4081, 299, 1679, 1654, 1291, 3203, 4364, /* 0xc8 */ + 1306, 893, 2168, 2364, 3471, 676, 396, 2084, /* 0xd0 */ + 0, 0, 1148, 376, 0, 324, 669, 992, /* 0xd8 */ + 0, 125, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 104, 0, 0, 0, 0, 170, 0, /* 0xe8 */ + 98, 0, 0, 107, 135, 0, 0, 97, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_ECMA113[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 255, 255, 255, 255, 255, 255, 255, /* 0xa0 */ + 255, 255, 255, 255, 255, 0, 255, 255, /* 0xa8 */ + 0, 255, 255, 255, 255, 255, 255, 255, /* 0xb0 */ + 255, 255, 255, 255, 255, 0, 255, 255, /* 0xb8 */ + 255, 10, 11, 32, 14, 15, 30, 13, /* 0xc0 */ + 31, 18, 19, 20, 21, 22, 23, 24, /* 0xc8 */ + 25, 37, 26, 27, 28, 29, 16, 12, /* 0xd0 */ + 255, 255, 17, 34, 255, 35, 33, 36, /* 0xd8 */ + 255, 1, 255, 255, 255, 255, 255, 255, /* 0xe0 */ + 255, 4, 255, 5, 255, 6, 7, 255, /* 0xe8 */ + 8, 255, 255, 255, 9, 255, 255, 2, /* 0xf0 */ + 255, 255, 3, 255, 255, 255, 255, 255, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_ECMA113[] = { + + (unsigned char*)"\xd3\xce\xd0\xc4\xc9\xd7\xcf\xd4\xcb\xcd\xda\xc2\xc5\xc7\xd2\xde\xee\xc1\xcc\xd5\xf4\xf0\xf3\xf7\xe4\xe1\xeb\xdd\xe9\xed\xc8\xfa\xd6\xe2\xef\xd1\xc3\xf2\xc6\xe7\xe5\xdb\xe8\xec\xfe\xf5", /* FILLCHAR */ + (unsigned char*)".", /* 0xe1 */ + (unsigned char*)".\xc9", /* 0xf7 */ + (unsigned char*)"\xc1", /* 0xfa */ + (unsigned char*)".", /* 0xe9 */ + (unsigned char*)"\xc1\xcf", /* 0xeb */ + (unsigned char*)"\xc1", /* 0xed */ + (unsigned char*)"\xc5\xc1\xcf\xc9", /* 0xee */ + (unsigned char*)"\xcf\xd2", /* 0xf0 */ + (unsigned char*)"\xcf", /* 0xf4 */ + (unsigned char*)".\xd4\xce\xd7\xcc\xcb\xda\xcd\xd2\xd3\xc4\xdb\xca\xd0\xc8\xc2\xde\xdd\xc7\xd6\xc5\xd1\xc3", /* 0xc1 */ + (unsigned char*)"\xc5\xc9\xd2\xcf\xc1\xdf\xcc\xd1\xd7\xd5", /* 0xc2 */ + (unsigned char*)"\xc1\xc5\xc9\xcf.\xdf\xd3\xd2\xce\xd1\xcc\xd4", /* 0xd7 */ + (unsigned char*)"\xcf\xc1\xcc\xc9\xd2\xce.\xdf", /* 0xc7 */ + (unsigned char*)"\xc1\xc5\xc9\xcf.\xce\xd2\xdf\xd7\xd5\xd1\xd3", /* 0xc4 */ + (unsigned char*)".\xce\xd4\xc4\xcc\xd3\xd2\xcd\xdb\xda\xcb\xc7\xde\xdd\xd6\xd7\xd0\xc2\xca\xc8\xc3\xcf", /* 0xc5 */ + (unsigned char*)"\xc5\xc9\xc4\xc1\xce.", /* 0xd6 */ + (unsigned char*)"\xc1\xc9\xd7\xce.\xd0\xc5\xc4\xcc\xcd\xcf\xcb\xc2\xc7\xd2", /* 0xda */ + (unsigned char*)".\xd4\xce\xda\xd1\xcc\xc5\xd3\xde\xcd\xcb\xd7\xd2\xc7\xc3\xc4\xc8\xdb\xd6\xdd\xcf\xd0", /* 0xc9 */ + (unsigned char*)".\xd4\xce\xd3\xcb", /* 0xca */ + (unsigned char*)"\xc1\xcf\xc9.\xdf\xd2\xd7\xd4\xcc\xd5\xce", /* 0xcb */ + (unsigned char*)"\xc9\xc5\xc1\xcf.\xce\xd1\xcb\xd5\xdf\xc0", /* 0xcc */ + (unsigned char*)"\xc5\xc1.\xc9\xcf\xd5\xce\xdf\xd1", /* 0xcd */ + (unsigned char*)"\xc1\xc9\xc5\xcf.\xd1\xd4\xd3\xce\xc4\xc3\xcb", /* 0xce */ + (unsigned char*)".\xd4\xd7\xd3\xd2\xcc\xc2\xc7\xc4\xca\xce\xcb\xd6\xcd\xde\xd0\xd1\xda\xc9\xc5\xdd", /* 0xcf */ + (unsigned char*)"\xcf\xd2\xc1\xc9\xdf\xc5\xcc\xd5", /* 0xd0 */ + (unsigned char*)"\xc1\xc5\xc9\xcf\xdf.\xd5\xd1\xce\xd7\xd4\xc4\xd3\xcd\xcb", /* 0xd2 */ + (unsigned char*)"\xd4\xc5\xc9.\xdf\xcc\xc1\xcb\xd7\xce\xd0\xcd\xcf\xd1\xd2", /* 0xd3 */ + (unsigned char*)"\xcf\xc1\xc5.\xc9\xd2\xd7\xce\xdf\xd1\xd5\xcb\xd4\xcc", /* 0xd4 */ + (unsigned char*)".\xd3\xd7\xde\xcd\xc4\xc7\xcb\xd2\xd0\xc2\xdb\xcc\xd6\xce\xd4", /* 0xd5 */ + (unsigned char*)"\xc9", /* 0xc6 */ + (unsigned char*)".\xc1\xcf\xce\xd7", /* 0xc8 */ + (unsigned char*)"\xc9\xc5\xc1", /* 0xc3 */ + (unsigned char*)"\xc5\xc1\xc9\xce\xcb\xd5\xcf", /* 0xde */ + (unsigned char*)"\xc5.\xc9\xc1", /* 0xdb */ + (unsigned char*)"\xc5\xcf\xc1\xc9", /* 0xdd */ + (unsigned char*)"\xd2\xcc\xd4\xcd\xd3\xcb\xda\xc4\xce\xd7\xdd\xd0\xd6\xc7\xc2", /* 0xdf */ + (unsigned char*)".\xd4\xcb\xd7\xc8\xcd\xcc\xd3\xc2\xce", /* 0xd1 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/totals.pl. */ +static const unsigned short int SIGNIFICANT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 125, 0, 97, 0, 0, 0, 0, 0, /* 0x80 */ + 104, 0, 0, 0, 0, 170, 0, 98, /* 0x88 */ + 0, 107, 135, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 992, 0, /* 0x98 */ + 5956, 125, 713, 0, 224, 0, 1638, 0, /* 0xa0 */ + 4455, 0, 0, 0, 731, 0, 0, 0, /* 0xa8 */ + 125, 0, 97, 0, 0, 376, 0, 4081, /* 0xb0 */ + 208, 0, 0, 0, 0, 469, 0, 98, /* 0xb8 */ + 125, 6063, 945, 224, 1638, 4455, 1679, 731, /* 0xc0 */ + 480, 4081, 299, 1679, 1654, 1461, 3203, 4462, /* 0xc8 */ + 8916, 1713, 5678, 3095, 8312, 5301, 5156, 3232, /* 0xd0 */ + 5387, 299, 2827, 2030, 1291, 3625, 5926, 3191, /* 0xd8 */ + 14080, 6083, 7639, 4502, 3383, 12757, 1151, 3641, /* 0xe0 */ + 8538, 1422, 4350, 5392, 2679, 6406, 8898, 3505, /* 0xe8 */ + 4434, 4728, 6942, 2607, 135, 1128, 448, 1435, /* 0xf0 */ + 752, 972, 1984, 669, 0, 0, 0, 893, /* 0xf8 */ +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define WEIGHT_SUM 48367 + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const char *const CHARSET_NAMES[] = { + "cp1251", + "iso88595", + "ibm855", + "maccyr", + "ecma113", +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned short int *const CHARSET_WEIGHTS[] = { + RAW_CP1251, + RAW_ISO88595, + RAW_IBM855, + RAW_MACCYR, + RAW_ECMA113, +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned char *const CHARSET_LETTERS[] = { + LETTER_CP1251, + LETTER_ISO88595, + LETTER_IBM855, + LETTER_MACCYR, + LETTER_ECMA113, +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned char **const CHARSET_PAIRS[] = { + PAIR_CP1251, + PAIR_ISO88595, + PAIR_IBM855, + PAIR_MACCYR, + PAIR_ECMA113, +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define NCHARSETS 5 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/cp1251.base b/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/cp1251.base new file mode 100644 index 0000000..f82effb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/cp1251.base @@ -0,0 +1,34 @@ + 125 + 97 + 104 + 170 + 98 + 107 + 135 + 5956 + 713 + 2084 + 731 + 1638 + 4455 + 396 + 1148 + 4081 + 299 + 1679 + 1654 + 1291 + 3203 + 4364 + 1306 + 2168 + 2364 + 3471 + 676 + 376 + 224 + 669 + 376 + 324 + 992 + 893 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/doit.sh new file mode 100755 index 0000000..559699b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/doit.sh @@ -0,0 +1,2 @@ +#! /bin/bash +../doit.sh cp1251 iso88595 ibm855 maccyr ecma113 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/paircounts.cp1251 b/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/paircounts.cp1251 new file mode 100644 index 0000000..3071bfc --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/paircounts.cp1251 @@ -0,0 +1,38 @@ +.: +:. +:. +: +:. +: +: +: +: +: +:. +: +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +: +:. +:. +:. +:. +: +:. +: +: +:. +: +: +:. diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/rawcounts.cp1251 b/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/rawcounts.cp1251 new file mode 100644 index 0000000..06cf7da --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/bulgarian/rawcounts.cp1251 @@ -0,0 +1,166 @@ +0x00 . 3 +0x09 . 10609 +0x0a . 53700 +0x0c . 3 +0x0d . 49092 +0x15 . 13 +0x18 . 1 +0x1a . 7 +0x20 432159 +0x21 ! 1781 +0x22 " 10781 +0x23 # 203 +0x24 $ 5 +0x25 % 43 +0x26 & 1617 +0x27 ' 480 +0x28 ( 3285 +0x29 ) 3363 +0x2a * 1603 +0x2b + 1030 +0x2c , 26902 +0x2d - 19686 +0x2e . 31767 +0x2f / 5616 +0x30 0 3276 +0x31 1 2782 +0x32 2 1418 +0x33 3 1010 +0x34 4 1055 +0x35 5 914 +0x36 6 1272 +0x37 7 519 +0x38 8 819 +0x39 9 1092 +0x3a : 2101 +0x3b ; 4217 +0x3c < 10637 +0x3d = 8564 +0x3e > 10618 +0x3f ? 2538 +0x40 @ 60 +0x41 A 895 +0x42 B 969 +0x43 C 1524 +0x44 D 923 +0x45 E 1301 +0x46 F 440 +0x47 G 622 +0x48 H 817 +0x49 I 2537 +0x4a J 108 +0x4b K 124 +0x4c L 1492 +0x4d M 699 +0x4e N 990 +0x4f O 768 +0x50 P 478 +0x51 Q 13 +0x52 R 1464 +0x53 S 821 +0x54 T 1406 +0x55 U 423 +0x56 V 293 +0x57 W 366 +0x58 X 23 +0x59 Y 118 +0x5a Z 24 +0x5b [ 54 +0x5c \ 327 +0x5d ] 54 +0x5e ^ 4 +0x5f _ 2538 +0x61 a 9390 +0x62 b 6906 +0x63 c 5120 +0x64 d 6166 +0x65 e 16081 +0x66 f 2992 +0x67 g 2763 +0x68 h 3944 +0x69 i 9441 +0x6a j 305 +0x6b k 1633 +0x6c l 5673 +0x6d m 3775 +0x6e n 9907 +0x6f o 10169 +0x70 p 5383 +0x71 q 329 +0x72 r 13044 +0x73 s 6931 +0x74 t 13017 +0x75 u 4347 +0x76 v 2431 +0x77 w 2036 +0x78 x 1325 +0x79 y 1422 +0x7a z 752 +0x7b { 440 +0x7c | 1123 +0x7d } 440 +0x92 1 +0x96 81 +0xae 1 +0xc0 3900 +0xc1 1568 +0xc2 3027 +0xc3 997 +0xc4 2823 +0xc5 1834 +0xc6 278 +0xc7 1955 +0xc8 3250 +0xc9 144 +0xca 2829 +0xcb 1109 +0xcc 2265 +0xcd 5294 +0xce 2440 +0xcf 3064 +0xd0 2093 +0xd1 3346 +0xd2 4206 +0xd3 809 +0xd4 382 +0xd5 801 +0xd6 261 +0xd7 710 +0xd8 276 +0xd9 310 +0xda 309 +0xdb 59 +0xdc 42 +0xde 102 +0xdf 428 +0xe0 184647 +0xe1 22118 +0xe2 64605 +0xe3 22666 +0xe4 50790 +0xe5 138125 +0xe6 12283 +0xe7 35618 +0xe8 126526 +0xe9 9288 +0xea 52079 +0xeb 51286 +0xec 40022 +0xed 99293 +0xee 135288 +0xef 40509 +0xf0 67218 +0xf1 73304 +0xf2 107621 +0xf3 20977 +0xf4 2495 +0xf5 11665 +0xf6 6973 +0xf7 20746 +0xf8 11674 +0xf9 10045 +0xfa 30759 +0xfc 231 +0xfd 2 +0xfe 1525 +0xff 27684 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/chinese/chinese.h b/wlx/wayland_qt_base/build/enca-1.19/data/chinese/chinese.h new file mode 100644 index 0000000..ed07869 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/chinese/chinese.h @@ -0,0 +1,17 @@ +/* This header file is in the public domain. */ +#ifndef CHINESE_H +#define CHINESE_H +#include <string.h> + +struct zh_weight +{ + unsigned char name[2]; + double freq; +}; + +typedef const struct zh_weight *RateFunc (const unsigned char *str); +typedef int ValidityFunc (const unsigned char *str); + +#include "zh_weight_gbk.h" +#include "zh_weight_big5.h" +#endif diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/chinese/zh_weight_big5.h b/wlx/wayland_qt_base/build/enca-1.19/data/chinese/zh_weight_big5.h new file mode 100644 index 0000000..e0e9d28 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/chinese/zh_weight_big5.h @@ -0,0 +1,731 @@ +/* This header file is in the public domain. + Most of its content is generated by gperf, with modifications + Chinese frequency table courtesy of Dept. of CS, Tsinghua Univeristy, Beijing + See http://fhpi.yingkou.net.cn/bbs/1951/messages/2903.html +*/ + +/* ANSI-C code produced by gperf version 3.0.1 */ +/* Command-line: gperf -L ANSI-C -I -C -E -n -o -c -D -t zh_weight_big5.txt */ +/* Computed positions: -k'1-2' */ + +#if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \ + && ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \ + && (')' == 41) && ('*' == 42) && ('+' == 43) && (',' == 44) \ + && ('-' == 45) && ('.' == 46) && ('/' == 47) && ('0' == 48) \ + && ('1' == 49) && ('2' == 50) && ('3' == 51) && ('4' == 52) \ + && ('5' == 53) && ('6' == 54) && ('7' == 55) && ('8' == 56) \ + && ('9' == 57) && (':' == 58) && (';' == 59) && ('<' == 60) \ + && ('=' == 61) && ('>' == 62) && ('?' == 63) && ('A' == 65) \ + && ('B' == 66) && ('C' == 67) && ('D' == 68) && ('E' == 69) \ + && ('F' == 70) && ('G' == 71) && ('H' == 72) && ('I' == 73) \ + && ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) \ + && ('N' == 78) && ('O' == 79) && ('P' == 80) && ('Q' == 81) \ + && ('R' == 82) && ('S' == 83) && ('T' == 84) && ('U' == 85) \ + && ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \ + && ('Z' == 90) && ('[' == 91) && ('\\' == 92) && (']' == 93) \ + && ('^' == 94) && ('_' == 95) && ('a' == 97) && ('b' == 98) \ + && ('c' == 99) && ('d' == 100) && ('e' == 101) && ('f' == 102) \ + && ('g' == 103) && ('h' == 104) && ('i' == 105) && ('j' == 106) \ + && ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \ + && ('o' == 111) && ('p' == 112) && ('q' == 113) && ('r' == 114) \ + && ('s' == 115) && ('t' == 116) && ('u' == 117) && ('v' == 118) \ + && ('w' == 119) && ('x' == 120) && ('y' == 121) && ('z' == 122) \ + && ('{' == 123) && ('|' == 124) && ('}' == 125) && ('~' == 126)) +/* The character set is not based on ISO-646. */ +#error "gperf generated tables don't work with this execution character set. Please report a bug to <bug-gnu-gperf@gnu.org>." +#endif + +/* maximum key range = 987, duplicates = 0 */ + +#ifdef __GNUC__ +__inline +#else +#ifdef __cplusplus +inline +#endif +#endif +/*ARGSUSED*/ +static unsigned int +hash_big5 (register const unsigned char *str) +{ + static const unsigned short asso_values[] = + { + 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, + 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, + 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, + 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, + 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, + 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, + 987, 987, 987, 987, 333, 104, 109, 139, 400, 987, + 98, 224, 306, 468, 214, 987, 381, 233, 93, 240, + 56, 286, 987, 119, 251, 59, 214, 221, 4, 245, + 987, 204, 199, 228, 10, 84, 278, 356, 0, 105, + 366, 371, 174, 381, 79, 98, 19, 169, 356, 450, + 216, 508, 298, 290, 987, 58, 96, 48, 38, 176, + 184, 10, 205, 146, 118, 440, 193, 987, 987, 987, + 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, + 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, + 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, + 987, 305, 987, 238, 10, 5, 0, 85, 25, 285, + 115, 30, 180, 75, 415, 238, 15, 260, 3, 160, + 68, 60, 270, 18, 265, 90, 130, 360, 245, 485, + 495, 345, 385, 133, 480, 365, 435, 110, 445, 473, + 505, 455, 166, 410, 448, 153, 28, 39, 455, 110, + 500, 215, 340, 343, 164, 243, 96, 470, 325, 91, + 378, 391, 29, 14, 385, 4, 3, 171, 56, 506, + 168, 448, 26, 144, 441, 351, 360, 458, 5, 241, + 225, 311, 303, 46, 11, 493, 418, 285, 255, 438, + 398, 301, 453, 1, 136, 987 + }; + return asso_values[(unsigned char)str[1]] + asso_values[(unsigned char)str[0]]; +} + +static const struct zh_weight *in_big5 (register const unsigned char *str) +{ + enum + { + TOTAL_KEYWORDS = 500, + MIN_WORD_LENGTH = 2, + MAX_WORD_LENGTH = 2, + MIN_HASH_VALUE = 0, + MAX_HASH_VALUE = 986 + }; + + static const struct zh_weight wordlist[] = + { + {"\246b",0.0082045}, + {"\246\375",0.0010253}, + {"\246\342",0.0005973}, + {"\246X",0.0023691}, + {"\245\246",0.0005788}, + {"\245\375",0.0010976}, + {"\245\262",0.0006812}, + {"\245X",0.0042527}, + {"\246^",0.0006653}, + {"\244\375",0.0006086}, + {"\244\342",0.0009187}, + {"\244\341",0.0005598}, + {"\245\364",0.0012122}, + {"\260\342",0.0004988}, + {"\245\337",0.0015778}, + {"\244\244",0.0076843}, + {"\244\364",0.0016446}, + {"\267\245",0.0006288}, + {"\244\337",0.0014967}, + {"\246\250",0.0037219}, + {"\246\350",0.0012152}, + {"\250\342",0.0013376}, + {"\244j",0.0066078}, + {"\250\356",0.0026895}, + {"\262\316",0.0011475}, + {"\245\316",0.002668}, + {"\253\341",0.0021836}, + {"\245\253",0.0046659}, + {"\244\350",0.002853}, + {"\244\316",0.0012255}, + {"\244\336",0.0006632}, + {"\260\250",0.0005587}, + {"\262v",0.0005754}, + {"\245v",0.0004954}, + {"\253\337",0.0005375}, + {"\253\260",0.0010251}, + {"\246\363",0.0005162}, + {"\244v",0.0006239}, + {"\244\317",0.0006176}, + {"\245\363",0.0009711}, + {"\245u",0.0008284}, + {"\260\317",0.0022413}, + {"\250\253",0.0006468}, + {"\246P",0.0026107}, + {"\244u",0.0050114}, + {"\246U",0.001779}, + {"\265\246",0.0006082}, + {"\265\375",0.0007621}, + {"\265\262",0.0011242}, + {"\250\317",0.001449}, + {"\265\245",0.0021605}, + {"\244\344",0.0007224}, + {"\244s",0.0011044}, + {"\244U",0.0021357}, + {"\244\265",0.0013712}, + {"\250\363",0.0007439}, + {"\264X",0.0008733}, + {"\245\264",0.0005953}, + {"\267P",0.0005274}, + {"\260\265",0.0007036}, + {"\267s",0.002897}, + {"\255\262",0.0012506}, + {"\246h",0.0032382}, + {"\245\255",0.0016647}, + {"\250\344",0.0017313}, + {"\250s",0.0007264}, + {"\245h",0.0013444}, + {"\244\255",0.0007467}, + {"\253\344",0.0006569}, + {"\247\342",0.0010343}, + {"\245_",0.0015279}, + {"\246\271",0.0011388}, + {"\246\333",0.0022824}, + {"\255\267",0.0007326}, + {"\244_",0.0026086}, + {"\244\247",0.001919}, + {"\245\333",0.0004908}, + {"\245N",0.0016641}, + {"\260_",0.0015911}, + {"\250\255",0.0006168}, + {"\245\330",0.0015919}, + {"\245i",0.0018478}, + {"\246A",0.0005426}, + {"\255\253",0.0023459}, + {"\244F",0.0079237}, + {"\253h",0.0005586}, + {"\246\321",0.0008237}, + {"\267N",0.0011669}, + {"\247\316",0.0009425}, + {"\247\336",0.0016091}, + {"\245\321",0.0013801}, + {"\267F",0.0009596}, + {"\271\316",0.0009523}, + {"\252\341",0.0005451}, + {"\244\321",0.0016483}, + {"\250t",0.0013262}, + {"\245|",0.0009759}, + {"\264\344",0.0005587}, + {"\260\321",0.0006661}, + {"\253\330",0.0032052}, + {"\264\265",0.0006023}, + {"\244S",0.0009509}, + {"\260\252",0.0025748}, + {"\247\363",0.0008908}, + {"\260|",0.0010515}, + {"\250B",0.0010507}, + {"\250\321",0.000632}, + {"\267|",0.0051579}, + {"\245\301",0.0035945}, + {"\246C",0.0005658}, + {"\244\272",0.0016149}, + {"\245\376",0.0032345}, + {"\250|",0.0009705}, + {"\250S",0.0008714}, + {"\252\253",0.0010483}, + {"\246{",0.000633}, + {"\305v",0.0009164}, + {"\262{",0.0025147}, + {"\265\271",0.0007847}, + {"\265\333",0.0014365}, + {"\252v",0.0009927}, + {"\244\351",0.0036327}, + {"\250\272",0.0007224}, + {"\265\330",0.0012136}, + {"\245\315",0.0039844}, + {"\272\336",0.001622}, + {"\246\263",0.0077624}, + {"\264N",0.0021619}, + {"\262\263",0.0006362}, + {"\250C",0.000715}, + {"\255\271",0.0004878}, + {"\246\312",0.0006978}, + {"\246\346",0.0041784}, + {"\253C",0.0005662}, + {"\263y",0.0009483}, + {"\255t",0.0005072}, + {"\245\346",0.0011534}, + {"\244\326",0.0009361}, + {"\247\271",0.0006563}, + {"\246w",0.00114}, + {"\265|",0.0007012}, + {"\244k",0.0006045}, + {"\246\254",0.0012488}, + {"\260\312",0.0023694}, + {"\247i",0.0005829}, + {"\244f",0.0012146}, + {"\245\254",0.0005445}, + {"\244w",0.0015716}, + {"\271F",0.0012618}, + {"\245x",0.0008597}, + {"\254y",0.0008055}, + {"\250\312",0.0012137}, + {"\246~",0.0071346}, + {"\271A",0.001983}, + {"\254\260",0.0054216}, + {"\250\343",0.0006981}, + {"\245~",0.0022498}, + {"\271B",0.0009758}, + {"\252\247",0.0007016}, + {"\264\301",0.0012406}, + {"\244~",0.0006942}, + {"\245\\",0.0005073}, + {"\255\272",0.0006626}, + {"\265{",0.0012378}, + {"\262z",0.0029849}, + {"\245[",0.0023829}, + {"\253\254",0.0006771}, + {"\267~",0.0065423}, + {"\252F",0.0011892}, + {"\246V",0.0014073}, + {"\246\323",0.0018881}, + {"\246n",0.0017451}, + {"\263s",0.0004976}, + {"\252A",0.0008639}, + {"\271\272",0.0007059}, + {"\246W",0.0014078}, + {"\253~",0.0023513}, + {"\244J",0.0015621}, + {"\252\321",0.0005495}, + {"\272\330",0.0018411}, + {"\246]",0.0010577}, + {"\260\323",0.0016298}, + {"\244W",0.0048331}, + {"\245]",0.0006314}, + {"\244G",0.001247}, + {"\272c",0.0007005}, + {"\262M",0.0005405}, + {"\244]",0.001974}, + {"\250\323",0.0034731}, + {"\262\243",0.0043545}, + {"\260]",0.0005022}, + {"\252\272",0.0341277}, + {"\253n",0.00114}, + {"\244\243",0.0063303}, + {"\247\326",0.0006737}, + {"\244O",0.0022943}, + {"\301|",0.0006836}, + {"\263N",0.0014501}, + {"\305\351",0.0021551}, + {"\260O",0.0013592}, + {"\263t",0.0005376}, + {"\250M",0.0011549}, + {"\255x",0.0009727}, + {"\245\370",0.0027556}, + {"\244T",0.0017945}, + {"\250\243",0.0007272}, + {"\246\270",0.0014362}, + {"\260T",0.000496}, + {"\257\253",0.0005762}, + {"\263B",0.0009814}, + {"\253O",0.0014976}, + {"\254\333",0.0010087}, + {"\253\327",0.0015281}, + {"\244\270",0.002067}, + {"\270\364",0.001188}, + {"\254F",0.002679}, + {"\261j",0.0013442}, + {"\266\244",0.0009591}, + {"\262`",0.0008945}, + {"\274v",0.000514}, + {"\252k",0.0025935}, + {"\266\260",0.0010417}, + {"\257u",0.0006076}, + {"\251\262",0.0009796}, + {"\255\323",0.0043881}, + {"\255n",0.0045003}, + {"\265M",0.001088}, + {"\245q",0.0017401}, + {"\244Q",0.0016297}, + {"\246p",0.0012367}, + {"\247J",0.0005433}, + {"\247\323",0.0008129}, + {"\246\373",0.0005246}, + {"\274s",0.0011772}, + {"\267Q",0.0008423}, + {"\246\241",0.0008493}, + {"\264\243",0.0016334}, + {"\244p",0.0016135}, + {"\245\241",0.0004698}, + {"\245H",0.0038364}, + {"\251\316",0.0006972}, + {"\265\370",0.000674}, + {"\244H",0.0080773}, + {"\260\362",0.0014197}, + {"\261\265",0.0007936}, + {"\244\361",0.001161}, + {"\270s",0.0005419}, + {"\270U",0.0020929}, + {"\247O",0.0007577}, + {"\247\357",0.0018059}, + {"\263\346",0.0008341}, + {"\266\265",0.0011181}, + {"\271\357",0.0032427}, + {"\246@",0.0010536}, + {"\263f",0.0005011}, + {"\255\261",0.0020167}, + {"\253H",0.000977}, + {"\245@",0.0010821}, + {"\252G",0.0008799}, + {"\247\370",0.0009976}, + {"\274t",0.0012368}, + {"\244@",0.0112731}, + {"\246\277",0.0009106}, + {"\262\325",0.0011894}, + {"\257\305",0.0009423}, + {"\245\277",0.0013077}, + {"\254\343",0.0009783}, + {"\261N",0.0014281}, + {"\277\244",0.0009752}, + {"\246a",0.0047688}, + {"\257S",0.0012592}, + {"\261i",0.0007204}, + {"\263\\",0.0005616}, + {"\246\354",0.0016007}, + {"\244\353",0.0024389}, + {"\273\342",0.0011289}, + {"\245\273",0.0024993}, + {"\244l",0.0015414}, + {"\266i",0.0032419}, + {"\252\370",0.0025652}, + {"\247Q",0.0018856}, + {"\255p",0.00135}, + {"\270\321",0.0011085}, + {"\255\373",0.0018995}, + {"\246\334",0.0007778}, + {"\271q",0.001873}, + {"\263W",0.0013724}, + {"\245\334",0.0004949}, + {"\250\354",0.0036926}, + {"\245L",0.0031435}, + {"\263]",0.0022181}, + {"\250\303",0.0012383}, + {"\244g",0.0005437}, + {"\264\332",0.0005576}, + {"\244\300",0.002317}, + {"\300\364",0.0006218}, + {"\263\243",0.0014503}, + {"\252\367",0.001743}, + {"\253e",0.0020531}, + {"\245\372",0.0005461}, + {"\245D",0.0027957}, + {"\260\335",0.0015404}, + {"\253\334",0.000797}, + {"\247\332",0.0034646}, + {"\301`",0.0018397}, + {"\252p",0.0005979}, + {"\263\370",0.0027135}, + {"\273P",0.0019506}, + {"\247@",0.0040521}, + {"\254O",0.0076122}, + {"\274w",0.0005846}, + {"\250\372",0.0009919}, + {"\250D",0.0009944}, + {"\252\361",0.0009063}, + {"\261\346",0.0005027}, + {"\253D",0.000531}, + {"\301p",0.0009379}, + {"\300u",0.0008197}, + {"\255\354",0.0009897}, + {"\247\353",0.0011592}, + {"\262\304",0.0017413}, + {"\250\256",0.0010894}, + {"\265L",0.0010303}, + {"\305@",0.0005659}, + {"\247\354",0.0004875}, + {"\263Q",0.000825}, + {"\253\366",0.0004965}, + {"\263q",0.0015692}, + {"\251\312",0.0011996}, + {"\256v",0.00052}, + {"\244\306",0.0023838}, + {"\260\352",0.0106651}, + {"\246\355",0.000485}, + {"\260\306",0.0006302}, + {"\251w",0.0024269}, + {"\256u",0.0004695}, + {"\263\241",0.0033026}, + {"\274W",0.0014225}, + {"\253\371",0.0010342}, + {"\250\306",0.0018604}, + {"\271L",0.0020606}, + {"\260\355",0.0004694}, + {"\303\321",0.0005749}, + {"\267\355",0.001657}, + {"\250\374",0.0008222}, + {"\270\323",0.0006501}, + {"\272\353",0.0007159}, + {"\253\374",0.0007731}, + {"\266V",0.0004797}, + {"\254\241",0.0011783}, + {"\252e",0.0005451}, + {"\305\334",0.0007406}, + {"\271D",0.0012275}, + {"\267\307",0.0007058}, + {"\261M",0.0009373}, + {"\244\275",0.0031331}, + {"\252L",0.0007135}, + {"\250\307",0.0013308}, + {"\252\300",0.0020607}, + {"\303\376",0.0005014}, + {"\267\275",0.0005666}, + {"\277\263",0.0005636}, + {"\273{",0.0008819}, + {"\246o",0.0005373}, + {"\266O",0.0009271}, + {"\275\350",0.0009775}, + {"\256i",0.0030534}, + {"\261\370",0.0012831}, + {"\244\345",0.0018717}, + {"\251M",0.0067636}, + {"\260\310",0.0018869}, + {"\266T",0.0006242}, + {"\255\314",0.0030767}, + {"\256\321",0.001001}, + {"\263d",0.0006355}, + {"\257q",0.0008483}, + {"\250\310",0.0006162}, + {"\271\352",0.002744}, + {"\275u",0.0005442}, + {"\253\310",0.0004833}, + {"\264I",0.0004872}, + {"\261`",0.0008196}, + {"\254\354",0.0014751}, + {"\270`",0.000558}, + {"\300\263",0.0014049}, + {"\254d",0.000721}, + {"\302\264",0.0007599}, + {"\261q",0.001703}, + {"\276P",0.0008187}, + {"\252\371",0.0014059}, + {"\270q",0.0011046}, + {"\305\347",0.0005062}, + {"\266q",0.0015425}, + {"\277n",0.0006935}, + {"\252\314",0.0022472}, + {"\261\241",0.0011166}, + {"\270\373",0.0005458}, + {"\265o",0.0053412}, + {"\247\275",0.0009665}, + {"\254\335",0.0008716}, + {"\252\355",0.0013294}, + {"\266\241",0.0010701}, + {"\266H",0.0004946}, + {"\247\365",0.0006669}, + {"\255\310",0.0006514}, + {"\256\346",0.0008735}, + {"\261\332",0.0005358}, + {"\277\357",0.0006163}, + {"\301\311",0.0004837}, + {"\271\322",0.0005699}, + {"\247\345",0.0007277}, + {"\276i",0.0004942}, + {"\304\263",0.0011071}, + {"\251\361",0.0010846}, + {"\254\366",0.0004974}, + {"\252\275",0.0005522}, + {"\301\331",0.0014906}, + {"\263\306",0.0006344}, + {"\263\314",0.0012694}, + {"\252\276",0.0006257}, + {"\266\325",0.0006866}, + {"\263\320",0.0007723}, + {"\261a",0.0006134}, + {"\254\371",0.000501}, + {"\303\370",0.0007756}, + {"\257\340",0.0022237}, + {"\251\324",0.0005527}, + {"\300Y",0.0007873}, + {"\254\374",0.0013899}, + {"\254\311",0.0010474}, + {"\275\315",0.0006043}, + {"\256\360",0.0005779}, + {"\251l",0.0004855}, + {"\270\334",0.000621}, + {"\261\300",0.0006574}, + {"\270g",0.0049223}, + {"\254I",0.0009187}, + {"\306[",0.0007736}, + {"\254\331",0.0016366}, + {"\263\365",0.0030636}, + {"\274\313",0.0008296}, + {"\251e",0.001456}, + {"\256\327",0.0005503}, + {"\263\322",0.0005726}, + {"\273\362",0.0006158}, + {"\273\241",0.0019478}, + {"\276\343",0.0006271}, + {"\263o",0.0043446}, + {"\256\370",0.0006543}, + {"\270\313",0.000643}, + {"\304Y",0.0006039}, + {"\251\372",0.0014369}, + {"\273\332",0.0012275}, + {"\300\362",0.0004915}, + {"\274\306",0.0008388}, + {"\261\304",0.0006097}, + {"\274\320",0.0009393}, + {"\251\366",0.0006749}, + {"\277\354",0.0013224}, + {"\270\352",0.0027448}, + {"\266}",0.0031058}, + {"\270\314",0.0014032}, + {"\261\320",0.0013183}, + {"\266m",0.0007924}, + {"\275\327",0.0007584}, + {"\275T",0.0006259}, + {"\304\362",0.0005217}, + {"\256\332",0.000545}, + {"\266\307",0.0007021}, + {"\274\322",0.0004864}, + {"\303\300",0.0004998}, + {"\273\335",0.0007022}, + {"\273D",0.0004727}, + {"\303D",0.0013688}, + {"\261o",0.0019729}, + {"\256a",0.0039648}, + {"\266\310",0.0005794}, + {"\276\367",0.0023189}, + {"\303\366",0.0023261}, + {"\251\322",0.0015791}, + {"\273\371",0.0010855}, + {"\276\332",0.0009205}, + {"\275\325",0.0012018}, + {"\300\347",0.0011203}, + {"\276\324",0.0008112}, + {"\256\304",0.0009217}, + {"\273\365",0.000824}, + {"\300\331",0.0026701}, + {"\256\306",0.0005776}, + {"\302\340",0.0007108}, + {"\256\374",0.0015815}, + {"\256\311",0.0030057}, + {"\276\372",0.0005352}, + {"\304\322",0.0011413}, + {"\302\355",0.000663}, + {"\302I",0.0013538}, + {"\276\311",0.0011932}, + {"\276\307",0.0027139}, + {"\302\276",0.000867}, + {"\302\345",0.0005415} + }; + + static const short lookup[] = + { + 0, 1, -1, 2, 3, 4, 5, -1, 6, 7, + 8, 9, -1, 10, 11, -1, 12, -1, 13, 14, + 15, 16, -1, 17, 18, 19, 20, -1, 21, 22, + 23, 24, -1, 25, 26, 27, 28, -1, 29, 30, + 31, 32, -1, 33, 34, 35, 36, -1, 37, 38, + -1, 39, -1, 40, 41, 42, 43, -1, 44, 45, + 46, 47, -1, 48, 49, 50, 51, -1, 52, 53, + 54, 55, 56, 57, 58, 59, 60, -1, 61, 62, + 63, 64, -1, 65, 66, 67, 68, -1, 69, 70, + 71, 72, -1, 73, 74, 75, 76, -1, 77, 78, + 79, 80, -1, 81, 82, 83, -1, -1, 84, 85, + 86, 87, -1, 88, 89, 90, 91, -1, 92, 93, + 94, 95, -1, 96, 97, 98, 99, -1, 100, 101, + 102, 103, -1, 104, 105, 106, 107, -1, 108, 109, + 110, 111, -1, 112, 113, 114, 115, -1, 116, 117, + 118, 119, -1, 120, 121, 122, 123, -1, 124, 125, + 126, 127, -1, 128, 129, 130, 131, -1, 132, 133, + 134, 135, -1, 136, 137, 138, 139, -1, 140, 141, + 142, 143, -1, 144, 145, 146, 147, -1, 148, 149, + 150, 151, -1, 152, 153, 154, 155, -1, 156, 157, + 158, 159, -1, 160, 161, 162, 163, -1, 164, 165, + 166, 167, -1, 168, 169, 170, 171, -1, 172, 173, + 174, 175, -1, 176, 177, 178, 179, -1, 180, -1, + 181, 182, -1, 183, 184, 185, 186, -1, 187, -1, + 188, 189, -1, 190, -1, 191, 192, -1, 193, 194, + 195, 196, -1, 197, 198, 199, 200, -1, 201, 202, + 203, 204, -1, 205, -1, 206, 207, -1, 208, 209, + 210, 211, -1, 212, -1, 213, 214, -1, 215, 216, + 217, 218, -1, 219, 220, 221, 222, -1, 223, -1, + 224, 225, -1, 226, -1, 227, 228, -1, 229, 230, + 231, 232, -1, 233, 234, 235, 236, -1, 237, -1, + 238, 239, -1, 240, -1, 241, 242, -1, 243, -1, + 244, 245, -1, 246, 247, 248, 249, -1, 250, -1, + 251, 252, -1, 253, 254, 255, 256, -1, 257, 258, + 259, 260, -1, 261, -1, 262, 263, -1, 264, -1, + 265, 266, -1, 267, -1, 268, 269, 270, 271, 272, + 273, 274, -1, 275, -1, 276, 277, -1, 278, -1, + 279, 280, -1, 281, -1, 282, 283, -1, 284, -1, + 285, 286, -1, 287, -1, 288, 289, -1, 290, -1, + 291, 292, -1, 293, -1, 294, 295, -1, 296, -1, + 297, 298, -1, 299, -1, 300, 301, -1, 302, -1, + 303, 304, -1, 305, -1, 306, 307, -1, 308, -1, + 309, 310, -1, 311, -1, 312, 313, -1, 314, -1, + 315, 316, -1, 317, -1, 318, 319, -1, 320, -1, + 321, 322, -1, 323, -1, 324, 325, -1, 326, -1, + 327, 328, -1, 329, -1, 330, 331, -1, 332, -1, + 333, 334, -1, 335, -1, 336, 337, -1, 338, -1, + 339, 340, -1, 341, -1, 342, 343, -1, 344, -1, + 345, 346, -1, 347, 348, 349, 350, -1, 351, -1, + 352, 353, -1, 354, -1, 355, 356, -1, 357, -1, + 358, 359, -1, 360, -1, 361, 362, -1, 363, -1, + 364, 365, -1, 366, -1, 367, 368, -1, 369, -1, + 370, 371, -1, 372, -1, 373, 374, -1, 375, -1, + 376, 377, -1, 378, -1, 379, 380, -1, 381, -1, + 382, -1, -1, 383, -1, 384, 385, -1, 386, -1, + 387, 388, -1, 389, -1, 390, -1, -1, 391, -1, + 392, 393, -1, 394, -1, 395, 396, -1, 397, -1, + 398, 399, -1, 400, -1, 401, 402, -1, 403, -1, + 404, -1, -1, 405, -1, 406, 407, -1, 408, -1, + 409, 410, -1, 411, -1, 412, 413, -1, 414, -1, + 415, -1, -1, 416, -1, 417, -1, -1, 418, -1, + 419, -1, -1, 420, -1, 421, 422, -1, 423, -1, + 424, -1, -1, 425, -1, 426, -1, -1, -1, -1, + 427, -1, -1, 428, -1, 429, -1, -1, 430, -1, + 431, 432, -1, 433, -1, 434, 435, -1, 436, 437, + 438, -1, -1, 439, -1, 440, 441, -1, 442, -1, + 443, -1, -1, 444, -1, 445, 446, -1, 447, -1, + 448, -1, -1, -1, -1, 449, -1, -1, -1, -1, + 450, -1, -1, 451, -1, 452, -1, -1, 453, -1, + 454, -1, -1, -1, -1, 455, -1, -1, -1, -1, + 456, -1, -1, 457, -1, 458, 459, -1, -1, -1, + 460, -1, -1, 461, -1, 462, -1, -1, -1, -1, + 463, -1, -1, -1, -1, -1, -1, -1, 464, -1, + -1, -1, -1, -1, -1, -1, 465, -1, 466, -1, + 467, -1, -1, 468, -1, 469, -1, -1, -1, -1, + 470, 471, -1, -1, -1, -1, -1, -1, -1, -1, + 472, -1, -1, -1, -1, 473, -1, -1, 474, -1, + -1, 475, -1, -1, -1, 476, -1, -1, -1, -1, + 477, -1, -1, 478, -1, 479, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 480, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 481, -1, -1, -1, -1, -1, -1, -1, 482, -1, + -1, -1, -1, 483, -1, 484, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 485, -1, -1, 486, -1, 487, -1, -1, -1, -1, + 488, -1, -1, -1, -1, 489, -1, -1, 490, -1, + 491, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 492, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 493, -1, -1, 494, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 495, -1, + 496, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 497, -1, + -1, -1, -1, -1, -1, 498, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 499 + }; + + register int key = hash_big5 (str); + + if (key <= MAX_HASH_VALUE && key >= 0) { + register int index = lookup[key]; + + if (index >= 0) { + register const unsigned char *s = wordlist[index].name; + + if (*str == *s && str[1] == s[1]) + return &wordlist[index]; + } + } + return 0; +} + +/** + * is_big5: + * @str: Pointer to a 16-bit wide character. + * + * Returns: One if the wide character is within Big5 charset range, zero otherwise + **/ + +static int is_big5(const unsigned char *str) +{ + unsigned char high = str[0]; + unsigned char low = str[1]; + + return high >=0xa1 && high <= 0xf9 + && ((low >= 0x40 && low <= 0x7e) + || (low >= 0xa1 && low <= 0xfe)); +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/chinese/zh_weight_big5.txt b/wlx/wayland_qt_base/build/enca-1.19/data/chinese/zh_weight_big5.txt new file mode 100644 index 0000000..87c9124 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/chinese/zh_weight_big5.txt @@ -0,0 +1,502 @@ +struct zh_weight { char name[2], double freq }; +%% +,0.0341277 +@,0.0112731 +,0.0106651 +b,0.0082045 +H,0.0080773 +F,0.0079237 +,0.0077624 +,0.0076843 +O,0.0076122 +~,0.0071346 +M,0.0067636 +j,0.0066078 +~,0.0065423 +,0.0063303 +,0.0054216 +o,0.0053412 +|,0.0051579 +u,0.0050114 +g,0.0049223 +W,0.0048331 +a,0.0047688 +,0.0046659 +n,0.0045003 +,0.0043881 +,0.0043545 +o,0.0043446 +X,0.0042527 +,0.0041784 +@,0.0040521 +,0.0039844 +a,0.0039648 +H,0.0038364 +,0.0037219 +,0.0036926 +,0.0036327 +,0.0035945 +,0.0034731 +,0.0034646 +,0.0033026 +,0.0032427 +i,0.0032419 +h,0.0032382 +,0.0032345 +,0.0032052 +L,0.0031435 +,0.0031331 +},0.0031058 +,0.0030767 +,0.0030636 +i,0.0030534 +,0.0030057 +z,0.0029849 +s,0.002897 +,0.002853 +D,0.0027957 +,0.0027556 +,0.0027448 +,0.002744 +,0.0027139 +,0.0027135 +,0.0026895 +F,0.002679 +,0.0026701 +,0.002668 +P,0.0026107 +_,0.0026086 +k,0.0025935 +,0.0025748 +,0.0025652 +{,0.0025147 +,0.0024993 +,0.0024389 +w,0.0024269 +,0.0023838 +[,0.0023829 +,0.0023694 +X,0.0023691 +~,0.0023513 +,0.0023459 +,0.0023261 +,0.0023189 +,0.002317 +O,0.0022943 +,0.0022824 +~,0.0022498 +,0.0022472 +,0.0022413 +,0.0022237 +],0.0022181 +,0.0021836 +N,0.0021619 +,0.0021605 +,0.0021551 +U,0.0021357 +U,0.0020929 +,0.002067 +,0.0020607 +L,0.0020606 +e,0.0020531 +,0.0020167 +A,0.001983 +],0.001974 +o,0.0019729 +P,0.0019506 +,0.0019478 +,0.001919 +,0.0018995 +,0.0018881 +,0.0018869 +Q,0.0018856 +q,0.001873 +,0.0018717 +,0.0018604 +i,0.0018478 +,0.0018411 +`,0.0018397 +,0.0018059 +T,0.0017945 +U,0.001779 +n,0.0017451 +,0.001743 +,0.0017413 +q,0.0017401 +,0.0017313 +q,0.001703 +,0.0016647 +N,0.0016641 +,0.001657 +,0.0016483 +,0.0016446 +,0.0016366 +,0.0016334 +,0.0016298 +Q,0.0016297 +,0.001622 +,0.0016149 +p,0.0016135 +,0.0016091 +,0.0016007 +,0.0015919 +_,0.0015911 +,0.0015815 +,0.0015791 +,0.0015778 +w,0.0015716 +q,0.0015692 +J,0.0015621 +q,0.0015425 +l,0.0015414 +,0.0015404 +,0.0015281 +_,0.0015279 +O,0.0014976 +,0.0014967 +,0.0014906 +,0.0014751 +e,0.001456 +,0.0014503 +N,0.0014501 +,0.001449 +,0.0014369 +,0.0014365 +,0.0014362 +N,0.0014281 +W,0.0014225 +,0.0014197 +W,0.0014078 +V,0.0014073 +,0.0014059 +,0.0014049 +,0.0014032 +,0.0013899 +,0.0013801 +W,0.0013724 +,0.0013712 +D,0.0013688 +O,0.0013592 +I,0.0013538 +p,0.00135 +h,0.0013444 +j,0.0013442 +,0.0013376 +,0.0013308 +,0.0013294 +t,0.0013262 +,0.0013224 +,0.0013183 +,0.0013077 +,0.0012831 +,0.0012694 +F,0.0012618 +S,0.0012592 +,0.0012506 +,0.0012488 +G,0.001247 +,0.0012406 +,0.0012383 +{,0.0012378 +t,0.0012368 +p,0.0012367 +D,0.0012275 +,0.0012275 +,0.0012255 +,0.0012152 +f,0.0012146 +,0.0012137 +,0.0012136 +,0.0012122 +,0.0012018 +,0.0011996 +,0.0011932 +,0.0011894 +F,0.0011892 +,0.001188 +,0.0011783 +s,0.0011772 +N,0.0011669 +,0.001161 +,0.0011592 +M,0.0011549 +,0.0011534 +,0.0011475 +,0.0011413 +n,0.00114 +w,0.00114 +,0.0011388 +,0.0011289 +,0.0011242 +,0.0011203 +,0.0011181 +,0.0011166 +,0.0011085 +ij,0.0011071 +q,0.0011046 +s,0.0011044 +,0.0010976 +,0.0010894 +M,0.001088 +,0.0010855 +,0.0010846 +@,0.0010821 +,0.0010701 +],0.0010577 +@,0.0010536 +|,0.0010515 +B,0.0010507 +,0.0010483 +,0.0010474 +,0.0010417 +,0.0010343 +,0.0010342 +L,0.0010303 +,0.0010253 +,0.0010251 +,0.0010087 +,0.001001 +,0.0009976 +D,0.0009944 +v,0.0009927 +,0.0009919 +,0.0009897 +B,0.0009814 +,0.0009796 +,0.0009783 +,0.0009775 +H,0.000977 +|,0.0009759 +B,0.0009758 +,0.0009752 +x,0.0009727 +,0.0009711 +|,0.0009705 +,0.0009665 +F,0.0009596 +,0.0009591 +,0.0009523 +S,0.0009509 +y,0.0009483 +,0.0009425 +,0.0009423 +,0.0009393 +p,0.0009379 +M,0.0009373 +,0.0009361 +O,0.0009271 +,0.0009217 +,0.0009205 +,0.0009187 +I,0.0009187 +v,0.0009164 +,0.0009106 +,0.0009063 +`,0.0008945 +,0.0008908 +{,0.0008819 +G,0.0008799 +,0.0008735 +X,0.0008733 +,0.0008716 +S,0.0008714 +¾,0.000867 +A,0.0008639 +x,0.0008597 +,0.0008493 +q,0.0008483 +Q,0.0008423 +,0.0008388 +,0.0008341 +,0.0008296 +u,0.0008284 +Q,0.000825 +,0.000824 +,0.0008237 +,0.0008222 +u,0.0008197 +`,0.0008196 +P,0.0008187 +,0.0008129 +,0.0008112 +y,0.0008055 +,0.000797 +,0.0007936 +m,0.0007924 +Y,0.0007873 +,0.0007847 +,0.0007778 +,0.0007756 +[,0.0007736 +,0.0007731 +,0.0007723 +,0.0007621 +´,0.0007599 +,0.0007584 +O,0.0007577 +,0.0007467 +,0.0007439 +,0.0007406 +,0.0007326 +,0.0007277 +,0.0007272 +s,0.0007264 +,0.0007224 +,0.0007224 +d,0.000721 +i,0.0007204 +,0.0007159 +C,0.000715 +L,0.0007135 +,0.0007108 +,0.0007059 +,0.0007058 +,0.0007036 +,0.0007022 +,0.0007021 +,0.0007016 +|,0.0007012 +c,0.0007005 +,0.0006981 +,0.0006978 +,0.0006972 +~,0.0006942 +n,0.0006935 +,0.0006866 +|,0.0006836 +,0.0006812 +,0.0006771 +,0.0006749 +,0.000674 +,0.0006737 +,0.0006669 +,0.0006661 +^,0.0006653 +,0.0006632 +,0.000663 +,0.0006626 +,0.0006574 +,0.0006569 +,0.0006563 +,0.0006543 +,0.0006514 +,0.0006501 +,0.0006468 +,0.000643 +,0.0006362 +d,0.0006355 +,0.0006344 +{,0.000633 +,0.000632 +],0.0006314 +,0.0006302 +,0.0006288 +,0.0006271 +T,0.0006259 +,0.0006257 +T,0.0006242 +v,0.0006239 +,0.0006218 +,0.000621 +,0.0006176 +,0.0006168 +,0.0006163 +,0.0006162 +,0.0006158 +a,0.0006134 +,0.0006097 +,0.0006086 +,0.0006082 +u,0.0006076 +k,0.0006045 +,0.0006043 +Y,0.0006039 +,0.0006023 +p,0.0005979 +,0.0005973 +,0.0005953 +w,0.0005846 +i,0.0005829 +,0.0005794 +,0.0005788 +,0.0005779 +,0.0005776 +,0.0005762 +v,0.0005754 +,0.0005749 +,0.0005726 +,0.0005699 +,0.0005666 +C,0.0005662 +@,0.0005659 +C,0.0005658 +,0.0005636 +\,0.0005616 +,0.0005598 +,0.0005587 +,0.0005587 +h,0.0005586 +`,0.000558 +,0.0005576 +,0.0005527 +,0.0005522 +,0.0005503 +,0.0005495 +,0.0005461 +,0.0005458 +e,0.0005451 +,0.0005451 +,0.000545 +,0.0005445 +u,0.0005442 +g,0.0005437 +J,0.0005433 +A,0.0005426 +s,0.0005419 +,0.0005415 +M,0.0005405 +t,0.0005376 +,0.0005375 +o,0.0005373 +,0.0005358 +,0.0005352 +D,0.000531 +P,0.0005274 +,0.0005246 +,0.0005217 +v,0.00052 +,0.0005162 +v,0.000514 +\,0.0005073 +t,0.0005072 +,0.0005062 +,0.0005027 +],0.0005022 +,0.0005014 +f,0.0005011 +,0.000501 +,0.0004998 +,0.0004988 +s,0.0004976 +,0.0004974 +,0.0004965 +T,0.000496 +v,0.0004954 +,0.0004949 +H,0.0004946 +i,0.0004942 +,0.0004915 +,0.0004908 +,0.0004878 +,0.0004875 +I,0.0004872 +,0.0004864 +l,0.0004855 +,0.000485 +,0.0004837 +,0.0004833 +V,0.0004797 +D,0.0004727 +,0.0004698 +u,0.0004695 +,0.0004694 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/chinese/zh_weight_gb.txt b/wlx/wayland_qt_base/build/enca-1.19/data/chinese/zh_weight_gb.txt new file mode 100644 index 0000000..5f4ccec --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/chinese/zh_weight_gb.txt @@ -0,0 +1,502 @@ +struct zh_weight { char name[2], double freq }; +%% +,0.0341277 +һ,0.0112731 +,0.0106651 +,0.0082045 +,0.0080773 +,0.0079237 +,0.0077624 +,0.0076843 +,0.0076122 +,0.0071346 +,0.0067636 +,0.0066078 +ҵ,0.0065423 +,0.0063303 +Ϊ,0.0054216 +,0.0053412 +,0.0051579 +,0.0050114 +,0.0049223 +,0.0048331 +,0.0047688 +,0.0046659 +Ҫ,0.0045003 +,0.0043881 +,0.0043545 +,0.0043446 +,0.0042527 +,0.0041784 +,0.0040521 +,0.0039844 +,0.0039648 +,0.0038364 +,0.0037219 +,0.0036926 +,0.0036327 +,0.0035945 +,0.0034731 +,0.0034646 +,0.0033026 +,0.0032427 +,0.0032419 +,0.0032382 +ȫ,0.0032345 +,0.0032052 +,0.0031435 +,0.0031331 +,0.0031058 +,0.0030767 +,0.0030636 +չ,0.0030534 +ʱ,0.0030057 +,0.0029849 +,0.002897 +,0.002853 +,0.0027957 +,0.0027556 +,0.0027448 +ʵ,0.002744 +ѧ,0.0027139 +,0.0027135 +,0.0026895 +,0.002679 +,0.0026701 +,0.002668 +ͬ,0.0026107 +,0.0026086 +,0.0025935 +,0.0025748 +,0.0025652 +,0.0025147 +,0.0024993 +,0.0024389 +,0.0024269 +,0.0023838 +,0.0023829 +,0.0023694 +,0.0023691 +Ʒ,0.0023513 +,0.0023459 +,0.0023261 +,0.0023189 +,0.002317 +,0.0022943 +,0.0022824 +,0.0022498 +,0.0022472 +,0.0022413 +,0.0022237 +,0.0022181 +,0.0021836 +,0.0021619 +,0.0021605 +,0.0021551 +,0.0021357 +,0.0020929 +Ԫ,0.002067 +,0.0020607 +,0.0020606 +ǰ,0.0020531 +,0.0020167 +ũ,0.001983 +Ҳ,0.001974 +,0.0019729 +,0.0019506 +˵,0.0019478 +֮,0.001919 +Ա,0.0018995 +,0.0018881 +,0.0018869 +,0.0018856 +,0.001873 +,0.0018717 +,0.0018604 +,0.0018478 +,0.0018411 +,0.0018397 +,0.0018059 +,0.0017945 +,0.001779 +,0.0017451 +,0.001743 +,0.0017413 +˾,0.0017401 +,0.0017313 +,0.001703 +ƽ,0.0016647 +,0.0016641 +,0.001657 +,0.0016483 +ˮ,0.0016446 +ʡ,0.0016366 +,0.0016334 +,0.0016298 +ʮ,0.0016297 +,0.001622 +,0.0016149 +С,0.0016135 +,0.0016091 +λ,0.0016007 +Ŀ,0.0015919 +,0.0015911 +,0.0015815 +,0.0015791 +,0.0015778 +,0.0015716 +ͨ,0.0015692 +,0.0015621 +,0.0015425 +,0.0015414 +,0.0015404 +,0.0015281 +,0.0015279 +,0.0014976 +,0.0014967 +,0.0014906 +,0.0014751 +ί,0.001456 +,0.0014503 +,0.0014501 +ʹ,0.001449 +,0.0014369 +,0.0014365 +,0.0014362 +,0.0014281 +,0.0014225 +,0.0014197 +,0.0014078 +,0.0014073 +,0.0014059 +Ӧ,0.0014049 +,0.0014032 +,0.0013899 +,0.0013801 +,0.0013724 +,0.0013712 +,0.0013688 +,0.0013592 +,0.0013538 +,0.00135 +ȥ,0.0013444 +ǿ,0.0013442 +,0.0013376 +Щ,0.0013308 +,0.0013294 +ϵ,0.0013262 +,0.0013224 +,0.0013183 +,0.0013077 +,0.0012831 +,0.0012694 +,0.0012618 +,0.0012592 +,0.0012506 +,0.0012488 +,0.001247 +,0.0012406 +,0.0012383 +,0.0012378 +,0.0012368 +,0.0012367 +,0.0012275 +,0.0012275 +,0.0012255 +,0.0012152 +,0.0012146 +,0.0012137 +,0.0012136 +,0.0012122 +,0.0012018 +,0.0011996 +,0.0011932 +,0.0011894 +,0.0011892 +·,0.001188 +,0.0011783 +,0.0011772 +,0.0011669 +,0.001161 +Ͷ,0.0011592 +,0.0011549 +,0.0011534 +ͳ,0.0011475 +,0.0011413 +,0.00114 +,0.00114 +,0.0011388 +,0.0011289 +,0.0011242 +Ӫ,0.0011203 +,0.0011181 +,0.0011166 +,0.0011085 +,0.0011071 +,0.0011046 +ɽ,0.0011044 +,0.0010976 +,0.0010894 +Ȼ,0.001088 +,0.0010855 +,0.0010846 +,0.0010821 +,0.0010701 +,0.0010577 +,0.0010536 +Ժ,0.0010515 +,0.0010507 +,0.0010483 +,0.0010474 +,0.0010417 +,0.0010343 +,0.0010342 +,0.0010303 +,0.0010253 +,0.0010251 +,0.0010087 +,0.001001 +,0.0009976 +,0.0009944 +,0.0009927 +ȡ,0.0009919 +ԭ,0.0009897 +,0.0009814 +,0.0009796 +,0.0009783 +,0.0009775 +,0.000977 +,0.0009759 +,0.0009758 +,0.0009752 +,0.0009727 +,0.0009711 +,0.0009705 +,0.0009665 +,0.0009596 +,0.0009591 +,0.0009523 +,0.0009509 +,0.0009483 +,0.0009425 +,0.0009423 +,0.0009393 +,0.0009379 +ר,0.0009373 +,0.0009361 +,0.0009271 +Ч,0.0009217 +,0.0009205 +,0.0009187 +ʩ,0.0009187 +Ȩ,0.0009164 +,0.0009106 +,0.0009063 +,0.0008945 +,0.0008908 +,0.0008819 +,0.0008799 +,0.0008735 +,0.0008733 +,0.0008716 +û,0.0008714 +ְ,0.000867 +,0.0008639 +̨,0.0008597 +ʽ,0.0008493 +,0.0008483 +,0.0008423 +,0.0008388 +,0.0008341 +,0.0008296 +ֻ,0.0008284 +,0.000825 +,0.000824 +,0.0008237 +,0.0008222 +,0.0008197 +,0.0008196 +,0.0008187 +־,0.0008129 +ս,0.0008112 +,0.0008055 +,0.000797 +,0.0007936 +,0.0007924 +ͷ,0.0007873 +,0.0007847 +,0.0007778 +,0.0007756 +,0.0007736 +ָ,0.0007731 +,0.0007723 +֤,0.0007621 +֯,0.0007599 +,0.0007584 +,0.0007577 +,0.0007467 +Э,0.0007439 +,0.0007406 +,0.0007326 +,0.0007277 +,0.0007272 +,0.0007264 +֧,0.0007224 +,0.0007224 +,0.000721 +,0.0007204 +,0.0007159 +ÿ,0.000715 +,0.0007135 +ת,0.0007108 +,0.0007059 +׼,0.0007058 +,0.0007036 +,0.0007022 +,0.0007021 +,0.0007016 +˰,0.0007012 +,0.0007005 +,0.0006981 +,0.0006978 +,0.0006972 +,0.0006942 +,0.0006935 +,0.0006866 +,0.0006836 +,0.0006812 +,0.0006771 +,0.0006749 +,0.000674 +,0.0006737 +,0.0006669 +,0.0006661 +,0.0006653 +,0.0006632 +,0.000663 +,0.0006626 +,0.0006574 +˼,0.0006569 +,0.0006563 +,0.0006543 +ֵ,0.0006514 +,0.0006501 +,0.0006468 +װ,0.000643 +,0.0006362 +,0.0006355 +,0.0006344 +,0.000633 +,0.000632 +,0.0006314 +,0.0006302 +,0.0006288 +,0.0006271 +ȷ,0.0006259 +֪,0.0006257 +ó,0.0006242 +,0.0006239 +,0.0006218 +,0.000621 +,0.0006176 +,0.0006168 +ѡ,0.0006163 +,0.0006162 +ô,0.0006158 +,0.0006134 +,0.0006097 +,0.0006086 +,0.0006082 +,0.0006076 +Ů,0.0006045 +̸,0.0006043 +,0.0006039 +˹,0.0006023 +,0.0005979 +ɫ,0.0005973 +,0.0005953 +,0.0005846 +,0.0005829 +,0.0005794 +,0.0005788 +,0.0005779 +,0.0005776 +,0.0005762 +,0.0005754 +ʶ,0.0005749 +,0.0005726 +,0.0005699 +Դ,0.0005666 +,0.0005662 +,0.0005659 +,0.0005658 +,0.0005636 +,0.0005616 +,0.0005598 +,0.0005587 +,0.0005587 +,0.0005586 +,0.000558 +,0.0005576 +,0.0005527 +ֱ,0.0005522 +,0.0005503 +,0.0005495 +,0.0005461 +,0.0005458 +,0.0005451 +,0.0005451 +,0.000545 +,0.0005445 +,0.0005442 +,0.0005437 +,0.0005433 +,0.0005426 +Ⱥ,0.0005419 +ҽ,0.0005415 +,0.0005405 +,0.0005376 +,0.0005375 +,0.0005373 +,0.0005358 +,0.0005352 +,0.000531 +,0.0005274 +ռ,0.0005246 +,0.0005217 +ʦ,0.00052 +,0.0005162 +Ӱ,0.000514 +,0.0005073 +,0.0005072 +,0.0005062 +,0.0005027 +,0.0005022 +,0.0005014 +,0.0005011 +Լ,0.000501 +,0.0004998 +,0.0004988 +,0.0004976 +,0.0004974 +,0.0004965 +Ѷ,0.000496 +ʷ,0.0004954 +ʾ,0.0004949 +,0.0004946 +,0.0004942 +,0.0004915 +ʯ,0.0004908 +ʳ,0.0004878 +ץ,0.0004875 +,0.0004872 +ģ,0.0004864 +ʼ,0.0004855 +ס,0.000485 +,0.0004837 +,0.0004833 +Խ,0.0004797 +,0.0004727 +,0.0004698 +ϯ,0.0004695 +,0.0004694 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/chinese/zh_weight_gbk.h b/wlx/wayland_qt_base/build/enca-1.19/data/chinese/zh_weight_gbk.h new file mode 100644 index 0000000..24ddd37 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/chinese/zh_weight_gbk.h @@ -0,0 +1,742 @@ +/* This header file is in the public domain. + Most of its content is generated by gperf, with modifications + Chinese frequency table courtesy of Dept. of CS, Tsinghua Univeristy, Beijing + See http://fhpi.yingkou.net.cn/bbs/1951/messages/2903.html +*/ + +/* ANSI-C code produced by gperf version 3.0.1 */ +/* Command-line: gperf -L ANSI-C -I -C -E -n -o -c -D -t zh_weight_gbk.txt */ +/* Computed positions: -k'1-2' */ + +#if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \ + && ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \ + && (')' == 41) && ('*' == 42) && ('+' == 43) && (',' == 44) \ + && ('-' == 45) && ('.' == 46) && ('/' == 47) && ('0' == 48) \ + && ('1' == 49) && ('2' == 50) && ('3' == 51) && ('4' == 52) \ + && ('5' == 53) && ('6' == 54) && ('7' == 55) && ('8' == 56) \ + && ('9' == 57) && (':' == 58) && (';' == 59) && ('<' == 60) \ + && ('=' == 61) && ('>' == 62) && ('?' == 63) && ('A' == 65) \ + && ('B' == 66) && ('C' == 67) && ('D' == 68) && ('E' == 69) \ + && ('F' == 70) && ('G' == 71) && ('H' == 72) && ('I' == 73) \ + && ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) \ + && ('N' == 78) && ('O' == 79) && ('P' == 80) && ('Q' == 81) \ + && ('R' == 82) && ('S' == 83) && ('T' == 84) && ('U' == 85) \ + && ('V' == 86) && ('W' == 87) && ('X' == 88) && ('Y' == 89) \ + && ('Z' == 90) && ('[' == 91) && ('\\' == 92) && (']' == 93) \ + && ('^' == 94) && ('_' == 95) && ('a' == 97) && ('b' == 98) \ + && ('c' == 99) && ('d' == 100) && ('e' == 101) && ('f' == 102) \ + && ('g' == 103) && ('h' == 104) && ('i' == 105) && ('j' == 106) \ + && ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \ + && ('o' == 111) && ('p' == 112) && ('q' == 113) && ('r' == 114) \ + && ('s' == 115) && ('t' == 116) && ('u' == 117) && ('v' == 118) \ + && ('w' == 119) && ('x' == 120) && ('y' == 121) && ('z' == 122) \ + && ('{' == 123) && ('|' == 124) && ('}' == 125) && ('~' == 126)) +/* The character set is not based on ISO-646. */ +#error "gperf generated tables don't work with this execution character set. Please report a bug to <bug-gnu-gperf@gnu.org>." +#endif + +/* maximum key range = 1014, duplicates = 0 */ + +#ifdef __GNUC__ +__inline +#else +#ifdef __cplusplus +inline +#endif +#endif +/*ARGSUSED*/ +static unsigned int +hash_gbk (register const unsigned char *str) +{ + static const unsigned short asso_values[] = + { + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 340, 218, 345, 88, 505, 245, 8, + 63, 310, 325, 225, 40, 18, 410, 500, 510, 455, + 280, 400, 375, 255, 371, 480, 510, 60, 85, 5, + 450, 108, 160, 95, 35, 45, 365, 0, 55, 165, + 90, 10, 25, 103, 41, 24, 336, 465, 1, 401, + 176, 16, 186, 486, 475, 340, 270, 481, 400, 511, + 511, 66, 76, 81, 145, 463, 390, 431, 273, 306, + 263, 113, 438, 31, 278, 285, 411, 30, 13, 4, + 9, 158, 3, 48, 483, 415, 291, 246, 220, 85, + 263, 336, 131, 183, 455, 86, 116, 151, 218, 143, + 81, 505, 381, 455, 261, 358, 508, 460, 138, 225, + 233, 1014, 391, 78, 3, 130, 56, 490, 43, 343, + 155, 46, 1014 + }; + return asso_values[(unsigned char)str[1]+47] + asso_values[(unsigned char)str[0]+7]; +} + +static const struct zh_weight *in_gbk (register const unsigned char *str) +{ + enum + { + TOTAL_KEYWORDS = 500, + MIN_WORD_LENGTH = 2, + MAX_WORD_LENGTH = 2, + MIN_HASH_VALUE = 0, + MAX_HASH_VALUE = 1013 + }; + + static const struct zh_weight wordlist[] = + { + {"\322\252",0.0045003}, + {"\322\265",0.0065423}, + {"\322\327",0.0006749}, + {"\322\324",0.0038364}, + {"\312\265",0.002744}, + {"\312\327",0.0006626}, + {"\322\325",0.0004998}, + {"\326\252",0.0006257}, + {"\326\265",0.0006514}, + {"\266\324",0.0032427}, + {"\326\367",0.0027957}, + {"\312\325",0.0012488}, + {"\312\256",0.0016297}, + {"\312\323",0.000674}, + {"\326\256",0.001919}, + {"\266\323",0.0009591}, + {"\322\262",0.001974}, + {"\327\252",0.0007108}, + {"\326\270",0.0007731}, + {"\327\367",0.0040521}, + {"\327\324",0.0022824}, + {"\312\257",0.0004908}, + {"\274\323",0.0023829}, + {"\266\257",0.0023694}, + {"\274\270",0.0008733}, + {"\326\257",0.0007599}, + {"\317\265",0.0013262}, + {"\327\323",0.0015414}, + {"\273\252",0.0012136}, + {"\326\316",0.0009927}, + {"\274\257",0.0010417}, + {"\326\247",0.0007224}, + {"\312\261",0.0030057}, + {"\274\322",0.0039648}, + {"\320\324",0.0011996}, + {"\273\256",0.0007059}, + {"\326\261",0.0005522}, + {"\266\250",0.0024269}, + {"\266\376",0.001247}, + {"\323\252",0.0011203}, + {"\326\330",0.0023459}, + {"\317\257",0.0004695}, + {"\274\373",0.0007272}, + {"\266\253",0.0011892}, + {"\274\376",0.0009711}, + {"\273\257",0.0023838}, + {"\267\242",0.0053412}, + {"\310\325",0.0036327}, + {"\327\250",0.0009373}, + {"\312\302",0.0018604}, + {"\274\253",0.0006288}, + {"\273\247",0.0005598}, + {"\320\316",0.0009425}, + {"\317\373",0.0006543}, + {"\320\247",0.0009217}, + {"\322\351",0.0011071}, + {"\317\330",0.0009752}, + {"\273\250",0.0005451}, + {"\312\351",0.001001}, + {"\273\330",0.0006653}, + {"\263\265",0.0010894}, + {"\312\241",0.0016366}, + {"\310\316",0.0012122}, + {"\274\303",0.0026701}, + {"\316\252",0.0054216}, + {"\273\371",0.0014197}, + {"\316\367",0.0012152}, + {"\312\246",0.00052}, + {"\317\302",0.0021357}, + {"\327\366",0.0007036}, + {"\274\344",0.0010701}, + {"\310\250",0.0009164}, + {"\327\351",0.0011894}, + {"\267\250",0.0025935}, + {"\267\376",0.0008639}, + {"\327\241",0.000485}, + {"\320\302",0.002897}, + {"\326\260",0.000867}, + {"\310\253",0.0032345}, + {"\322\345",0.0011046}, + {"\326\244",0.0007621}, + {"\316\257",0.001456}, + {"\274\260",0.0012255}, + {"\263\247",0.0012368}, + {"\314\270",0.0006043}, + {"\316\322",0.0034646}, + {"\320\304",0.0014967}, + {"\327\260",0.000643}, + {"\320\241",0.0016135}, + {"\323\303",0.002668}, + {"\325\373",0.0006271}, + {"\320\255",0.0007439}, + {"\325\376",0.002679}, + {"\266\370",0.0018881}, + {"\311\253",0.0005973}, + {"\327\345",0.0005358}, + {"\273\260",0.000621}, + {"\310\241",0.0009919}, + {"\325\371",0.0007016}, + {"\273\244",0.0005659}, + {"\274\341",0.0004694}, + {"\323\246",0.0014049}, + {"\322\346",0.0008483}, + {"\314\250",0.0008597}, + {"\322\375",0.0006632}, + {"\314\330",0.0012592}, + {"\323\260",0.000514}, + {"\312\375",0.0008388}, + {"\312\326",0.0009187}, + {"\324\252",0.002067}, + {"\263\366",0.0042527}, + {"\326\326",0.0018411}, + {"\327\305",0.0014365}, + {"\273\341",0.0051579}, + {"\263\241",0.0030636}, + {"\320\370",0.0005217}, + {"\316\304",0.0018717}, + {"\273\361",0.0004915}, + {"\316\336",0.0010303}, + {"\312\267",0.0004954}, + {"\322\342",0.0011669}, + {"\327\245",0.0004875}, + {"\320\350",0.0007022}, + {"\320\305",0.000977}, + {"\312\271",0.001449}, + {"\317\326",0.0025147}, + {"\273\375",0.0006935}, + {"\263\244",0.0025652}, + {"\311\314",0.0016298}, + {"\323\305",0.0008197}, + {"\263\314",0.0012378}, + {"\315\373",0.0005027}, + {"\315\250",0.0015692}, + {"\324\261",0.0018995}, + {"\267\305",0.0010846}, + {"\323\375",0.0009705}, + {"\316\345",0.0007467}, + {"\323\326",0.0009509}, + {"\310\375",0.0017945}, + {"\273\267",0.0006218}, + {"\310\245",0.0013444}, + {"\267\326",0.002317}, + {"\311\361",0.0005762}, + {"\314\345",0.0021551}, + {"\322\362",0.0010577}, + {"\273\271",0.0014906}, + {"\311\350",0.0022181}, + {"\326\335",0.000633}, + {"\324\302",0.0024389}, + {"\316\361",0.0018869}, + {"\261\270",0.0006344}, + {"\325\305",0.0007204}, + {"\310\267",0.0006259}, + {"\272\323",0.0005451}, + {"\314\341",0.0016334}, + {"\316\305",0.0004727}, + {"\325\346",0.0006076}, + {"\324\366",0.0014225}, + {"\325\375",0.0013077}, + {"\263\326",0.0010342}, + {"\265\367",0.0012018}, + {"\312\334",0.0008222}, + {"\317\347",0.0007924}, + {"\324\255",0.0009897}, + {"\272\316",0.0005162}, + {"\261\261",0.0015279}, + {"\317\362",0.0014073}, + {"\261\250",0.0027135}, + {"\273\362",0.0006972}, + {"\261\330",0.0006812}, + {"\317\363",0.0004946}, + {"\322\275",0.0005415}, + {"\327\334",0.0018397}, + {"\325\342",0.0043446}, + {"\312\275",0.0008493}, + {"\325\271",0.0030534}, + {"\310\347",0.0012367}, + {"\301\252",0.0009379}, + {"\267\347",0.0007326}, + {"\301\367",0.0008055}, + {"\301\242",0.0015778}, + {"\265\261",0.001657}, + {"\327\337",0.0006468}, + {"\312\320",0.0046659}, + {"\314\342",0.0013688}, + {"\265\330",0.0047688}, + {"\326\320",0.0076843}, + {"\312\333",0.0004988}, + {"\317\337",0.0005442}, + {"\265\253",0.0010253}, + {"\272\303",0.0017451}, + {"\311\347",0.0020607}, + {"\261\344",0.0007406}, + {"\315\305",0.0009523}, + {"\320\355",0.0005616}, + {"\320\313",0.0005636}, + {"\274\333",0.0010855}, + {"\265\302",0.0005846}, + {"\270\367",0.001779}, + {"\325\362",0.000663}, + {"\326\312",0.0009775}, + {"\270\256",0.0009796}, + {"\265\303",0.0019729}, + {"\310\313",0.0080773}, + {"\274\312",0.0012275}, + {"\315\254",0.0026107}, + {"\265\304",0.0341277}, + {"\323\311",0.0013801}, + {"\320\320",0.0041784}, + {"\327\312",0.0027448}, + {"\267\275",0.002853}, + {"\315\267",0.0007873}, + {"\310\317",0.0008819}, + {"\323\320",0.0077624}, + {"\312\263",0.0004878}, + {"\315\342",0.0022498}, + {"\266\340",0.0032382}, + {"\312\274",0.0004855}, + {"\311\355",0.0006168}, + {"\266\274",0.0014503}, + {"\271\262",0.0010536}, + {"\262\242",0.0012383}, + {"\270\261",0.0006302}, + {"\325\337",0.0022472}, + {"\311\275",0.0011044}, + {"\260\270",0.0005503}, + {"\274\274",0.0016091}, + {"\325\275",0.0008112}, + {"\263\311",0.0037219}, + {"\311\317",0.0048331}, + {"\260\262",0.00114}, + {"\327\274",0.0007058}, + {"\270\371",0.000545}, + {"\271\373",0.0008799}, + {"\312\251",0.0009187}, + {"\317\340",0.0010087}, + {"\271\330",0.0023261}, + {"\301\246",0.0022943}, + {"\262\316",0.0006661}, + {"\303\367",0.0014369}, + {"\271\253",0.0031331}, + {"\305\256",0.0006045}, + {"\327\356",0.0012694}, + {"\315\362",0.0020929}, + {"\270\303",0.0006501}, + {"\270\366",0.0043881}, + {"\324\362",0.0005586}, + {"\270\304",0.0018059}, + {"\317\356",0.0011181}, + {"\312\307",0.0076122}, + {"\312\365",0.0014501}, + {"\273\356",0.0011783}, + {"\321\247",0.0027139}, + {"\316\312",0.0015404}, + {"\310\374",0.0004837}, + {"\265\245",0.0008341}, + {"\312\266",0.0005749}, + {"\274\307",0.0013592}, + {"\320\251",0.0013308}, + {"\322\321",0.0015716}, + {"\322\332",0.000824}, + {"\317\353",0.0008423}, + {"\303\373",0.0014078}, + {"\274\266",0.0009423}, + {"\271\246",0.0005073}, + {"\321\371",0.0008296}, + {"\275\323",0.0007936}, + {"\326\332",0.0006362}, + {"\262\351",0.000721}, + {"\324\313",0.0009758}, + {"\325\274",0.0005246}, + {"\273\365",0.0005011}, + {"\271\244",0.0050114}, + {"\324\275",0.0004797}, + {"\323\353",0.0019506}, + {"\301\326",0.0007135}, + {"\266\310",0.0015281}, + {"\270\370",0.0007847}, + {"\310\353",0.0015621}, + {"\311\356",0.0008945}, + {"\301\254",0.0004976}, + {"\321\351",0.0005062}, + {"\270\361",0.0008735}, + {"\321\241",0.0006163}, + {"\313\265",0.0019478}, + {"\267\307",0.000531}, + {"\275\250",0.0032052}, + {"\274\315",0.0004974}, + {"\272\363",0.0021836}, + {"\313\256",0.0016446}, + {"\270\346",0.0005829}, + {"\265\347",0.001873}, + {"\275\253",0.0014281}, + {"\317\310",0.0010976}, + {"\312\306",0.0006866}, + {"\323\332",0.0026086}, + {"\272\334",0.000797}, + {"\326\306",0.0026895}, + {"\267\321",0.0009271}, + {"\322\273",0.0112731}, + {"\271\346",0.0013724}, + {"\263\307",0.0010251}, + {"\261\355",0.0013294}, + {"\271\375",0.0020606}, + {"\274\306",0.00135}, + {"\320\315",0.0006771}, + {"\326\273",0.0008284}, + {"\312\276",0.0004949}, + {"\275\366",0.0005794}, + {"\262\305",0.0006942}, + {"\326\276",0.0008129}, + {"\313\373",0.0031435}, + {"\321\370",0.0004942}, + {"\315\263",0.0011475}, + {"\300\373",0.0018856}, + {"\314\365",0.0012831}, + {"\275\255",0.0009106}, + {"\304\334",0.0022237}, + {"\272\317",0.0023691}, + {"\274\272",0.0006239}, + {"\324\274",0.000501}, + {"\313\371",0.0015791}, + {"\271\342",0.0005461}, + {"\277\252",0.0031058}, + {"\271\271",0.0007005}, + {"\303\361",0.0035945}, + {"\265\275",0.0036926}, + {"\312\300",0.0010821}, + {"\264\323",0.001703}, + {"\303\305",0.0014059}, + {"\326\301",0.0007778}, + {"\275\314",0.0013183}, + {"\317\372",0.0008187}, + {"\303\346",0.0020167}, + {"\267\264",0.0006176}, + {"\273\372",0.0023189}, + {"\313\304",0.0009759}, + {"\304\317",0.00114}, + {"\310\273",0.001088}, + {"\264\316",0.0014362}, + {"\263\243",0.0008196}, + {"\275\370",0.0032419}, + {"\275\341",0.0011242}, + {"\301\313",0.0079237}, + {"\300\255",0.0005527}, + {"\310\272",0.0005419}, + {"\275\361",0.0013712}, + {"\301\275",0.0013376}, + {"\315\365",0.0006086}, + {"\313\260",0.0007012}, + {"\276\253",0.0007159}, + {"\301\317",0.0005776}, + {"\264\253",0.0007021}, + {"\315\266",0.0011592}, + {"\314\354",0.0016483}, + {"\301\320",0.0005658}, + {"\306\344",0.0017313}, + {"\311\331",0.0009361}, + {"\316\273",0.0016007}, + {"\271\334",0.001622}, + {"\270\337",0.0025748}, + {"\311\372",0.0039844}, + {"\302\267",0.001188}, + {"\276\366",0.0011549}, + {"\324\332",0.0082045}, + {"\265\263",0.0011413}, + {"\270\311",0.0009596}, + {"\265\274",0.0011932}, + {"\277\366",0.0005979}, + {"\276\255",0.0049223}, + {"\307\351",0.0011166}, + {"\275\342",0.0011085}, + {"\270\320",0.0005274}, + {"\271\311",0.0005495}, + {"\264\246",0.0009814}, + {"\270\333",0.0005587}, + {"\316\357",0.0010483}, + {"\313\375",0.0005373}, + {"\262\337",0.0006082}, + {"\306\370",0.0005779}, + {"\307\260",0.0020531}, + {"\262\275",0.0010507}, + {"\271\333",0.0007736}, + {"\262\311",0.0006097}, + {"\324\354",0.0009483}, + {"\264\345",0.0009976}, + {"\315\306",0.0006574}, + {"\324\360",0.0006355}, + {"\307\345",0.0005405}, + {"\275\347",0.0010474}, + {"\324\264",0.0005666}, + {"\264\370",0.0006134}, + {"\313\271",0.0006023}, + {"\307\370",0.0022413}, + {"\321\317",0.0006039}, + {"\304\307",0.0007224}, + {"\324\331",0.0005426}, + {"\261\310",0.001161}, + {"\321\320",0.0009783}, + {"\324\272",0.0010515}, + {"\270\374",0.0008908}, + {"\304\277",0.0015919}, + {"\306\267",0.0023513}, + {"\276\326",0.0009665}, + {"\265\332",0.0017413}, + {"\302\355",0.0005587}, + {"\272\315",0.0067636}, + {"\315\352",0.0006563}, + {"\304\321",0.0007756}, + {"\261\243",0.0014976}, + {"\304\332",0.0016149}, + {"\315\301",0.0005437}, + {"\302\311",0.0005375}, + {"\272\243",0.0015815}, + {"\265\310",0.0021605}, + {"\261\360",0.0007577}, + {"\301\277",0.0015425}, + {"\260\374",0.0006314}, + {"\262\274",0.0005445}, + {"\275\317",0.0005458}, + {"\271\251",0.000632}, + {"\302\333",0.0007584}, + {"\261\273",0.000825}, + {"\261\276",0.0024993}, + {"\265\343",0.0013538}, + {"\304\243",0.0004864}, + {"\302\312",0.0005754}, + {"\303\263",0.0006242}, + {"\306\363",0.0027556}, + {"\300\355",0.0029849}, + {"\276\335",0.0009205}, + {"\261\352",0.0009393}, + {"\264\362",0.0005953}, + {"\300\317",0.0008237}, + {"\301\354",0.0011289}, + {"\305\251",0.001983}, + {"\264\363",0.0066078}, + {"\307\363",0.0009944}, + {"\262\277",0.0033026}, + {"\321\353",0.0004698}, + {"\306\275",0.0016647}, + {"\260\321",0.0010343}, + {"\275\374",0.0009063}, + {"\321\307",0.0006162}, + {"\265\300",0.0012275}, + {"\304\352",0.0071346}, + {"\276\337",0.0006981}, + {"\303\307",0.0030767}, + {"\321\266",0.000496}, + {"\264\313",0.0011388}, + {"\277\313",0.0005433}, + {"\303\277",0.000715}, + {"\271\343",0.0011772}, + {"\277\311",0.0018478}, + {"\270\273",0.0004872}, + {"\313\274",0.0006569}, + {"\300\340",0.0005014}, + {"\313\374",0.0005788}, + {"\260\354",0.0013224}, + {"\270\272",0.0005072}, + {"\260\264",0.0004965}, + {"\262\306",0.0005022}, + {"\300\356",0.0006669}, + {"\271\372",0.0106651}, + {"\270\357",0.0012506}, + {"\262\273",0.0063303}, + {"\260\331",0.0006978}, + {"\275\332",0.000558}, + {"\262\372",0.0043545}, + {"\276\263",0.0005699}, + {"\303\264",0.0006158}, + {"\276\374",0.0009727}, + {"\307\340",0.0005662}, + {"\303\273",0.0008714}, + {"\305\372",0.0007277}, + {"\276\251",0.0012137}, + {"\277\356",0.0005576}, + {"\275\360",0.001743}, + {"\275\273",0.0011534}, + {"\303\300",0.0013899}, + {"\300\315",0.0005726}, + {"\306\332",0.0012406}, + {"\276\277",0.0007264}, + {"\307\277",0.0013442}, + {"\300\264",0.0034731}, + {"\277\332",0.0012146}, + {"\313\276",0.0017401}, + {"\313\331",0.0005376}, + {"\276\315",0.0021619}, + {"\306\360",0.0015911}, + {"\300\372",0.0005352}, + {"\277\315",0.0004833}, + {"\300\357",0.0014032}, + {"\277\354",0.0006737}, + {"\264\264",0.0007723}, + {"\277\306",0.0014751}, + {"\277\264",0.0008716}, + {"\276\331",0.0006836}, + {"\264\372",0.0016641}, + {"\264\357",0.0012618} + }; + + static const short lookup[] = + { + 0, 1, -1, 2, 3, -1, 4, -1, 5, 6, + 7, 8, 9, 10, 11, 12, -1, -1, 13, -1, + 14, 15, -1, -1, 16, 17, 18, -1, 19, 20, + 21, 22, -1, 23, 24, 25, 26, -1, 27, -1, + 28, 29, -1, 30, -1, 31, 32, -1, 33, 34, + 35, 36, -1, 37, 38, 39, -1, -1, 40, -1, + 41, 42, -1, 43, 44, 45, -1, -1, 46, 47, + 48, 49, -1, 50, -1, 51, 52, -1, 53, -1, + 54, 55, -1, 56, -1, 57, 58, -1, 59, 60, + 61, 62, -1, -1, 63, 64, 65, -1, 66, -1, + 67, 68, -1, 69, 70, 71, 72, -1, 73, 74, + 75, 76, -1, 77, -1, 78, 79, -1, 80, -1, + 81, 82, -1, 83, 84, 85, 86, -1, 87, -1, + 88, 89, -1, 90, -1, 91, 92, -1, 93, -1, + 94, 95, -1, 96, -1, 97, 98, -1, 99, 100, + 101, 102, -1, 103, -1, 104, 105, -1, 106, -1, + 107, -1, -1, 108, -1, 109, 110, -1, 111, -1, + 112, 113, -1, 114, -1, 115, 116, -1, 117, -1, + 118, 119, -1, 120, -1, 121, -1, -1, 122, -1, + 123, 124, -1, 125, -1, 126, 127, -1, 128, -1, + 129, 130, -1, 131, -1, 132, 133, -1, 134, -1, + 135, 136, -1, 137, -1, 138, 139, -1, -1, -1, + 140, 141, -1, 142, 143, 144, 145, -1, 146, -1, + 147, 148, -1, 149, 150, 151, 152, -1, 153, 154, + 155, 156, -1, 157, -1, 158, 159, -1, 160, -1, + -1, 161, -1, 162, -1, 163, 164, -1, -1, 165, + 166, -1, -1, 167, -1, 168, 169, -1, 170, -1, + 171, 172, -1, 173, -1, 174, 175, -1, 176, -1, + 177, 178, -1, 179, -1, 180, 181, -1, 182, -1, + 183, 184, -1, 185, -1, 186, 187, -1, 188, -1, + 189, 190, -1, 191, 192, 193, 194, -1, 195, 196, + -1, 197, -1, 198, -1, 199, 200, -1, -1, -1, + 201, 202, -1, 203, 204, 205, 206, -1, 207, -1, + 208, 209, -1, 210, -1, -1, 211, -1, 212, -1, + 213, 214, -1, 215, 216, 217, 218, -1, 219, 220, + 221, 222, -1, 223, -1, 224, 225, -1, 226, -1, + 227, 228, -1, 229, 230, 231, 232, -1, 233, -1, + 234, 235, -1, 236, -1, 237, 238, -1, 239, -1, + 240, 241, -1, 242, -1, 243, 244, -1, 245, -1, + 246, 247, -1, 248, -1, 249, 250, -1, 251, -1, + 252, 253, -1, 254, -1, 255, 256, -1, 257, -1, + 258, 259, -1, -1, -1, 260, 261, -1, 262, 263, + 264, 265, -1, 266, -1, 267, 268, -1, 269, -1, + 270, 271, -1, 272, -1, 273, 274, -1, 275, 276, + 277, 278, -1, 279, -1, 280, 281, -1, 282, -1, + 283, 284, -1, 285, -1, 286, 287, -1, 288, -1, + 289, 290, -1, 291, -1, 292, 293, -1, 294, -1, + 295, 296, -1, 297, 298, 299, 300, -1, 301, 302, + 303, 304, -1, 305, -1, 306, 307, -1, 308, -1, + 309, 310, -1, 311, -1, 312, 313, -1, 314, 315, + 316, 317, -1, 318, 319, 320, 321, -1, 322, -1, + 323, 324, -1, 325, -1, 326, 327, -1, 328, -1, + 329, 330, -1, 331, -1, 332, 333, -1, 334, -1, + 335, 336, -1, 337, -1, 338, 339, -1, 340, -1, + 341, 342, -1, 343, -1, 344, 345, -1, 346, -1, + 347, 348, -1, 349, -1, 350, -1, -1, 351, -1, + 352, 353, -1, 354, -1, 355, 356, -1, 357, -1, + 358, 359, -1, 360, -1, 361, 362, -1, 363, -1, + 364, 365, -1, 366, -1, 367, -1, -1, 368, -1, + 369, 370, -1, 371, -1, 372, -1, -1, 373, -1, + 374, 375, -1, 376, -1, 377, -1, -1, 378, -1, + 379, -1, -1, 380, -1, 381, 382, -1, 383, -1, + 384, 385, -1, 386, -1, 387, 388, -1, 389, -1, + 390, -1, -1, -1, -1, 391, 392, -1, -1, -1, + 393, -1, -1, 394, -1, 395, -1, -1, 396, 397, + 398, 399, -1, 400, -1, 401, 402, -1, 403, -1, + 404, 405, -1, 406, -1, 407, 408, -1, 409, -1, + 410, 411, -1, 412, -1, 413, 414, -1, 415, -1, + 416, -1, -1, 417, -1, 418, -1, -1, 419, -1, + 420, 421, -1, 422, -1, -1, -1, -1, -1, 423, + 424, -1, -1, -1, -1, 425, 426, -1, -1, -1, + -1, 427, -1, 428, -1, -1, 429, -1, -1, -1, + 430, -1, -1, 431, -1, -1, -1, -1, -1, -1, + 432, -1, -1, 433, -1, 434, 435, -1, 436, -1, + -1, -1, -1, 437, -1, 438, 439, -1, -1, -1, + 440, 441, -1, 442, -1, 443, 444, -1, -1, -1, + 445, -1, -1, 446, -1, 447, 448, -1, 449, -1, + -1, -1, -1, 450, -1, 451, -1, -1, -1, -1, + 452, -1, -1, 453, -1, 454, -1, -1, -1, -1, + 455, 456, -1, 457, -1, 458, 459, -1, -1, -1, + -1, -1, -1, -1, -1, 460, -1, -1, 461, -1, + -1, -1, -1, 462, -1, 463, -1, -1, 464, -1, + 465, -1, -1, 466, -1, 467, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 468, 469, -1, -1, -1, + 470, -1, -1, 471, -1, -1, 472, -1, -1, -1, + 473, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 474, -1, -1, -1, 475, -1, -1, 476, -1, + 477, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 478, 479, -1, -1, -1, + -1, -1, -1, 480, -1, 481, -1, -1, -1, -1, + 482, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 483, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 484, -1, -1, -1, -1, 485, -1, -1, -1, -1, + -1, 486, -1, 487, -1, -1, -1, -1, 488, -1, + 489, -1, -1, -1, -1, 490, -1, -1, 491, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 492, -1, 493, -1, -1, -1, -1, + 494, -1, -1, 495, -1, 496, -1, -1, -1, -1, + -1, -1, -1, 497, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 498, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 499 + }; + + register int key = hash_gbk (str); + + if (key <= MAX_HASH_VALUE && key >= 0) + { + register int index = lookup[key]; + + if (index >= 0) + { + register const unsigned char *s = wordlist[index].name; + + if (*str == *s && str[1] == s[1]) + return &wordlist[index]; + } + } + return 0; +} + +/** + * is_gbk: + * @str: Pointer to a 16-bit wide character. + * + * Dosen't support GB18030 quadbyte (32-bit) characters yet + * + * Returns: One if the wide character is within GBK charset range, zero otherwise + **/ + +static int is_gbk(const unsigned char *str) +{ + unsigned char high = str[0]; + unsigned char low = str[1]; + + return high >=0x81 && high <= 0xfe + && low >= 0x40 && low <= 0xfe && low != 0x7f; +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/clean.sh b/wlx/wayland_qt_base/build/enca-1.19/data/clean.sh new file mode 100755 index 0000000..b6429e5 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/clean.sh @@ -0,0 +1,12 @@ +#! /bin/bash +for d in `ls */doit.sh | cut -d/ -f1`; do + echo '[ '$d' ]' + cd ./$d >/dev/null + test -f "xlt.c" && exit 1 + base=`ls rawcounts.* | head -n1 | cut -d. -f2` + rm -vf *.c *.pair + ls *.base *.xbase | grep -v '^'$base'\.' | xargs rm -vf + cd .. >/dev/null +done +rm -rf letters +rm *~ 2>/dev/null diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/countall.c b/wlx/wayland_qt_base/build/enca-1.19/data/countall.c new file mode 100644 index 0000000..a8597a2 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/countall.c @@ -0,0 +1,28 @@ +#include <ctype.h> +#include <stdio.h> + +#define isbinary(x) (iscntrl(x) || (x) == 127) + +#define FILL_CHARACTER '.' + +int +main(void) +{ + unsigned long int count[0x100]; + int i, c; + + for (i = 0; i < 0x100; i++) + count[i]=0; + + while ((c = getchar()) != EOF) + count[c]++; + + for (i = 0; i < 0x100; i++) { + if (count[i]) { + printf("0x%02x ", i); + printf("%c %lu\n", isbinary(i) ? '.' : i, count[i]); + } + } + + return 0; +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/countpair.c b/wlx/wayland_qt_base/build/enca-1.19/data/countpair.c new file mode 100644 index 0000000..ecdccd3 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/countpair.c @@ -0,0 +1,115 @@ +#include <stdio.h> +#include <assert.h> + +#define NO_CHR 0xffff + +#define FILL_CHARACTER '.' + +int +main(int argc, char *argv[]) +{ + unsigned int letters[0x100]; + unsigned long int count[0x10000]; + FILE *f; + + int i, killme, c, last; + unsigned long j, sum; + + /* read letters */ + for (i = 0; i < 0x100; i++) + letters[i] = 0; + + f = fopen(argv[1], "r"); + while (fscanf(f, "%lx", &j) == 1) + letters[j] = 1; + fclose(f); + + /* read stuff */ + for (i = 0; i < 0x10000; i++) + count[i] = 0; + + killme = 0; + last = FILL_CHARACTER; + do { + c = getchar(); + killme = (c == EOF); + if (c == EOF || !letters[c]) + c = FILL_CHARACTER; + count[last*0x100 + c]++; + last = c; + } while (!killme); + + /* note we put things into the same array. that's ugly. */ + sum = 0; + last = 0; + for (i = 0; i < 0x10000; i++) { + if (i/0x100 == FILL_CHARACTER && i%0x100 == FILL_CHARACTER) + count[i] = 0; + else { + assert(i >= last); + if (count[i]) { + sum += count[last++] = count[i]; + count[last++] = i; + } + } + } + + /* sort by count */ + last /= 2; + do { + killme = 1; + for (i = 1; i < last; i++) { + if (count[2*i] > count[2*i-2]) { + killme = 0; + j = count[2*i]; + count[2*i] = count[2*i-2]; + count[2*i-2] = j; + j = count[2*i+1]; + count[2*i+1] = count[2*i-1]; + count[2*i-1] = j; + } + } + } while (!killme); + + /* kill small */ + sum = 0.95*sum; + j = 0; + for (i = 0; i < last; i++) { + j += count[2*i]; + if (j > sum) + break; + } + last = i; + + /* sort by first again */ + do { + killme = 1; + for (i = 1; i < last; i++) { + /* note we sort by first letter only, so the second letters will be + * sorted by frequency, which is exactly what we want */ + if (count[2*i+1]/0x100 < count[2*i-1]/0x100) { + killme = 0; + j = count[2*i]; + count[2*i] = count[2*i-2]; + count[2*i-2] = j; + j = count[2*i+1]; + count[2*i+1] = count[2*i-1]; + count[2*i-1] = j; + } + } + } while (!killme); + + i = 0; + while (i < last) { + c = count[2*i+1]/0x100; + printf("%c:", c); + while (i < last && count[2*i+1]/0x100 == c) { + printf("%c", count[2*i+1]%0x100); + i++; + } + printf("\n"); + } + return 0; +} +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/croatian/cp1250.base b/wlx/wayland_qt_base/build/enca-1.19/data/croatian/cp1250.base new file mode 100644 index 0000000..3a8057f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/croatian/cp1250.base @@ -0,0 +1,10 @@ + 414 + 409 + 5188 + 3876 + 263 + 587 + 84 + 5403 + 6857 + 1415 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/croatian/croatian.h b/wlx/wayland_qt_base/build/enca-1.19/data/croatian/croatian.h new file mode 100644 index 0000000..7f5eda1 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/croatian/croatian.h @@ -0,0 +1,251 @@ +/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1250[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 414, 0, 0, 0, 409, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 5188, 0, 0, 0, 3876, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 263, 0, /* 0xc0 */ + 587, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 84, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 5403, 0, /* 0xe0 */ + 6857, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 1415, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO88592[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 414, 0, 0, 0, 0, 409, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 5188, 0, 0, 0, 0, 3876, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 263, 0, /* 0xc0 */ + 587, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 84, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 5403, 0, /* 0xe0 */ + 6857, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 1415, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM852[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 5403, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 263, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 6857, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 409, 3876, /* 0xa0 */ + 0, 0, 0, 0, 587, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 1415, 84, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 414, 5188, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_MACCE[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 587, 0, 6857, 263, 5403, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 84, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 414, 0, 0, 5188, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 409, 3876, 0, 0, 0, /* 0xe8 */ + 1415, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CORK[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 263, 587, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 414, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 409, 0, 0, 0, 1415, 0, /* 0x98 */ + 0, 0, 5403, 6857, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 5188, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 3876, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 84, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/totals.pl. */ +static const unsigned short int SIGNIFICANT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 263, 587, 0, 0, 5403, 0, /* 0x80 */ + 0, 587, 414, 6857, 263, 5403, 409, 263, /* 0x88 */ + 0, 0, 414, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 5597, 0, 0, 0, 5291, 6857, /* 0x98 */ + 0, 0, 5403, 6857, 0, 0, 409, 3876, /* 0xa0 */ + 0, 414, 0, 0, 587, 0, 409, 0, /* 0xa8 */ + 0, 0, 5188, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 5188, 3876, 0, 0, 0, 3876, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 526, 0, /* 0xc0 */ + 1174, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 1751, 84, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 414, 0, 0, 5188, 0, 11220, 5188, /* 0xe0 */ + 13714, 0, 0, 409, 3876, 0, 0, 0, /* 0xe8 */ + 4245, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define WEIGHT_SUM 24496 + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const char *const CHARSET_NAMES[] = { + "cp1250", + "iso88592", + "ibm852", + "macce", + "cork", +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned short int *const CHARSET_WEIGHTS[] = { + RAW_CP1250, + RAW_ISO88592, + RAW_IBM852, + RAW_MACCE, + RAW_CORK, +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_LETTERS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_PAIRS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define NCHARSETS 5 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/croatian/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/croatian/doit.sh new file mode 100755 index 0000000..0148866 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/croatian/doit.sh @@ -0,0 +1,2 @@ +#! /bin/bash +../doit.sh cp1250 iso88592 ibm852 macce cork diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/croatian/rawcounts.cp1250 b/wlx/wayland_qt_base/build/enca-1.19/data/croatian/rawcounts.cp1250 new file mode 100644 index 0000000..c29dc04 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/croatian/rawcounts.cp1250 @@ -0,0 +1,132 @@ +0x09 . 1064 +0x0a . 68883 +0x0d . 57400 +0x20 894657 +0x21 ! 949 +0x22 " 168303 +0x23 # 6193 +0x24 $ 9 +0x25 % 3365 +0x26 & 8392 +0x27 ' 6037 +0x28 ( 7156 +0x29 ) 7155 +0x2a * 97 +0x2b + 612 +0x2c , 24096 +0x2d - 17768 +0x2e . 49532 +0x2f / 66618 +0x30 0 46376 +0x31 1 27351 +0x32 2 15615 +0x33 3 15120 +0x34 4 7821 +0x35 5 14641 +0x36 6 11973 +0x37 7 4969 +0x38 8 7456 +0x39 9 8681 +0x3a : 11667 +0x3b ; 19569 +0x3c < 105533 +0x3d = 99170 +0x3e > 105497 +0x3f ? 320 +0x40 @ 1064 +0x41 A 16592 +0x42 B 2855 +0x43 C 6433 +0x44 D 6603 +0x45 E 8767 +0x46 F 4797 +0x47 G 4918 +0x48 H 12053 +0x49 I 11884 +0x4a J 3063 +0x4b K 3990 +0x4c L 3400 +0x4d M 8442 +0x4e N 6401 +0x4f O 7841 +0x50 P 5389 +0x51 Q 32 +0x52 R 6208 +0x53 S 6960 +0x54 T 12262 +0x55 U 2799 +0x56 V 4881 +0x57 W 2643 +0x58 X 119 +0x59 Y 635 +0x5a Z 2754 +0x5b [ 1622 +0x5c \ 12 +0x5d ] 1619 +0x5f _ 5472 +0x60 ` 2 +0x61 a 214383 +0x62 b 54196 +0x63 c 63051 +0x64 d 88650 +0x65 e 190883 +0x66 f 54376 +0x67 g 59484 +0x68 h 64527 +0x69 i 185352 +0x6a j 39139 +0x6b k 38520 +0x6c l 101820 +0x6d m 61337 +0x6e n 147847 +0x6f o 154035 +0x70 p 71657 +0x71 q 1879 +0x72 r 147688 +0x73 s 135786 +0x74 t 186550 +0x75 u 50856 +0x76 v 50956 +0x77 w 20924 +0x78 x 10579 +0x79 y 11887 +0x7a z 21651 +0x7b { 1364 +0x7c | 996 +0x7d } 1364 +0x7e ~ 108 +0x7f . 1 +0x80 10 +0x85 7 +0x8a 414 +0x8e 409 +0x92 5 +0x93 33 +0x94 31 +0x95 41 +0x96 39 +0x9a 5188 +0x9e 3876 +0xa0 5 +0xa9 99 +0xab 6 +0xb0 2 +0xb7 7 +0xbb 335 +0xc6 263 +0xc8 587 +0xc9 7 +0xd0 84 +0xd6 1 +0xe1 11 +0xe2 8 +0xe4 21 +0xe6 5403 +0xe8 6857 +0xe9 19 +0xf0 1415 +0xf3 1 +0xf4 1 +0xf6 23 +0xfb 2 +0xfc 40 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/czech/czech.h b/wlx/wayland_qt_base/build/enca-1.19/data/czech/czech.h new file mode 100644 index 0000000..8dcfe6a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/czech/czech.h @@ -0,0 +1,329 @@ +/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO88592[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 37, 0, 0, 0, 0, 33, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 1751, 0, 121, 0, 0, 2506, 0, /* 0xb8 */ + 0, 56, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 63, 14, 0, 0, 14, 56, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 42, 0, 34, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 4600, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 2110, 1874, 0, 0, 3563, 5975, 0, 129, /* 0xe8 */ + 0, 0, 121, 73, 0, 0, 0, 0, /* 0xf0 */ + 2421, 987, 193, 0, 0, 1618, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1250[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 37, 0, 0, 0, 33, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 1751, 0, 0, 121, 2506, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 56, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 63, 14, 0, 0, 14, 56, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 42, 0, 34, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 4600, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 2110, 1874, 0, 0, 3563, 5975, 0, 129, /* 0xe8 */ + 0, 0, 121, 73, 0, 0, 0, 0, /* 0xf0 */ + 2421, 987, 193, 0, 0, 1618, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM852[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 1874, 0, 0, 987, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 14, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 121, 0, 0, 2110, /* 0x98 */ + 4600, 5975, 73, 193, 0, 0, 33, 2506, /* 0xa0 */ + 0, 0, 0, 0, 63, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 56, 0, 14, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 129, 0, 56, 0, /* 0xd0 */ + 3563, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 121, 37, 1751, /* 0xe0 */ + 0, 34, 0, 0, 1618, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 42, 2421, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_KEYBCS2[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 63, 0, 1874, 129, 0, 0, 0, 2110, /* 0x80 */ + 3563, 14, 0, 56, 0, 0, 0, 56, /* 0x88 */ + 14, 2506, 33, 0, 0, 0, 987, 34, /* 0x90 */ + 1618, 0, 0, 37, 0, 0, 42, 121, /* 0x98 */ + 4600, 5975, 73, 193, 121, 0, 0, 0, /* 0xa0 */ + 1751, 2421, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_MACCE[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 14, 0, 0, 0, 4600, /* 0x80 */ + 0, 63, 0, 2110, 0, 0, 1874, 0, /* 0x88 */ + 0, 0, 5975, 129, 0, 0, 0, 73, /* 0x90 */ + 0, 0, 0, 0, 193, 14, 3563, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 121, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 42, 0, 0, 2421, 0, /* 0xd8 */ + 0, 37, 0, 0, 1751, 0, 0, 56, /* 0xe0 */ + 0, 121, 56, 33, 2506, 0, 0, 0, /* 0xe8 */ + 0, 0, 34, 987, 0, 0, 0, 0, /* 0xf0 */ + 0, 1618, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_KOI8CS2[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 4600, 0, 2110, 129, 3563, 0, 0, /* 0xc0 */ + 0, 5975, 987, 0, 0, 0, 121, 73, /* 0xc8 */ + 0, 0, 2421, 1751, 121, 193, 0, 1874, /* 0xd0 */ + 0, 1618, 2506, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 56, 0, 63, 0, 14, 0, 0, /* 0xe0 */ + 0, 56, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 42, 37, 0, 34, 0, 14, /* 0xf0 */ + 0, 0, 33, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CORK[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 63, 0, 14, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 42, 0, 37, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 33, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 2110, 129, 3563, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 121, 0, 0, 0, /* 0xa8 */ + 2421, 0, 1751, 0, 121, 0, 0, 987, /* 0xb0 */ + 0, 0, 2506, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 56, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 14, 0, 0, 0, 56, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 34, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 4600, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 1874, 0, 0, 0, 5975, 0, 0, /* 0xe8 */ + 0, 0, 0, 73, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 193, 0, 0, 1618, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/totals.pl. */ +static const unsigned short int SIGNIFICANT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 63, 0, 3748, 206, 0, 1001, 0, 6710, /* 0x80 */ + 3563, 77, 37, 2166, 0, 0, 1907, 56, /* 0x88 */ + 70, 2506, 6045, 129, 0, 0, 987, 107, /* 0x90 */ + 1618, 0, 1784, 37, 314, 135, 6111, 2231, /* 0x98 */ + 9200, 11950, 146, 2496, 250, 3563, 33, 2506, /* 0xa0 */ + 1751, 2458, 0, 0, 184, 0, 33, 0, /* 0xa8 */ + 2421, 0, 1751, 0, 121, 56, 0, 1001, /* 0xb0 */ + 0, 1751, 2506, 121, 0, 0, 2506, 0, /* 0xb8 */ + 0, 4768, 0, 2110, 129, 3563, 0, 0, /* 0xc0 */ + 126, 6017, 987, 121, 28, 168, 121, 73, /* 0xc8 */ + 0, 0, 2421, 1751, 250, 193, 56, 1874, /* 0xd0 */ + 3647, 1618, 2608, 42, 0, 0, 2421, 0, /* 0xd8 */ + 0, 13893, 0, 63, 1751, 135, 37, 1807, /* 0xe0 */ + 4220, 5833, 56, 33, 11250, 17925, 0, 258, /* 0xe8 */ + 0, 0, 318, 1243, 0, 34, 0, 14, /* 0xf0 */ + 4842, 3592, 612, 0, 42, 7275, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define WEIGHT_SUM 28391 + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const char *const CHARSET_NAMES[] = { + "iso88592", + "cp1250", + "ibm852", + "keybcs2", + "macce", + "koi8cs2", + "cork", +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned short int *const CHARSET_WEIGHTS[] = { + RAW_ISO88592, + RAW_CP1250, + RAW_IBM852, + RAW_KEYBCS2, + RAW_MACCE, + RAW_KOI8CS2, + RAW_CORK, +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_LETTERS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_PAIRS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define NCHARSETS 7 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/czech/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/czech/doit.sh new file mode 100755 index 0000000..675777a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/czech/doit.sh @@ -0,0 +1,2 @@ +#! /bin/bash +../doit.sh iso88592 cp1250 ibm852 keybcs2 macce koi8cs2 cork diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/czech/iso88592.base b/wlx/wayland_qt_base/build/enca-1.19/data/czech/iso88592.base new file mode 100644 index 0000000..2e3d731 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/czech/iso88592.base @@ -0,0 +1,24 @@ + 37 + 33 + 1751 + 121 + 2506 + 56 + 63 + 14 + 14 + 56 + 42 + 34 + 4600 + 2110 + 1874 + 3563 + 5975 + 129 + 121 + 73 + 2421 + 987 + 193 + 1618 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/czech/rawcounts.iso88592 b/wlx/wayland_qt_base/build/enca-1.19/data/czech/rawcounts.iso88592 new file mode 100644 index 0000000..98a5f96 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/czech/rawcounts.iso88592 @@ -0,0 +1,145 @@ +0 . 1 +9 . 10985 +10 . 103531 +13 . 58730 +26 . 1 +32 630197 +33 ! 4121 +34 " 45651 +35 # 3008 +36 $ 7335 +37 % 3333 +38 & 18354 +39 ' 1375 +40 ( 5917 +41 ) 6096 +42 * 861 +43 + 1368 +44 , 51573 +45 - 20025 +46 . 61967 +47 / 34947 +48 0 8025 +49 1 10433 +50 2 9618 +51 3 3944 +52 4 2861 +53 5 3993 +54 6 2200 +55 7 1587 +56 8 3152 +57 9 2868 +58 : 8110 +59 ; 13973 +60 < 63596 +61 = 20298 +62 > 63783 +63 ? 4122 +64 @ 826 +65 A 16166 +66 B 8906 +67 C 12677 +68 D 14161 +69 E 16863 +70 F 11052 +71 G 3352 +72 H 8249 +73 I 9666 +74 J 5505 +75 K 6443 +76 L 9938 +77 M 8137 +78 N 17291 +79 O 16564 +80 P 18540 +81 Q 539 +82 R 10637 +83 S 11158 +84 T 25912 +85 U 3555 +86 V 7465 +87 W 2075 +88 X 3295 +89 Y 1961 +90 Z 6644 +91 [ 1208 +92 \ 20922 +93 ] 1211 +94 ^ 2329 +95 _ 3763 +96 ` 671 +97 a 232801 +98 b 66059 +99 c 82150 +100 d 118219 +101 e 282628 +102 f 19550 +103 g 13861 +104 h 83282 +105 i 139675 +106 j 63988 +107 k 105864 +108 l 157438 +109 m 114582 +110 n 201060 +111 o 251724 +112 p 108757 +113 q 2256 +114 r 121671 +115 s 158686 +116 t 196170 +117 u 104891 +118 v 115575 +119 w 4028 +120 x 7694 +121 y 60666 +122 z 63135 +123 { 8174 +124 | 640 +125 } 8177 +126 ~ 4925 +132 210 +133 60 +145 2 +146 1 +147 203 +148 139 +150 460 +160 1 +168 1 +169 531 +171 51 +174 468 +180 7 +185 24527 +187 1699 +190 35094 +192 2 +193 796 +200 890 +201 198 +204 204 +205 788 +207 14 +210 25 +211 69 +216 599 +217 80 +218 486 +221 138 +225 64400 +228 8 +229 1 +232 29551 +233 26237 +236 49883 +237 83652 +239 1808 +242 1696 +243 1022 +246 14 +248 33906 +249 13822 +250 2702 +252 8 +253 22665 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/doit.sh new file mode 100755 index 0000000..025d1bd --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/doit.sh @@ -0,0 +1,79 @@ +#! /bin/bash +charsets="$@" +base=$1 +language=$(basename $(pwd)) +target=$language.h + +xlate () { + ../xlt ../maps/$1.map ../maps/$2.map +} + +# This is a recursive call. +if test -z "$base"; then + for d in `ls */doit.sh | cut -d/ -f1`; do + echo '[ '$d' ]' + cd ./$d >/dev/null + ./doit.sh + cd .. >/dev/null + done + exit 0 +fi + +# Counts +for cs in $charsets; do + echo '+'$cs... + if test "$cs" != "$base"; then + if test -s $cs.xbase; then + mv -f $cs.xbase $cs.base + else + rm -f $cs.xbase 2>/dev/null + xlate $base $cs <$base.base >$cs.base + if test ! -s $cs.base; then + echo "Cannot create $cs.base" 2>&1 + exit 1 + fi + fi + fi + ../basetoc $cs <$cs.base >$cs.c +done + +# Pairs +if test -f paircounts.$base; then + if test `echo $charsets | wc -w` -gt 8; then + echo '*** Warning: more than 8 charsets. Expect coredumps... ***' 1>&2 + fi + for cs in $charsets; do + echo '++'$cs... + if test -f paircounts.$cs; then + cp paircounts.$cs $cs.pair + else + xlate $base $cs <$base.pair >$cs.pair + fi + if test ! -s $cs.pair; then + echo "Cannot create $cs.pair" 2>&1 + exit 1 + fi + ../pairtoc $cs ../letters/$cs.letters <$cs.pair >$cs.p.c + done +fi + +# Totals +echo =totals... +../totals.pl $charsets +if test ! -s totals.c; then + echo "Cannot create totals.c" 2>&1 + exit 1 +fi + +echo '>'$target... +echo "/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/" >$target +for cs in $charsets; do + cat $cs.c >>$target + if test -s $cs.p.c; then + cat $cs.p.c >>$target + fi + echo >>$target +done +cat totals.c >>$target + +echo done. diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/estonian/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/estonian/doit.sh new file mode 100755 index 0000000..0d3be42 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/estonian/doit.sh @@ -0,0 +1,2 @@ +#! /bin/bash +../doit.sh iso88594 cp1257 ibm775 iso885913 macce baltic diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/estonian/estonian.h b/wlx/wayland_qt_base/build/enca-1.19/data/estonian/estonian.h new file mode 100644 index 0000000..0aa88bc --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/estonian/estonian.h @@ -0,0 +1,290 @@ +/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO88594[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 8, 0, 0, 0, 0, 6, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 143, 0, 0, 0, 0, 63, 0, /* 0xb8 */ + 0, 0, 0, 0, 33, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 66, 8, 0, /* 0xd0 */ + 0, 0, 0, 0, 169, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 5657, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 5588, 2041, 0, /* 0xf0 */ + 0, 0, 0, 0, 3469, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1257[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 33, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 8, 0, 0, 0, 0, 66, 8, 0, /* 0xd0 */ + 0, 0, 0, 0, 169, 0, 6, 0, /* 0xd8 */ + 0, 0, 0, 0, 5657, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 143, 0, 0, 0, 0, 5588, 2041, 0, /* 0xf0 */ + 0, 0, 0, 0, 3469, 0, 63, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM775[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 3469, 0, 0, 5657, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 33, 0, /* 0x88 */ + 0, 0, 0, 0, 2041, 0, 0, 0, /* 0x90 */ + 0, 8, 169, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 8, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 6, /* 0xc8 */ + 0, 0, 0, 0, 0, 143, 0, 0, /* 0xd0 */ + 63, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 5588, 66, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO885913[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 33, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 8, 0, 0, 0, 0, 66, 8, 0, /* 0xd0 */ + 0, 0, 0, 0, 169, 0, 6, 0, /* 0xd8 */ + 0, 0, 0, 0, 5657, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 143, 0, 0, 0, 0, 5588, 2041, 0, /* 0xf0 */ + 0, 0, 0, 0, 3469, 0, 63, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_MACCE[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 33, 0, 0, 0, 0, 8, 169, 0, /* 0x80 */ + 0, 0, 5657, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 2041, 5588, 0, 0, 0, 3469, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 66, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 8, 0, 0, 143, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 6, 63, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_BALTIC[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 33, 0, 0, 0, /* 0xc0 */ + 0, 0, 6, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 66, 8, 0, /* 0xd0 */ + 0, 8, 0, 0, 169, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 5657, 0, 0, 0, /* 0xe0 */ + 0, 0, 63, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 5588, 2041, 0, /* 0xf0 */ + 0, 143, 0, 0, 3469, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/totals.pl. */ +static const unsigned short int SIGNIFICANT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 33, 3469, 0, 0, 5657, 8, 169, 0, /* 0x80 */ + 0, 0, 5657, 0, 0, 0, 33, 0, /* 0x88 */ + 0, 0, 0, 0, 2041, 0, 0, 0, /* 0x90 */ + 0, 8, 2210, 5588, 0, 0, 0, 3469, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 8, 0, 0, 0, 0, 6, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 143, 0, 0, 0, 0, 71, 0, /* 0xb8 */ + 0, 0, 0, 0, 132, 0, 0, 0, /* 0xc0 */ + 0, 0, 6, 0, 0, 66, 0, 6, /* 0xc8 */ + 16, 0, 0, 0, 0, 407, 32, 0, /* 0xd0 */ + 63, 8, 0, 0, 676, 0, 12, 0, /* 0xd8 */ + 0, 8, 0, 0, 28359, 66, 0, 0, /* 0xe0 */ + 0, 0, 63, 6, 63, 0, 0, 0, /* 0xe8 */ + 286, 0, 0, 0, 0, 22352, 8164, 0, /* 0xf0 */ + 0, 143, 0, 0, 13876, 0, 126, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define WEIGHT_SUM 17251 + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const char *const CHARSET_NAMES[] = { + "iso88594", + "cp1257", + "ibm775", + "iso885913", + "macce", + "baltic", +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned short int *const CHARSET_WEIGHTS[] = { + RAW_ISO88594, + RAW_CP1257, + RAW_IBM775, + RAW_ISO885913, + RAW_MACCE, + RAW_BALTIC, +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_LETTERS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_PAIRS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define NCHARSETS 6 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/estonian/iso88594.base b/wlx/wayland_qt_base/build/enca-1.19/data/estonian/iso88594.base new file mode 100644 index 0000000..87597f6 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/estonian/iso88594.base @@ -0,0 +1,12 @@ + 8 + 6 + 143 + 63 + 33 + 66 + 8 + 169 + 5657 + 5588 + 2041 + 3469 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/estonian/rawcounts.iso88594 b/wlx/wayland_qt_base/build/enca-1.19/data/estonian/rawcounts.iso88594 new file mode 100644 index 0000000..111dabf --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/estonian/rawcounts.iso88594 @@ -0,0 +1,124 @@ +0x0a . 101704 +0x0d . 7 +0x20 1334193 +0x21 ! 2177 +0x22 " 17533 +0x25 % 832 +0x26 & 11 +0x27 ' 1334 +0x28 ( 10501 +0x29 ) 10624 +0x2a * 565 +0x2b + 331 +0x2c , 85292 +0x2d - 18948 +0x2e . 100508 +0x2f / 716 +0x30 0 169785 +0x31 1 44281 +0x32 2 29559 +0x33 3 26438 +0x34 4 22425 +0x35 5 20400 +0x36 6 17273 +0x37 7 17681 +0x38 8 18419 +0x39 9 18782 +0x3a : 5164 +0x3b ; 2346 +0x3c < 40 +0x3d = 337 +0x3e > 140 +0x3f ? 3146 +0x41 A 55622 +0x42 B 9615 +0x43 C 1809 +0x44 D 2405 +0x45 E 31652 +0x46 F 1343 +0x47 G 1715 +0x48 H 18081 +0x49 I 36576 +0x4a J 19318 +0x4b K 20553 +0x4c L 32238 +0x4d M 12277 +0x4e N 12901 +0x4f O 26568 +0x50 P 36233 +0x51 Q 66 +0x52 R 10882 +0x53 S 24542 +0x54 T 26820 +0x55 U 24735 +0x56 V 11727 +0x57 W 650 +0x58 X 755 +0x59 Y 95 +0x5a Z 301 +0x5b [ 382 +0x5c \ 78298 +0x5d ] 384 +0x5e ^ 69 +0x5f _ 12 +0x60 ` 5 +0x61 a 777170 +0x62 b 51279 +0x63 c 3210 +0x64 d 256862 +0x65 e 692708 +0x66 f 9387 +0x67 g 122120 +0x68 h 107507 +0x69 i 633030 +0x6a j 110740 +0x6b k 309980 +0x6c l 389040 +0x6d m 227336 +0x6e n 303206 +0x6f o 256811 +0x70 p 114781 +0x71 q 99 +0x72 r 205604 +0x73 s 583476 +0x74 t 640147 +0x75 u 379398 +0x76 v 148222 +0x77 w 744 +0x78 x 451 +0x79 y 1119 +0x7a z 1144 +0x7b { 37 +0x7c | 84 +0x7d } 37 +0x7e ~ 14 +0xa0 2 +0xa1 7 +0xa7 279 +0xa8 98 +0xa9 122 +0xab 14 +0xae 92 +0xb0 254 +0xb9 2006 +0xbe 889 +0xc1 2 +0xc4 474 +0xd5 925 +0xd6 122 +0xd8 9 +0xdc 2366 +0xdf 9 +0xe1 45 +0xe3 1 +0xe4 79207 +0xe5 15 +0xe9 84 +0xeb 1 +0xec 3 +0xf5 78242 +0xf6 28582 +0xf8 2 +0xf9 1 +0xfa 23 +0xfc 48577 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/extreme.pl b/wlx/wayland_qt_base/build/enca-1.19/data/extreme.pl new file mode 100755 index 0000000..1549dc9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/extreme.pl @@ -0,0 +1,61 @@ +#!/usr/bin/perl +use warnings; +use strict; + +my @w1 = ( 0 ) x 0x100; +my @w2 = ( 0 ) x 0x100; +my $m; + +open FH, "<".$ARGV[0]; +while (<FH>) { + my $ch = substr $_,0,1; + my $count = substr $_,2; + $w1[ord $ch] = $count; +} +close FH; + +open FH, "<".$ARGV[1]; +while (<FH>) { + my $ch = substr $_,0,1; + my $count = substr $_,2; + $w2[ord $ch] = $count; +} +close FH; + +for (my $i = 0; $i < 0x100; $i++) { + my $x = $w1[$i]; + $w1[$i] -= 4*$w2[$i]; + $w2[$i] -= 4*$x; +} + +$m = 1; +while ($m > 0) { + my $j = 0; + for (my $i = 1; $i < 0x100; $i++) { + if ($w1[$i] > $w1[$j]) { + $j = $i; + } + } + $m = $w1[$j]; + if ($m > 0) { + printf '0x%02x, (%u)'."\n", $j, $m; + $w1[$j] = -1; + } +} + +print "\n"; + +$m = 1; +while ($m > 0) { + my $j = 0; + for (my $i = 1; $i < 0x100; $i++) { + if ($w2[$i] > $w2[$j]) { + $j = $i; + } + } + $m = $w2[$j]; + if ($m > 0) { + printf '0x%02x, (%u)'."\n", $j, $m; + $w2[$j] = -1; + } +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/findletters.c b/wlx/wayland_qt_base/build/enca-1.19/data/findletters.c new file mode 100644 index 0000000..dcc03d5 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/findletters.c @@ -0,0 +1,28 @@ +#include <stdio.h> + +int +main(int argc, char *argv[]) +{ + unsigned int map[0x100]; + unsigned int letter_map[0x10000]; + unsigned int i; + FILE *f; + + f = fopen(argv[1], "r"); + for (i = 0; i < 0x100; i++) + fscanf(f, "%x", map + i); + fclose(f); + + for (i = 0; i < 0x10000; i++) + letter_map[i] = 0; + + while (scanf("%x", &i) == 1) + letter_map[i] = 1; + + for (i = 0; i < 0x100; i++) { + if (letter_map[map[i]]) + printf("%02x\n", i); + } + + return 0; +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/hungarian/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/hungarian/doit.sh new file mode 100755 index 0000000..44bb238 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/hungarian/doit.sh @@ -0,0 +1,2 @@ +#! /bin/bash +../doit.sh iso88592 cp1250 ibm852 macce cork diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/hungarian/hungarian.h b/wlx/wayland_qt_base/build/enca-1.19/data/hungarian/hungarian.h new file mode 100644 index 0000000..a3dac9e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/hungarian/hungarian.h @@ -0,0 +1,251 @@ +/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO88592[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 65, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 162, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 28, 49, 0, /* 0xd0 */ + 0, 0, 35, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 5950, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 5523, 0, 0, 0, 846, 0, 0, /* 0xe8 */ + 0, 0, 0, 1611, 0, 1444, 2019, 0, /* 0xf0 */ + 0, 0, 612, 316, 1016, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1250[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 65, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 162, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 28, 49, 0, /* 0xd0 */ + 0, 0, 35, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 5950, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 5523, 0, 0, 0, 846, 0, 0, /* 0xe8 */ + 0, 0, 0, 1611, 0, 1444, 2019, 0, /* 0xf0 */ + 0, 0, 612, 316, 1016, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM852[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 1016, 5523, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 28, 1444, 0, 0, 0, 0, /* 0x88 */ + 162, 0, 0, 0, 2019, 0, 0, 0, /* 0x90 */ + 0, 49, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 5950, 846, 1611, 612, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 65, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 35, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 316, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_MACCE[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 162, 0, 49, 0, 5950, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 5523, 0, /* 0x88 */ + 0, 0, 846, 0, 0, 0, 0, 1611, /* 0x90 */ + 0, 0, 2019, 0, 612, 0, 0, 1016, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 28, 0, 1444, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 65, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 35, 0, 0, 316, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CORK[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 28, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 1444, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 316, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 65, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 162, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 49, 0, /* 0xd0 */ + 0, 0, 35, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 5950, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 5523, 0, 0, 0, 846, 0, 0, /* 0xe8 */ + 0, 0, 0, 1611, 0, 0, 2019, 0, /* 0xf0 */ + 0, 0, 612, 0, 1016, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/totals.pl. */ +static const unsigned short int SIGNIFICANT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 1016, 5523, 162, 0, 49, 0, 5950, /* 0x80 */ + 0, 0, 28, 1444, 0, 0, 5551, 0, /* 0x88 */ + 162, 0, 846, 0, 2019, 0, 0, 1611, /* 0x90 */ + 0, 49, 2019, 0, 612, 0, 0, 1016, /* 0x98 */ + 5950, 846, 1611, 612, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 1444, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 65, 316, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 195, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 486, 0, 0, 28, 0, 1444, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 56, 147, 0, /* 0xd0 */ + 0, 0, 105, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 17850, 0, 0, 0, 0, 0, 65, /* 0xe0 */ + 0, 16604, 0, 0, 0, 2538, 0, 0, /* 0xe8 */ + 0, 0, 35, 4833, 0, 3204, 6057, 0, /* 0xf0 */ + 0, 0, 1836, 948, 3048, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define WEIGHT_SUM 19676 + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const char *const CHARSET_NAMES[] = { + "iso88592", + "cp1250", + "ibm852", + "macce", + "cork", +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned short int *const CHARSET_WEIGHTS[] = { + RAW_ISO88592, + RAW_CP1250, + RAW_IBM852, + RAW_MACCE, + RAW_CORK, +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_LETTERS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_PAIRS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define NCHARSETS 5 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/hungarian/iso88592.base b/wlx/wayland_qt_base/build/enca-1.19/data/hungarian/iso88592.base new file mode 100644 index 0000000..0174f3b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/hungarian/iso88592.base @@ -0,0 +1,14 @@ + 65 + 162 + 28 + 49 + 35 + 5950 + 5523 + 846 + 1611 + 1444 + 2019 + 612 + 316 + 1016 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/hungarian/rawcounts.iso88592 b/wlx/wayland_qt_base/build/enca-1.19/data/hungarian/rawcounts.iso88592 new file mode 100644 index 0000000..f2bb5f5 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/hungarian/rawcounts.iso88592 @@ -0,0 +1,138 @@ +0x09 . 4259 +0x0a . 424091 +0x0d . 357722 +0x20 3312405 +0x21 ! 28722 +0x22 " 130280 +0x23 # 4206 +0x24 $ 41 +0x25 % 4109 +0x26 & 28289 +0x27 ' 6398 +0x28 ( 9708 +0x29 ) 9705 +0x2a * 13163 +0x2b + 987 +0x2c , 335888 +0x2d - 143835 +0x2e . 285910 +0x2f / 122087 +0x30 0 16006 +0x31 1 17466 +0x32 2 8955 +0x33 3 6705 +0x34 4 4718 +0x35 5 5968 +0x36 6 5166 +0x37 7 3430 +0x38 8 4290 +0x39 9 8686 +0x3a : 29238 +0x3b ; 32865 +0x3c < 217476 +0x3d = 79964 +0x3e > 217474 +0x3f ? 28446 +0x40 @ 610 +0x41 A 119037 +0x42 B 33861 +0x43 C 15415 +0x44 D 19499 +0x45 E 53282 +0x46 F 67626 +0x47 G 50023 +0x48 H 29654 +0x49 I 105063 +0x4a J 45167 +0x4b K 28669 +0x4c L 58733 +0x4d M 48771 +0x4e N 88841 +0x4f O 32042 +0x50 P 90618 +0x51 Q 214 +0x52 R 35177 +0x53 S 71533 +0x54 T 86970 +0x55 U 43264 +0x56 V 16670 +0x57 W 4569 +0x58 X 1224 +0x59 Y 39413 +0x5a Z 7878 +0x5b [ 1671 +0x5c \ 10547 +0x5d ] 1564 +0x5e ^ 117 +0x5f _ 2981 +0x60 ` 3228 +0x61 a 1410682 +0x62 b 331421 +0x63 c 154141 +0x64 d 385489 +0x65 e 1612974 +0x66 f 174673 +0x67 g 570412 +0x68 h 293360 +0x69 i 680341 +0x6a j 185178 +0x6b k 719497 +0x6c l 968873 +0x6d m 596519 +0x6e n 987701 +0x6f o 714336 +0x70 p 192957 +0x71 q 1247 +0x72 r 699815 +0x73 s 914329 +0x74 t 1362466 +0x75 u 200931 +0x76 v 287574 +0x77 w 17822 +0x78 x 3800 +0x79 y 366028 +0x7a z 593471 +0x7b { 306 +0x7c | 856 +0x7d } 307 +0xb0 6 +0xb4 2 +0xb7 3 +0xbc 1 +0xc0 1 +0xc1 5332 +0xc4 5 +0xc5 6 +0xc9 13303 +0xcd 1690 +0xd0 2 +0xd3 2042 +0xd4 84 +0xd5 2335 +0xd6 4034 +0xda 2893 +0xdb 162 +0xdc 924 +0xdf 2 +0xe0 9 +0xe1 487916 +0xe3 7 +0xe4 515 +0xe5 12 +0xe6 1 +0xe7 1 +0xe8 12 +0xe9 452955 +0xeb 8 +0xed 69428 +0xee 8 +0xf0 2 +0xf2 1 +0xf3 132151 +0xf4 1394 +0xf5 118426 +0xf6 165573 +0xfa 50232 +0xfb 25978 +0xfc 83366 +0xfd 1 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/latvian/cp1257.base b/wlx/wayland_qt_base/build/enca-1.19/data/latvian/cp1257.base new file mode 100644 index 0000000..c58ea1c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/latvian/cp1257.base @@ -0,0 +1,24 @@ + 0 + 172 + 11 + 14 + 6 + 2 + 68 + 22 + 6 + 102 + 3 + 11 + 6 + 5926 + 3448 + 145 + 69 + 567 + 3465 + 837 + 2015 + 1786 + 1363 + 382 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/latvian/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/latvian/doit.sh new file mode 100755 index 0000000..6212207 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/latvian/doit.sh @@ -0,0 +1,2 @@ +#! /bin/bash +../doit.sh cp1257 iso88594 ibm775 iso885913 macce baltic diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/latvian/latvian.h b/wlx/wayland_qt_base/build/enca-1.19/data/latvian/latvian.h new file mode 100644 index 0000000..00afee1 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/latvian/latvian.h @@ -0,0 +1,290 @@ +/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1257[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 172, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 11, 0, 0, 0, 0, 14, /* 0xc0 */ + 6, 0, 0, 0, 2, 68, 22, 6, /* 0xc8 */ + 102, 0, 3, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 11, 0, 0, 6, 0, /* 0xd8 */ + 0, 0, 5926, 0, 0, 0, 0, 3448, /* 0xe0 */ + 145, 0, 0, 0, 69, 567, 3465, 837, /* 0xe8 */ + 2015, 0, 1786, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 1363, 0, 0, 382, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO88594[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 6, 0, /* 0xa0 */ + 0, 102, 14, 2, 0, 0, 6, 0, /* 0xa8 */ + 0, 0, 0, 172, 0, 0, 837, 0, /* 0xb0 */ + 0, 2015, 3448, 69, 0, 0, 382, 0, /* 0xb8 */ + 11, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 6, 0, 0, 0, 0, 0, 0, 22, /* 0xc8 */ + 0, 3, 0, 68, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 11, 0, /* 0xd8 */ + 5926, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 145, 0, 0, 0, 0, 0, 0, 3465, /* 0xe8 */ + 0, 1786, 0, 567, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 1363, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM775[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 5926, 0, 69, 0, 0, /* 0x80 */ + 0, 3448, 0, 172, 3465, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 2, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 11, 22, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 6, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 102, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 11, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 6, /* 0xc8 */ + 0, 145, 0, 0, 0, 2015, 0, 1363, /* 0xd0 */ + 382, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 68, 567, 6, 837, 1786, 14, 3, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO885913[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 172, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 11, 0, 0, 0, 0, 14, /* 0xc0 */ + 6, 0, 0, 0, 2, 68, 22, 6, /* 0xc8 */ + 102, 0, 3, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 11, 0, 0, 6, 0, /* 0xd8 */ + 0, 0, 5926, 0, 0, 0, 0, 3448, /* 0xe0 */ + 145, 0, 0, 0, 69, 567, 3465, 837, /* 0xe8 */ + 2015, 0, 1786, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 1363, 0, 0, 382, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_MACCE[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 11, 5926, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 6, 0, 145, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 14, 3448, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 69, 0, /* 0xa8 */ + 0, 22, 0, 0, 3465, 68, 0, 0, /* 0xb0 */ + 0, 6, 837, 0, 0, 0, 0, 3, /* 0xb8 */ + 1786, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 172, 102, 0, 0, 2015, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 6, 382, 11, 0, 0, /* 0xe8 */ + 1363, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 567, 0, 0, 0, 2, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_BALTIC[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 172, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 11, 0, 0, 0, 0, 6, /* 0xc0 */ + 2, 0, 6, 0, 14, 68, 22, 6, /* 0xc8 */ + 0, 3, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 102, 0, 11, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 5926, 0, 0, 0, 0, 145, /* 0xe0 */ + 69, 0, 382, 0, 3448, 567, 3465, 837, /* 0xe8 */ + 0, 1786, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 2015, 0, 1363, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/totals.pl. */ +static const unsigned short int SIGNIFICANT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 11, 5926, 5926, 0, 69, 0, 0, /* 0x80 */ + 0, 3454, 0, 317, 3465, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 14, 3450, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 11, 22, 0, 0, 0, 0, 6, 0, /* 0xa0 */ + 0, 102, 14, 2, 0, 0, 75, 0, /* 0xa8 */ + 0, 22, 0, 172, 3465, 68, 843, 0, /* 0xb0 */ + 0, 2021, 4801, 69, 0, 0, 484, 3, /* 0xb8 */ + 1797, 0, 33, 0, 0, 0, 0, 45, /* 0xc0 */ + 20, 0, 6, 0, 18, 204, 66, 46, /* 0xc8 */ + 204, 151, 6, 68, 0, 2015, 0, 1363, /* 0xd0 */ + 382, 102, 0, 33, 0, 0, 23, 0, /* 0xd8 */ + 6098, 102, 17778, 0, 2015, 0, 0, 7041, /* 0xe0 */ + 572, 567, 388, 843, 5754, 1726, 10398, 5976, /* 0xe8 */ + 5393, 3572, 3572, 567, 0, 0, 0, 0, /* 0xf0 */ + 0, 2015, 567, 4089, 0, 0, 2129, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define WEIGHT_SUM 20426 + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const char *const CHARSET_NAMES[] = { + "cp1257", + "iso88594", + "ibm775", + "iso885913", + "macce", + "baltic", +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned short int *const CHARSET_WEIGHTS[] = { + RAW_CP1257, + RAW_ISO88594, + RAW_IBM775, + RAW_ISO885913, + RAW_MACCE, + RAW_BALTIC, +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_LETTERS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_PAIRS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define NCHARSETS 6 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/latvian/rawcounts.cp1257 b/wlx/wayland_qt_base/build/enca-1.19/data/latvian/rawcounts.cp1257 new file mode 100644 index 0000000..abe6c47 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/latvian/rawcounts.cp1257 @@ -0,0 +1,135 @@ +0x0a . 235594 +0x0d . 235594 +0x20 1423855 +0x21 ! 14157 +0x22 " 121452 +0x23 # 187 +0x24 $ 5 +0x26 & 52551 +0x27 ' 2327 +0x28 ( 2773 +0x29 ) 2763 +0x2a * 11 +0x2c , 159841 +0x2d - 21373 +0x2e . 183461 +0x2f / 103464 +0x30 0 29899 +0x31 1 43929 +0x32 2 19586 +0x33 3 18012 +0x34 4 14107 +0x35 5 19726 +0x36 6 8862 +0x37 7 12295 +0x38 8 7951 +0x39 9 7225 +0x3a : 21065 +0x3b ; 62595 +0x3c < 175588 +0x3d = 64224 +0x3e > 175585 +0x3f ? 9162 +0x41 A 56757 +0x42 B 15432 +0x43 C 10738 +0x44 D 7072 +0x45 E 13186 +0x46 F 34719 +0x47 G 39530 +0x48 H 1273 +0x49 I 85520 +0x4a J 44835 +0x4b K 18248 +0x4c L 49113 +0x4d M 12644 +0x4e N 53199 +0x4f O 5117 +0x50 P 20362 +0x51 Q 2 +0x52 R 10308 +0x53 S 44983 +0x54 T 58425 +0x55 U 40095 +0x56 V 21246 +0x57 W 140 +0x58 X 93 +0x59 Y 33561 +0x5a Z 5783 +0x5b [ 936 +0x5c \ 1 +0x5d ] 995 +0x5e ^ 3 +0x5f _ 22 +0x60 ` 166 +0x61 a 831468 +0x62 b 143524 +0x63 c 92116 +0x64 d 224342 +0x65 e 459547 +0x66 f 20485 +0x67 g 125071 +0x68 h 41130 +0x69 i 706112 +0x6a j 161999 +0x6b k 259212 +0x6c l 244492 +0x6d m 229237 +0x6e n 369783 +0x6f o 278841 +0x70 p 284281 +0x71 q 54002 +0x72 r 330016 +0x73 s 549690 +0x74 t 535852 +0x75 u 504938 +0x76 v 199418 +0x77 w 7541 +0x78 x 3727 +0x79 y 32042 +0x7a z 158390 +0x7b { 2 +0x7d } 2 +0x7e ~ 3 +0x84 31 +0x91 5 +0x92 11 +0x93 2 +0x94 2 +0x96 1 +0x97 103 +0xaa 5 +0xab 375 +0xb0 4 +0xb1 1 +0xba 6716 +0xbb 353 +0xc2 437 +0xc7 573 +0xc8 235 +0xcc 91 +0xcd 2654 +0xce 869 +0xcf 262 +0xd0 4009 +0xd2 137 +0xdb 455 +0xdc 5 +0xde 257 +0xe2 231142 +0xe4 244 +0xe7 134494 +0xe8 5670 +0xec 2700 +0xed 22126 +0xee 135172 +0xef 32650 +0xf0 78617 +0xf2 69673 +0xf3 6 +0xf4 49 +0xf6 13 +0xfa 1 +0xfb 53176 +0xfc 19 +0xfe 14904 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/lithuanian/cp1257.base b/wlx/wayland_qt_base/build/enca-1.19/data/lithuanian/cp1257.base new file mode 100644 index 0000000..fdca20e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/lithuanian/cp1257.base @@ -0,0 +1,18 @@ + 4 + 51 + 1 + 40 + 9 + 313 + 3 + 4 + 188 + 2811 + 2122 + 866 + 1527 + 5758 + 5069 + 3943 + 1589 + 3408 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/lithuanian/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/lithuanian/doit.sh new file mode 100755 index 0000000..6212207 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/lithuanian/doit.sh @@ -0,0 +1,2 @@ +#! /bin/bash +../doit.sh cp1257 iso88594 ibm775 iso885913 macce baltic diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/lithuanian/lithuanian.h b/wlx/wayland_qt_base/build/enca-1.19/data/lithuanian/lithuanian.h new file mode 100644 index 0000000..3e5958f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/lithuanian/lithuanian.h @@ -0,0 +1,290 @@ +/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1257[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 4, 51, 0, 0, 0, 0, 1, 0, /* 0xc0 */ + 40, 0, 0, 9, 0, 0, 0, 0, /* 0xc8 */ + 313, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 3, 0, 0, 4, 0, 0, 188, 0, /* 0xd8 */ + 2811, 2122, 0, 0, 0, 0, 866, 0, /* 0xe0 */ + 1527, 0, 0, 5758, 0, 0, 0, 0, /* 0xe8 */ + 5069, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 3943, 0, 0, 1589, 0, 0, 3408, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO88594[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 4, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 313, 0, 0, 0, 0, 188, 0, /* 0xa8 */ + 0, 2811, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 5069, 0, 0, 0, 0, 3408, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 51, /* 0xc0 */ + 40, 0, 1, 0, 9, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 3, 0, 0, 0, 0, 4, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 2122, /* 0xe0 */ + 1527, 0, 866, 0, 5758, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 3943, 0, 0, 0, 0, 1589, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM775[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 4, 40, 1, /* 0xb0 */ + 9, 0, 0, 0, 0, 51, 313, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 3, 4, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 188, /* 0xc8 */ + 2811, 1527, 866, 5758, 2122, 5069, 3943, 1589, /* 0xd0 */ + 3408, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO885913[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 4, 51, 0, 0, 0, 0, 1, 0, /* 0xc0 */ + 40, 0, 0, 9, 0, 0, 0, 0, /* 0xc8 */ + 313, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 3, 0, 0, 4, 0, 0, 188, 0, /* 0xd8 */ + 2811, 2122, 0, 0, 0, 0, 866, 0, /* 0xe0 */ + 1527, 0, 0, 5758, 0, 0, 0, 0, /* 0xe8 */ + 5069, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 3943, 0, 0, 1589, 0, 0, 3408, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_MACCE[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 4, 0, 0, 0, /* 0x80 */ + 2811, 40, 0, 1527, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 9, 0, /* 0x90 */ + 5758, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 1, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 866, 0, 0, 0, 51, /* 0xa8 */ + 2122, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 313, 0, 0, 5069, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 188, 3408, 4, 0, 0, /* 0xe8 */ + 1589, 0, 0, 0, 0, 0, 3, 3943, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_BALTIC[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 51, 9, 0, 0, 0, 0, 4, 40, /* 0xc0 */ + 0, 0, 188, 1, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 3, 313, 0, 4, 0, 0, 0, 0, /* 0xd8 */ + 2122, 5758, 0, 0, 0, 0, 2811, 1527, /* 0xe0 */ + 0, 0, 3408, 866, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 3943, 5069, 0, 1589, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/totals.pl. */ +static const unsigned short int SIGNIFICANT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 4, 0, 0, 0, /* 0x80 */ + 2811, 40, 0, 1527, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 9, 0, /* 0x90 */ + 5758, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 4, 1, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 313, 0, 866, 0, 0, 188, 51, /* 0xa8 */ + 2122, 2811, 0, 0, 0, 4, 40, 1, /* 0xb0 */ + 9, 5069, 0, 0, 0, 51, 3721, 0, /* 0xb8 */ + 59, 111, 0, 0, 0, 0, 9, 95, /* 0xc0 */ + 120, 0, 189, 19, 9, 0, 0, 188, /* 0xc8 */ + 3437, 1527, 866, 5758, 2122, 5069, 3943, 1589, /* 0xd0 */ + 3417, 316, 0, 12, 0, 0, 380, 0, /* 0xd8 */ + 7744, 10315, 0, 0, 5069, 0, 4543, 3649, /* 0xe0 */ + 4581, 0, 4274, 12570, 9166, 4, 0, 0, /* 0xe8 */ + 11727, 0, 0, 0, 0, 0, 3, 3943, /* 0xf0 */ + 11829, 9012, 0, 4767, 0, 0, 8405, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define WEIGHT_SUM 27706 + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const char *const CHARSET_NAMES[] = { + "cp1257", + "iso88594", + "ibm775", + "iso885913", + "macce", + "baltic", +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned short int *const CHARSET_WEIGHTS[] = { + RAW_CP1257, + RAW_ISO88594, + RAW_IBM775, + RAW_ISO885913, + RAW_MACCE, + RAW_BALTIC, +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_LETTERS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_PAIRS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define NCHARSETS 6 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/lithuanian/rawcounts.cp1257 b/wlx/wayland_qt_base/build/enca-1.19/data/lithuanian/rawcounts.cp1257 new file mode 100644 index 0000000..ee8c6ee --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/lithuanian/rawcounts.cp1257 @@ -0,0 +1,159 @@ +0x09 . 1328 +0x0a . 152685 +0x0d . 107720 +0x1a . 24 +0x20 1020861 +0x21 ! 5749 +0x22 " 131851 +0x23 # 7890 +0x24 $ 22 +0x25 % 1826 +0x26 & 6757 +0x27 ' 10760 +0x28 ( 11998 +0x29 ) 12635 +0x2a * 631 +0x2b + 1522 +0x2c , 96883 +0x2d - 39106 +0x2e . 127804 +0x2f / 101676 +0x30 0 33314 +0x31 1 31160 +0x32 2 16831 +0x33 3 9365 +0x34 4 8756 +0x35 5 8651 +0x36 6 8443 +0x37 7 6413 +0x38 8 8827 +0x39 9 14392 +0x3a : 26488 +0x3b ; 16102 +0x3c < 167265 +0x3d = 76259 +0x3e > 167294 +0x3f ? 5807 +0x40 @ 1243 +0x41 A 69973 +0x42 B 55280 +0x43 C 26400 +0x44 D 25020 +0x45 E 58596 +0x46 F 37804 +0x47 G 16759 +0x48 H 27108 +0x49 I 36408 +0x4a J 11072 +0x4b K 15927 +0x4c L 32566 +0x4d M 24352 +0x4e N 43325 +0x4f O 38790 +0x50 P 44699 +0x51 Q 2170 +0x52 R 59000 +0x53 S 25829 +0x54 T 67203 +0x55 U 7073 +0x56 V 15773 +0x57 W 5272 +0x58 X 1242 +0x59 Y 3193 +0x5a Z 5783 +0x5b [ 1121 +0x5c \ 33 +0x5d ] 1116 +0x5e ^ 3 +0x5f _ 2609 +0x60 ` 199 +0x61 a 617115 +0x62 b 76042 +0x63 c 48117 +0x64 d 156585 +0x65 e 349522 +0x66 f 25720 +0x67 g 114402 +0x68 h 63004 +0x69 i 693366 +0x6a j 88962 +0x6b k 201424 +0x6c l 196548 +0x6d m 182455 +0x6e n 297448 +0x6f o 313693 +0x70 p 162933 +0x71 q 1523 +0x72 r 304308 +0x73 s 419987 +0x74 t 387088 +0x75 u 235015 +0x76 v 108785 +0x77 w 25935 +0x78 x 8595 +0x79 y 77733 +0x7a z 16855 +0x7b { 1796 +0x7c | 198 +0x7d } 1796 +0x7e ~ 249 +0x84 297 +0x85 1053 +0x91 3 +0x92 100 +0x93 727 +0x94 601 +0x96 980 +0x97 187 +0x99 3 +0xa0 12 +0xa2 1 +0xa9 10 +0xab 4 +0xb1 5 +0xb7 65 +0xb8 1 +0xbb 5 +0xbc 6 +0xbf 1 +0xc0 56 +0xc1 612 +0xc2 4 +0xc6 12 +0xc8 491 +0xc9 1 +0xca 1 +0xcb 118 +0xd0 3758 +0xd3 1 +0xd8 41 +0xd9 6 +0xdb 54 +0xdc 2 +0xdd 1 +0xde 2261 +0xdf 22 +0xe0 33735 +0xe1 25474 +0xe2 25 +0xe4 31 +0xe5 1 +0xe6 10398 +0xe7 7 +0xe8 18326 +0xe9 30 +0xea 12 +0xeb 69107 +0xec 5 +0xed 4 +0xf0 60828 +0xf1 8 +0xf3 9 +0xf6 22 +0xf7 7 +0xf8 47318 +0xf9 7 +0xfb 19071 +0xfc 46 +0xfd 8 +0xfe 40901 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/makepaircounts.sh b/wlx/wayland_qt_base/build/enca-1.19/data/makepaircounts.sh new file mode 100755 index 0000000..d012b0b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/makepaircounts.sh @@ -0,0 +1,24 @@ +#! /bin/bash +textdir=/none/tmp/texts +maps=maps +letters=letters +subdirs="belarusian bulgarian russian ukrainian" + +dir="$1" +test -n "$dir" || dir="$subdirs" + +for d in $dir; do + c=`ls $d/rawcounts.* | head -n1 | cut -d. -f2` + echo '[ '$d / $c' ]' + cat $textdir/$d/* | ./countpair $letters/$c.letters \ + >$d/paircounts.$c + if test "$d" = "belarusian"; then + c2=ibm866 + echo '[ '$d / $c2' ]' + cat $textdir/$d/* | ./xlt $maps/$c.map $maps/$c2-bad.map \ + | ./countpair $letters/$c2-bad.letters \ + >$d/paircounts.$c2 + fi +done + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/map2letters.sh b/wlx/wayland_qt_base/build/enca-1.19/data/map2letters.sh new file mode 100755 index 0000000..c28dfe4 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/map2letters.sh @@ -0,0 +1,7 @@ +#! /bin/bash +test -d letters || mkdir letters +for f in maps/*.map; do + cs=`basename $f .map` + echo $cs + ./findletters $f <Letters >letters/$cs.letters +done diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/baltic.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/baltic.map new file mode 100644 index 0000000..deca281 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/baltic.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0080 +0081 +0082 +0083 +0084 +0085 +0086 +0087 +0088 +0089 +008a +008b +008c +008d +008e +008f +0090 +0091 +0092 +0093 +0094 +0095 +0096 +0097 +0098 +0099 +009a +009b +009c +009d +009e +009f +00a0 +201d +00a2 +00a3 +00a4 +00a5 +00a6 +00a7 +00d8 +00a9 +201e +00ab +00ac +00ad +00ae +00c6 +00b0 +00b1 +00b2 +00b3 +00b4 +00b5 +00b6 +00b7 +00f8 +00b9 +201c +00bb +00bc +00bd +00be +00e6 +012e +0116 +0100 +0106 +00c4 +00c5 +0104 +010c +0122 +00c9 +017d +0118 +0112 +0136 +012a +013b +0141 +0145 +0143 +00d3 +014c +00d5 +00d6 +00d7 +0172 +0160 +015a +016a +00dc +017b +0179 +00df +012f +0117 +0101 +0107 +00e4 +00e5 +0105 +010d +0123 +00e9 +017e +0119 +0113 +0137 +012b +013c +0142 +0146 +0144 +00f3 +014d +00f5 +00f6 +00f7 +0173 +0161 +015b +016b +00fc +017c +017a +0138 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/cork.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/cork.map new file mode 100644 index 0000000..a700405 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/cork.map @@ -0,0 +1,256 @@ +0060 +00b4 +005e +007e +00a8 +02dd +02da +02c7 +02d8 +0009 +000a +00b8 +02db +000d +2039 +203a +201c +201d +201e +00ab +00bb +2013 +2014 +2080 +0131 +002e +fb00 +fb01 +fb02 +fb00 +0069 +fb00 +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +2010 +0102 +0104 +0106 +010c +010e +011a +0118 +011e +0139 +013d +0141 +0143 +0147 +014a +0150 +0154 +0158 +015a +0160 +015e +0164 +0162 +0170 +016e +0178 +0179 +017d +017b +0132 +0130 +0111 +00a7 +0103 +0105 +0107 +010d +010f +011b +0119 +011f +013a +013e +0142 +0144 +0148 +014b +0151 +0155 +0159 +015b +0161 +015f +0165 +0163 +0171 +016f +00ff +017a +017e +017c +0133 +00a1 +00bf +00a3 +00c0 +00c1 +00c2 +00c3 +00c4 +00c5 +00c6 +00c7 +00c8 +00c9 +00ca +00cb +00cc +00cd +00ce +00cf +00d0 +00d1 +00d2 +00d3 +00d4 +00d5 +00d6 +0152 +00d8 +00d9 +00da +00db +00dc +00dd +00de +0053 +00e0 +00e1 +00e2 +00e3 +00e4 +00e5 +00e6 +00e7 +00e8 +00e9 +00ea +00eb +00ec +00ed +00ee +00ef +00f0 +00f1 +00f2 +00f3 +00f4 +00f5 +00f6 +0153 +00f8 +00f9 +00fa +00fb +00fc +00fd +00fe +00df diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/cp1125.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/cp1125.map new file mode 100644 index 0000000..b23b329 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/cp1125.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0410 +0411 +0412 +0413 +0414 +0415 +0416 +0417 +0418 +0419 +041a +041b +041c +041d +041e +041f +0420 +0421 +0422 +0423 +0424 +0425 +0426 +0427 +0428 +0429 +042a +042b +042c +042d +042e +042f +0430 +0431 +0432 +0433 +0434 +0435 +0436 +0437 +0438 +0439 +043a +043b +043c +043d +043e +043f +2591 +2592 +2593 +2502 +2524 +2561 +2562 +2556 +2555 +2563 +2551 +2557 +255d +255c +255b +2510 +2514 +2534 +252c +251c +2500 +253c +255e +255f +255a +2554 +2569 +2566 +2560 +2550 +256c +2567 +2568 +2564 +2565 +2559 +2558 +2552 +2553 +256b +256a +2518 +250c +2588 +2584 +258c +2590 +2580 +0440 +0441 +0442 +0443 +0444 +0445 +0446 +0447 +0448 +0449 +044a +044b +044c +044d +044e +044f +0401 +0451 +0490 +0491 +0404 +0454 +0406 +0456 +0407 +0457 +00b7 +221a +2116 +00a4 +25a0 +00a0 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/cp1250.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/cp1250.map new file mode 100644 index 0000000..598ba4d --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/cp1250.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +20ac +ffff +201a +ffff +201e +2026 +2020 +2021 +ffff +2030 +0160 +2039 +015a +0164 +017d +0179 +ffff +2018 +2019 +201c +201d +2022 +2013 +2014 +ffff +2122 +0161 +203a +015b +0165 +017e +017a +00a0 +02c7 +02d8 +0141 +00a4 +0104 +00a6 +00a7 +00a8 +00a9 +015e +00ab +00ac +00ad +00ae +017b +00b0 +00b1 +02db +0142 +00b4 +00b5 +00b6 +00b7 +00b8 +0105 +015f +00bb +013d +02dd +013e +017c +0154 +00c1 +00c2 +0102 +00c4 +0139 +0106 +00c7 +010c +00c9 +0118 +00cb +011a +00cd +00ce +010e +0110 +0143 +0147 +00d3 +00d4 +0150 +00d6 +00d7 +0158 +016e +00da +0170 +00dc +00dd +0162 +00df +0155 +00e1 +00e2 +0103 +00e4 +013a +0107 +00e7 +010d +00e9 +0119 +00eb +011b +00ed +00ee +010f +0111 +0144 +0148 +00f3 +00f4 +0151 +00f6 +00f7 +0159 +016f +00fa +0171 +00fc +00fd +0163 +02d9 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/cp1251.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/cp1251.map new file mode 100644 index 0000000..fc59b7b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/cp1251.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0402 +0403 +201a +0453 +201e +2026 +2020 +2021 +20ac +2030 +0409 +2039 +040a +040c +040b +040f +0452 +2018 +2019 +201c +201d +2022 +2013 +2014 +ffff +2122 +0459 +203a +045a +045c +045b +045f +00a0 +040e +045e +0408 +00a4 +0490 +00a6 +00a7 +0401 +00a9 +0404 +00ab +00ac +00ad +00ae +0407 +00b0 +00b1 +0406 +0456 +0491 +00b5 +00b6 +00b7 +0451 +2116 +0454 +00bb +0458 +0405 +0455 +0457 +0410 +0411 +0412 +0413 +0414 +0415 +0416 +0417 +0418 +0419 +041a +041b +041c +041d +041e +041f +0420 +0421 +0422 +0423 +0424 +0425 +0426 +0427 +0428 +0429 +042a +042b +042c +042d +042e +042f +0430 +0431 +0432 +0433 +0434 +0435 +0436 +0437 +0438 +0439 +043a +043b +043c +043d +043e +043f +0440 +0441 +0442 +0443 +0444 +0445 +0446 +0447 +0448 +0449 +044a +044b +044c +044d +044e +044f diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/cp1257.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/cp1257.map new file mode 100644 index 0000000..488afa9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/cp1257.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +20ac +ffff +201a +ffff +201e +2026 +2020 +2021 +ffff +2030 +ffff +2039 +ffff +ffff +ffff +ffff +ffff +2018 +2019 +201c +201d +2022 +2013 +2014 +ffff +2122 +ffff +203a +ffff +ffff +ffff +ffff +00a0 +ffff +00a2 +00a3 +00a4 +ffff +00a6 +00a7 +00d8 +00a9 +0156 +00ab +00ac +00ad +00ae +00c6 +00b0 +00b1 +00b2 +00b3 +ffff +00b5 +00b6 +00b7 +00f8 +00b9 +0157 +00bb +00bc +00bd +00be +00e6 +0104 +012e +0100 +0106 +00c4 +00c5 +0118 +0112 +010c +00c9 +0179 +0116 +0122 +0136 +012a +013b +0160 +0143 +0145 +00d3 +014c +00d5 +00d6 +00d7 +0172 +0141 +015a +016a +00dc +017b +017d +00df +0105 +012f +0101 +0107 +00e4 +00e5 +0119 +0113 +010d +00e9 +017a +0117 +0123 +0137 +012b +013c +0161 +0144 +0146 +00f3 +014d +00f5 +00f6 +00f7 +0173 +0142 +015b +016b +00fc +017c +017e +ffff diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/ecma113.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/ecma113.map new file mode 100644 index 0000000..3bad8b1 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/ecma113.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0080 +0081 +0082 +0083 +0084 +0085 +0086 +0087 +0088 +0089 +008a +008b +008c +008d +008e +008f +0090 +0091 +0092 +0093 +0094 +0095 +0096 +0097 +0098 +0099 +009a +009b +009c +009d +009e +009f +00a0 +0452 +0453 +0451 +0454 +0455 +0456 +0457 +0458 +0459 +045a +045b +045c +00ad +045e +045f +2116 +0402 +0403 +0401 +0404 +0405 +0406 +0407 +0408 +0409 +040a +040b +040c +00a4 +040e +040f +044e +0430 +0431 +0446 +0434 +0435 +0444 +0433 +0445 +0438 +0439 +043a +043b +043c +043d +043e +043f +044f +0440 +0441 +0442 +0443 +0436 +0432 +044c +044b +0437 +0448 +044d +0449 +0447 +044a +042e +0410 +0411 +0426 +0414 +0415 +0424 +0413 +0425 +0418 +0419 +041a +041b +041c +041d +041e +041f +042f +0420 +0421 +0422 +0423 +0416 +0412 +042c +042b +0417 +0428 +042d +0429 +0427 +042a diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm775.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm775.map new file mode 100644 index 0000000..64e3943 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm775.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0106 +00fc +00e9 +0101 +00e4 +0123 +00e5 +0107 +0142 +0113 +0156 +0157 +012b +0179 +00c4 +00c5 +00c9 +00e6 +00c6 +014d +00f6 +0122 +00a2 +015a +015b +00d6 +00dc +00f8 +00a3 +00d8 +00d7 +00a4 +0100 +012a +00f3 +017b +017c +017a +201d +00a6 +00a9 +00ae +00ac +00bd +00bc +0141 +00ab +00bb +2591 +2592 +2593 +2502 +2524 +0104 +010c +0118 +0116 +2563 +2551 +2557 +255d +012e +0160 +2510 +2514 +2534 +252c +251c +2500 +253c +0172 +016a +255a +2554 +2569 +2566 +2560 +2550 +256c +017d +0105 +010d +0119 +0117 +012f +0161 +0173 +016b +017e +2518 +250c +2588 +2584 +258c +2590 +2580 +00d3 +00df +014c +0143 +00f5 +00d5 +00b5 +0144 +0136 +0137 +013b +013c +0146 +0112 +0145 +2019 +00ad +00b1 +201c +00be +00b6 +00a7 +00f7 +201e +00b0 +2219 +00b7 +00b9 +00b3 +00b2 +25a0 +00a0 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm852.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm852.map new file mode 100644 index 0000000..82ba295 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm852.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +00c7 +00fc +00e9 +00e2 +00e4 +016f +0107 +00e7 +0142 +00eb +0150 +0151 +00ee +0179 +00c4 +0106 +00c9 +0139 +013a +00f4 +00f6 +013d +013e +015a +015b +00d6 +00dc +0164 +0165 +0141 +00d7 +010d +00e1 +00ed +00f3 +00fa +0104 +0105 +017d +017e +0118 +0119 +00ac +017a +010c +015f +00ab +00bb +2591 +2592 +2593 +2502 +2524 +00c1 +00c2 +011a +015e +2563 +2551 +2557 +255d +017b +017c +2510 +2514 +2534 +252c +251c +2500 +253c +0102 +0103 +255a +2554 +2569 +2566 +2560 +2550 +256c +00a4 +0111 +0110 +010e +00cb +010f +0147 +00cd +00ce +011b +2518 +250c +2588 +2584 +0162 +016e +2580 +00d3 +00df +00d4 +0143 +0144 +0148 +0160 +0161 +0154 +00da +0155 +0170 +00fd +00dd +0163 +00b4 +00ad +02dd +02db +02c7 +02d8 +00a7 +00f7 +00b8 +00b0 +00a8 +02d9 +0171 +0158 +0159 +25a0 +00a0 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm855.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm855.map new file mode 100644 index 0000000..8b7d66c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm855.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0452 +0402 +0453 +0403 +0451 +0401 +0454 +0404 +0455 +0405 +0456 +0406 +0457 +0407 +0458 +0408 +0459 +0409 +045a +040a +045b +0093 +045c +040c +045e +040e +045f +040f +044e +042e +044a +042a +0430 +0410 +0431 +0411 +0446 +0426 +0434 +0414 +0435 +0415 +0444 +0424 +0433 +0413 +00ab +00bb +2591 +2592 +2593 +2502 +2524 +0445 +0425 +0438 +0418 +2563 +2551 +2557 +255d +0439 +0419 +2510 +2514 +2534 +252c +251c +2500 +253c +043a +041a +255a +2554 +2569 +2566 +2560 +2550 +256c +00a4 +043b +041b +043c +041c +043d +041d +043e +041e +043f +2518 +250c +2588 +2584 +041f +044f +2580 +042f +0440 +0420 +0441 +0421 +0442 +0422 +0443 +0423 +0436 +0416 +0432 +0412 +044c +042c +00b4 +00ad +044b +042b +0437 +0417 +0448 +0428 +044d +042d +0449 +0429 +0447 +0427 +ffff +25a0 +00a0 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm866-bad.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm866-bad.map new file mode 100644 index 0000000..5f05a92 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm866-bad.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0406 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0456 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0410 +0411 +0412 +0413 +0414 +0415 +0416 +0417 +0418 +0419 +041a +041b +041c +041d +041e +041f +0420 +0421 +0422 +0423 +0424 +0425 +0426 +0427 +0428 +0429 +042a +042b +042c +042d +042e +042f +0430 +0431 +0432 +0433 +0434 +0435 +0436 +0437 +0438 +0439 +043a +043b +043c +043d +043e +043f +2591 +2592 +2593 +2502 +2524 +2561 +2562 +2556 +2555 +2563 +2551 +2557 +255d +255c +255b +2510 +2514 +2534 +252c +251c +2500 +253c +255e +255f +255a +2554 +2569 +2566 +2560 +2550 +256c +2567 +2568 +2564 +2565 +2559 +2558 +2552 +2553 +256b +256a +2518 +250c +2588 +2584 +258c +2590 +2580 +0440 +0441 +0442 +0443 +0444 +0445 +0446 +0447 +0448 +0449 +044a +044b +044c +044d +044e +044f +0401 +0451 +0404 +0454 +0407 +0457 +040e +045e +00b0 +2219 +00b7 +221a +2116 +00a4 +25a0 +00a0 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm866.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm866.map new file mode 100644 index 0000000..ffef189 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/ibm866.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0410 +0411 +0412 +0413 +0414 +0415 +0416 +0417 +0418 +0419 +041a +041b +041c +041d +041e +041f +0420 +0421 +0422 +0423 +0424 +0425 +0426 +0427 +0428 +0429 +042a +042b +042c +042d +042e +042f +0430 +0431 +0432 +0433 +0434 +0435 +0436 +0437 +0438 +0439 +043a +043b +043c +043d +043e +043f +2591 +2592 +2593 +2502 +2524 +2561 +2562 +2556 +2555 +2563 +2551 +2557 +255d +255c +255b +2510 +2514 +2534 +252c +251c +2500 +253c +255e +255f +255a +2554 +2569 +2566 +2560 +2550 +256c +2567 +2568 +2564 +2565 +2559 +2558 +2552 +2553 +256b +256a +2518 +250c +2588 +2584 +258c +2590 +2580 +0440 +0441 +0442 +0443 +0444 +0445 +0446 +0447 +0448 +0449 +044a +044b +044c +044d +044e +044f +0401 +0451 +0404 +0454 +0407 +0457 +040e +045e +00b0 +2219 +00b7 +221a +2116 +00a4 +25a0 +00a0 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso885913.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso885913.map new file mode 100644 index 0000000..ff0b473 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso885913.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0080 +0081 +0082 +0083 +0084 +0085 +0086 +0087 +0088 +0089 +008a +008b +008c +008d +008e +008f +0090 +0091 +0092 +0093 +0094 +0095 +0096 +0097 +0098 +0099 +009a +009b +009c +009d +009e +009f +00a0 +201d +00a2 +00a3 +00a4 +201e +00a6 +00a7 +00d8 +00a9 +0156 +00ab +00ac +00ad +00ae +00c6 +00b0 +00b1 +00b2 +00b3 +201c +00b5 +00b6 +00b7 +00f8 +00b9 +0157 +00bb +00bc +00bd +00be +00e6 +0104 +012e +0100 +0106 +00c4 +00c5 +0118 +0112 +010c +00c9 +0179 +0116 +0122 +0136 +012a +013b +0160 +0143 +0145 +00d3 +014c +00d5 +00d6 +00d7 +0172 +0141 +015a +016a +00dc +017b +017d +00df +0105 +012f +0101 +0107 +00e4 +00e5 +0119 +0113 +010d +00e9 +017a +0117 +0123 +0137 +012b +013c +0161 +0144 +0146 +00f3 +014d +00f5 +00f6 +00f7 +0173 +0142 +015b +016b +00fc +017c +017e +2019 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso885916.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso885916.map new file mode 100644 index 0000000..0ff5f4c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso885916.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0080 +0081 +0082 +0083 +0084 +0085 +0086 +0087 +0088 +0089 +008a +008b +008c +008d +008e +008f +0090 +0091 +0092 +0093 +0094 +0095 +0096 +0097 +0098 +0099 +009a +009b +009c +009d +009e +009f +00a0 +0104 +0105 +0141 +20ac +00ab +0160 +00a7 +0161 +00a9 +0218 +201e +0179 +00ad +017a +017b +00b0 +00b1 +010c +0142 +017d +201d +00b6 +00b7 +017e +010d +0219 +00bb +0152 +0153 +0178 +017c +00c0 +00c1 +00c2 +0102 +00c4 +0106 +00c6 +00c7 +00c8 +00c9 +00ca +00cb +00cc +00cd +00ce +00cf +0110 +0143 +00d2 +00d3 +00d4 +0150 +00d6 +015a +0170 +00d9 +00da +00db +00dc +0118 +021a +00df +00e0 +00e1 +00e2 +0103 +00e4 +0107 +00e6 +00e7 +00e8 +00e9 +00ea +00eb +00ec +00ed +00ee +00ef +0111 +0144 +00f2 +00f3 +00f4 +0151 +00f6 +015b +0171 +00f9 +00fa +00fb +00fc +0119 +021b +00ff diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso88592.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso88592.map new file mode 100644 index 0000000..2228e7d --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso88592.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0080 +0081 +0082 +0083 +0084 +0085 +0086 +0087 +0088 +0089 +008a +008b +008c +008d +008e +008f +0090 +0091 +0092 +0093 +0094 +0095 +0096 +0097 +0098 +0099 +009a +009b +009c +009d +009e +009f +00a0 +0104 +02d8 +0141 +00a4 +013d +015a +00a7 +00a8 +0160 +015e +0164 +0179 +00ad +017d +017b +00b0 +0105 +02db +0142 +00b4 +013e +015b +02c7 +00b8 +0161 +015f +0165 +017a +02dd +017e +017c +0154 +00c1 +00c2 +0102 +00c4 +0139 +0106 +00c7 +010c +00c9 +0118 +00cb +011a +00cd +00ce +010e +0110 +0143 +0147 +00d3 +00d4 +0150 +00d6 +00d7 +0158 +016e +00da +0170 +00dc +00dd +0162 +00df +0155 +00e1 +00e2 +0103 +00e4 +013a +0107 +00e7 +010d +00e9 +0119 +00eb +011b +00ed +00ee +010f +0111 +0144 +0148 +00f3 +00f4 +0151 +00f6 +00f7 +0159 +016f +00fa +0171 +00fc +00fd +0163 +02d9 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso88594.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso88594.map new file mode 100644 index 0000000..8a2dfad --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso88594.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0080 +0081 +0082 +0083 +0084 +0085 +0086 +0087 +0088 +0089 +008a +008b +008c +008d +008e +008f +0090 +0091 +0092 +0093 +0094 +0095 +0096 +0097 +0098 +0099 +009a +009b +009c +009d +009e +009f +00a0 +0104 +0138 +0156 +00a4 +0128 +013b +00a7 +00a8 +0160 +0112 +0122 +0166 +00ad +017d +00af +00b0 +0105 +02db +0157 +00b4 +0129 +013c +02c7 +00b8 +0161 +0113 +0123 +0167 +014a +017e +014b +0100 +00c1 +00c2 +00c3 +00c4 +00c5 +00c6 +012e +010c +00c9 +0118 +00cb +0116 +00cd +00ce +012a +0110 +0145 +014c +0136 +00d4 +00d5 +00d6 +00d7 +00d8 +0172 +00da +00db +00dc +0168 +016a +00df +0101 +00e1 +00e2 +00e3 +00e4 +00e5 +00e6 +012f +010d +00e9 +0119 +00eb +0117 +00ed +00ee +012b +0111 +0146 +014d +0137 +00f4 +00f5 +00f6 +00f7 +00f8 +0173 +00fa +00fb +00fc +0169 +016b +02d9 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso88595.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso88595.map new file mode 100644 index 0000000..8d7ad83 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/iso88595.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0080 +0081 +0082 +0083 +0084 +0085 +0086 +0087 +0088 +0089 +008a +008b +008c +008d +008e +008f +0090 +0091 +0092 +0093 +0094 +0095 +0096 +0097 +0098 +0099 +009a +009b +009c +009d +009e +009f +00a0 +0401 +0402 +0403 +0404 +0405 +0406 +0407 +0408 +0409 +040a +040b +040c +00ad +040e +040f +0410 +0411 +0412 +0413 +0414 +0415 +0416 +0417 +0418 +0419 +041a +041b +041c +041d +041e +041f +0420 +0421 +0422 +0423 +0424 +0425 +0426 +0427 +0428 +0429 +042a +042b +042c +042d +042e +042f +0430 +0431 +0432 +0433 +0434 +0435 +0436 +0437 +0438 +0439 +043a +043b +043c +043d +043e +043f +0440 +0441 +0442 +0443 +0444 +0445 +0446 +0447 +0448 +0449 +044a +044b +044c +044d +044e +044f +2116 +0451 +0452 +0453 +0454 +0455 +0456 +0457 +0458 +0459 +045a +045b +045c +00a7 +045e +045f diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/keybcs2.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/keybcs2.map new file mode 100644 index 0000000..0f41db5 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/keybcs2.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +010c +00fc +00e9 +010f +00e4 +010e +0164 +010d +011b +011a +0139 +00cd +013e +013a +00c4 +00c1 +00c9 +017e +017d +00f4 +00f6 +00d3 +016f +00da +00fd +00d6 +00dc +0160 +013d +00dd +0158 +0165 +00e1 +00ed +00f3 +00fa +0148 +0147 +016e +00d4 +0161 +0159 +0155 +0154 +00bc +00a7 +00ab +00bb +2591 +2592 +2593 +2502 +2524 +2561 +2562 +2556 +2555 +2563 +2551 +2557 +255d +255c +255b +2510 +2514 +2534 +252c +251c +2500 +253c +255e +255f +255a +2554 +2569 +2566 +2560 +2550 +256c +2567 +2568 +2564 +2565 +2559 +2558 +2552 +2553 +256b +256a +2518 +250c +2588 +2584 +258c +2590 +2580 +03b1 +03b2 +0393 +03c0 +03a3 +03c3 +03bc +03c4 +03a6 +0398 +03a9 +03b4 +221e +2205 +03b5 +2229 +2261 +00b1 +2265 +2264 +2320 +2321 +00f7 +2248 +2218 +00b7 +2219 +221a +207f +00b2 +25a0 +00a0 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8cs2.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8cs2.map new file mode 100644 index 0000000..2ac0a87 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8cs2.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +00a4 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0080 +0081 +0082 +0083 +0084 +0085 +0086 +0087 +0088 +0089 +008a +008b +008c +008d +008e +008f +0090 +0091 +0092 +0093 +0094 +0095 +0096 +0097 +0098 +0099 +009a +009b +009c +009d +009e +009f +00a0 +ffff +00b4 +ffff +007e +ffff +02d8 +02d9 +00a8 +ffff +02da +00b8 +ffff +02dd +02db +02c7 +00a9 +00ae +250c +2510 +2514 +2518 +2500 +2193 +03a9 +00a7 +03b1 +03b3 +03b5 +03bc +03c0 +03c9 +00e0 +00e1 +01ce +010d +010f +011b +0155 +ffff +00fc +00ed +016f +013a +013e +00f6 +0148 +00f3 +00f4 +00e4 +0159 +0161 +0165 +00fa +00eb +00e9 +0171 +00fd +017e +ffff +ffff +0151 +0117 +00df +00c0 +00c1 +01cd +010c +010e +011a +0154 +ffff +00dc +00cd +016e +0139 +013d +00d6 +0147 +00d3 +00d4 +00c4 +0158 +0160 +0164 +00da +00cb +00c9 +0170 +00dd +017d +ffff +ffff +0150 +0116 +ffff diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8r.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8r.map new file mode 100644 index 0000000..d70791e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8r.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +2500 +2502 +250c +2510 +2514 +2518 +251c +2524 +252c +2534 +253c +2580 +2584 +2588 +258c +2590 +2591 +2592 +2593 +2320 +25a0 +2022 +221a +2248 +2264 +2265 +00a0 +2321 +00b0 +00b2 +00b7 +00f7 +2550 +2551 +2552 +0451 +2553 +2554 +2555 +2556 +2557 +2558 +2559 +255a +255b +255c +255d +255e +255f +2560 +2561 +0401 +2562 +2563 +2564 +2565 +2566 +2567 +2568 +2569 +256a +256b +256c +00a9 +044e +0430 +0431 +0446 +0434 +0435 +0444 +0433 +0445 +0438 +0439 +043a +043b +043c +043d +043e +043f +044f +0440 +0441 +0442 +0443 +0436 +0432 +044c +044b +0437 +0448 +044d +0449 +0447 +044a +042e +0410 +0411 +0426 +0414 +0415 +0424 +0413 +0425 +0418 +0419 +041a +041b +041c +041d +041e +041f +042f +0420 +0421 +0422 +0423 +0416 +0412 +042c +042b +0417 +0428 +042d +0429 +0427 +042a diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8u.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8u.map new file mode 100644 index 0000000..6341b50 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8u.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +2500 +2502 +250c +2510 +2514 +2518 +251c +2524 +252c +2534 +253c +2580 +2584 +2588 +258c +2590 +2591 +2592 +2593 +2320 +25a0 +2219 +221a +2248 +2264 +2265 +00a0 +2321 +00b0 +00b2 +00b7 +00f7 +2550 +2551 +2552 +0451 +0454 +2554 +0456 +0457 +2557 +2558 +2559 +255a +255b +0491 +255d +255e +255f +2560 +2561 +0401 +0404 +2563 +0406 +0407 +2566 +2567 +2568 +2569 +256a +0490 +256c +00a9 +044e +0430 +0431 +0446 +0434 +0435 +0444 +0433 +0445 +0438 +0439 +043a +043b +043c +043d +043e +043f +044f +0440 +0441 +0442 +0443 +0436 +0432 +044c +044b +0437 +0448 +044d +0449 +0447 +044a +042e +0410 +0411 +0426 +0414 +0415 +0424 +0413 +0425 +0418 +0419 +041a +041b +041c +041d +041e +041f +042f +0420 +0421 +0422 +0423 +0416 +0412 +042c +042b +0417 +0428 +042d +0429 +0427 +042a diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8ub.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8ub.map new file mode 100644 index 0000000..ed496fc --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8ub.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +20ac +03c1 +201a +0192 +201e +2026 +2020 +2021 +00a4 +2030 +002d +2039 +00a7 +ffff +00b6 +00d7 +00a3 +0060 +0027 +201c +201d +2022 +2013 +2014 +02dc +2122 +0020 +203a +00ae +ffff +00b7 +00f7 +0020 +ffff +00a2 +0451 +0454 +00a5 +0456 +0457 +ffff +00a9 +00aa +00ab +00ac +0491 +045e +ffff +00b0 +00b1 +00b2 +0401 +0404 +00b5 +0406 +0407 +ffff +2116 +00ba +00bb +ffff +0490 +040e +00a9 +044e +0430 +0431 +0446 +0434 +0435 +0444 +0433 +0445 +0438 +0439 +043a +043b +043c +043d +043e +043f +044f +0440 +0441 +0442 +0443 +0436 +0432 +044c +044b +0437 +0448 +044d +0449 +0447 +044a +042e +0410 +0411 +0426 +0414 +0415 +0424 +0413 +0425 +0418 +0419 +041a +041b +041c +041d +041e +041f +042f +0420 +0421 +0422 +0423 +0416 +0412 +042c +042b +0417 +0428 +042d +0429 +0427 +042a diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8uni.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8uni.map new file mode 100644 index 0000000..d27733b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/koi8uni.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +2500 +2502 +250c +2510 +2514 +2518 +251c +2524 +252c +2534 +253c +2580 +2584 +2588 +258c +2590 +2591 +2018 +2019 +201c +201d +2219 +2013 +2014 +00a9 +2122 +00a0 +00bb +00ae +00ab +00b7 +00a4 +00a0 +0452 +0453 +0451 +0454 +0455 +0456 +0457 +0458 +0459 +045a +045b +045c +0491 +045e +045f +2116 +0402 +0403 +0401 +0404 +0405 +0406 +0407 +0408 +0409 +040a +040b +040c +0490 +040e +040f +044e +0430 +0431 +0446 +0434 +0435 +0444 +0433 +0445 +0438 +0439 +043a +043b +043c +043d +043e +043f +044f +0440 +0441 +0442 +0443 +0436 +0432 +044c +044b +0437 +0448 +044d +0449 +0447 +044a +042e +0410 +0411 +0426 +0414 +0415 +0424 +0413 +0425 +0418 +0419 +041a +041b +041c +041d +041e +041f +042f +0420 +0421 +0422 +0423 +0416 +0412 +042c +042b +0417 +0428 +042d +0429 +0427 +042a diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/macce.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/macce.map new file mode 100644 index 0000000..b98f222 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/macce.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +00c4 +0100 +0101 +00c9 +0104 +00d6 +00dc +00e1 +0105 +010c +00e4 +010d +0106 +0107 +00e9 +0179 +017a +010e +00ed +010f +0112 +0113 +0116 +00f3 +0117 +00f4 +00f6 +00f5 +00fa +011a +011b +00fc +2020 +00b0 +0118 +00a3 +00a7 +2022 +00b6 +00df +00ae +00a9 +2122 +0119 +00a8 +2260 +0123 +012e +012f +012a +2264 +2265 +012b +0136 +2202 +2211 +0142 +013b +013c +013d +013e +0139 +013a +0145 +0146 +0143 +00ac +221a +0144 +0147 +2206 +00ab +00bb +2026 +00a0 +0148 +0150 +00d5 +0151 +014c +2013 +2014 +201c +201d +2018 +2019 +00f7 +25ca +014d +0154 +0155 +0158 +2039 +203a +0159 +0156 +0157 +0160 +201a +201e +0161 +015a +015b +00c1 +0164 +0165 +00cd +017d +017e +016a +00d3 +00d4 +016b +016e +00da +016f +0170 +0171 +0172 +0173 +00dd +00fd +0137 +017b +0141 +017c +0122 +02c7 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/maps/maccyr.map b/wlx/wayland_qt_base/build/enca-1.19/data/maps/maccyr.map new file mode 100644 index 0000000..4ef23e2 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/maps/maccyr.map @@ -0,0 +1,256 @@ +0000 +0001 +0002 +0003 +0004 +0005 +0006 +0007 +0008 +0009 +000a +000b +000c +000d +000e +000f +0010 +0011 +0012 +0013 +0014 +0015 +0016 +0017 +0018 +0019 +001a +001b +001c +001d +001e +001f +0020 +0021 +0022 +0023 +0024 +0025 +0026 +0027 +0028 +0029 +002a +002b +002c +002d +002e +002f +0030 +0031 +0032 +0033 +0034 +0035 +0036 +0037 +0038 +0039 +003a +003b +003c +003d +003e +003f +0040 +0041 +0042 +0043 +0044 +0045 +0046 +0047 +0048 +0049 +004a +004b +004c +004d +004e +004f +0050 +0051 +0052 +0053 +0054 +0055 +0056 +0057 +0058 +0059 +005a +005b +005c +005d +005e +005f +0060 +0061 +0062 +0063 +0064 +0065 +0066 +0067 +0068 +0069 +006a +006b +006c +006d +006e +006f +0070 +0071 +0072 +0073 +0074 +0075 +0076 +0077 +0078 +0079 +007a +007b +007c +007d +007e +007f +0410 +0411 +0412 +0413 +0414 +0415 +0416 +0417 +0418 +0419 +041a +041b +041c +041d +041e +041f +0420 +0421 +0422 +0423 +0424 +0425 +0426 +0427 +0428 +0429 +042a +042b +042c +042d +042e +042f +2020 +00b0 +0490 +00a3 +00a7 +2022 +00b6 +0406 +00ae +00a9 +2122 +0402 +0452 +2260 +0403 +0453 +221e +00b1 +2264 +2265 +0456 +00b5 +0491 +0408 +0404 +0454 +0407 +0457 +0409 +0459 +040a +045a +0458 +0405 +00ac +221a +0192 +2248 +2206 +00ab +00bb +2026 +00a0 +040b +045b +040c +045c +0455 +2013 +2014 +201c +201d +2018 +2019 +00f7 +201e +040e +045e +040f +045f +2116 +0401 +0451 +044f +0430 +0431 +0432 +0433 +0434 +0435 +0436 +0437 +0438 +0439 +043a +043b +043c +043d +043e +043f +0440 +0441 +0442 +0443 +0444 +0445 +0446 +0447 +0448 +0449 +044a +044b +044c +044d +044e +20ac diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/mystrings.c b/wlx/wayland_qt_base/build/enca-1.19/data/mystrings.c new file mode 100644 index 0000000..d18449d --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/mystrings.c @@ -0,0 +1,45 @@ +#include <ctype.h> +#include <stdio.h> + +#define isbinary(x) (iscntrl(x) && !isspace(x)) +#define istext(x) (islower(x) || isupper(x) || (x) > 127) + +#define MINTEXT 4 + +#define FILL_CHARACTER ' ' + +int +main(void) +{ + int mode; + unsigned char old[MINTEXT - 1]; + int c; + + mode = 0; + while ((c = getchar()) != EOF) { + if (isbinary(c)) { + if (mode == 0) putchar('\n'); + mode = MINTEXT; + } + else { + if (mode > 0) { + if (istext(c)) { + mode--; + if (mode == 0) { + int j; + for (j = 0; j < MINTEXT-1; j++) + putchar(old[j]); + + putchar(c); + } + else old[MINTEXT - mode - 1] = c; + } + else mode = MINTEXT; + } + else putchar(c); + } + } + if (mode == 0) putchar('\n'); + + return 0; +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/normalize.pl b/wlx/wayland_qt_base/build/enca-1.19/data/normalize.pl new file mode 100755 index 0000000..d75ea70 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/normalize.pl @@ -0,0 +1,69 @@ +#!/usr/bin/perl +use warnings; +use strict; + +my $n = 0; +my $q; +my $max = 0; +my (@char, @count); + +if (!defined $ARGV[0]) { + while (<STDIN>) { + ($char[$n], $count[$n]) = split /\s+/, $_, 2; + + if ($max < $count[$n]) { + $max = $count[$n]; + } + $n++; + } + + for ($q = 1; $max/$q >= 6000; $q++) { } + + for (my $i = 0; $i < $n; $i++) { + printf "%s %u\n", $char[$i], $count[$i]/$q; + } +} +else { + my @err; + + my $sum = 0; + open FH, "<".$ARGV[0]; + while (<FH>) { + my ($char, $count) = split /\s+/, $_, 2; + $sum += $count; + } + close FH; + + my $sum2 = 0; + while (<STDIN>) { + ($char[$n], $count[$n]) = split /\s+/, $_, 2; + + $sum2 += $count[$n]; + $n++; + } + for (my $i = 0; $i < $n; $i++) { + my $x = $count[$i]*$sum/$sum2; + $count[$i] = int $x; + $err[$i] = $count[$i] - $x; + } + $sum2 = 0; + for (my $i = 0; $i < $n; $i++) { + $sum2 += $count[$i]; + } + + while ($sum2 != $sum) { + $max = 0; + for (my $i = 0; $i < $n; $i++) { + if ($err[$i]*($sum - $sum2) > $err[$max]*($sum - $sum2)) { + $max = $i; + } + } + $count[$max] += $sum2 > $sum ? -1 : 1; + $err[$max] -= $sum2 > $sum ? -1 : 1; + $sum2 += $sum2 > $sum ? -1 : 1; + } + + for (my $i = 0; $i < $n; $i++) { + printf "%s %u\n", $char[$i], $count[$i]; + } +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/pairtoc.c b/wlx/wayland_qt_base/build/enca-1.19/data/pairtoc.c new file mode 100644 index 0000000..a95a333 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/pairtoc.c @@ -0,0 +1,87 @@ +#include <stdio.h> +#include <ctype.h> +#include <stdlib.h> +#include <assert.h> + +#define FILL_CHARACTER '.' + +#define mytoupper(x) (islower(x) ? toupper(x) : (x)) + +int +main(int argc, char *argv[]) +{ + unsigned int letters[0x100]; + unsigned int order[0x100]; + unsigned char *pairs[0x100]; + FILE *f; + unsigned int i, j, k; + int first, second; + + /* read letters */ + for (i = 0; i < 0x100; i++) { + letters[i] = 0; + pairs[i] = NULL; + } + + f = fopen(argv[2], "r"); + while (fscanf(f, "%lx", &j) == 1) + letters[j] = 0xff; + fclose(f); + + /* read stuff */ + j = 0; + while ((first = getchar()) != EOF) { + pairs[first] = (unsigned char*)malloc(0x101); + order[j] = first; + letters[first] = j++; + getchar(); /* : */ + i = 0; + while ((second = getchar()) != '\n') + pairs[first][i++] = (unsigned char*)second; + pairs[first][i] = '\0'; + } + assert(order[0] == FILL_CHARACTER); + + puts("/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */"); + printf("static const unsigned char LETTER_"); + for (i = 0; argv[1][i]; i++) + printf("%c", mytoupper(argv[1][i])); + puts("[] = {"); + + for (i = 0; i < 0x100; i++) { + if (i % 8 == 0) + printf(" "); + printf("%3u", letters[i]); + if (i % 8 == 7) + printf(", /* 0x%02x */\n", i-7); + else + printf(", "); + } + puts("};\n"); + + puts("/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */"); + printf("static const unsigned char *PAIR_"); + for (i = 0; argv[1][i]; i++) + printf("%c", mytoupper(argv[1][i])); + puts("[] = {\n"); + + printf(" (unsigned char*)\""); + for (k = 0; pairs[FILL_CHARACTER][k]; k++) { + printf("\\x%02x", pairs[FILL_CHARACTER][k]); + } + printf("\", /* FILLCHAR */\n"); + + for (i = 1; i < j; i++) { + printf(" (unsigned char*)\""); + for (k = 0; pairs[order[i]][k]; k++) { + if (pairs[order[i]][k] == FILL_CHARACTER) + printf("."); + else + printf("\\x%02x", pairs[order[i]][k]); + } + printf("\", /* 0x%02x */\n", order[i]); + } + puts("};\n"); + + return 0; +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/polish/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/polish/doit.sh new file mode 100755 index 0000000..cf4e24a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/polish/doit.sh @@ -0,0 +1,2 @@ +#! /bin/bash +../doit.sh iso88592 cp1250 ibm852 macce iso885913 iso885916 baltic cork diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/polish/iso88592.base b/wlx/wayland_qt_base/build/enca-1.19/data/polish/iso88592.base new file mode 100644 index 0000000..013aa11 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/polish/iso88592.base @@ -0,0 +1,12 @@ + 23 + 31 + 70 + 2437 + 5859 + 1720 + 211 + 2137 + 1351 + 3257 + 401 + 1816 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/polish/polish.h b/wlx/wayland_qt_base/build/enca-1.19/data/polish/polish.h new file mode 100644 index 0000000..ce6905f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/polish/polish.h @@ -0,0 +1,368 @@ +/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO88592[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 23, 0, 0, 31, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 70, /* 0xa8 */ + 0, 2437, 0, 5859, 0, 0, 1720, 0, /* 0xb0 */ + 0, 0, 0, 0, 211, 0, 0, 2137, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 1351, 0, /* 0xe0 */ + 0, 0, 3257, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 401, 0, 1816, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1250[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 31, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 1720, 0, 0, 211, /* 0x98 */ + 0, 0, 0, 23, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 70, /* 0xa8 */ + 0, 0, 0, 5859, 0, 0, 0, 0, /* 0xb0 */ + 0, 2437, 0, 0, 0, 0, 0, 2137, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 1351, 0, /* 0xe0 */ + 0, 0, 3257, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 401, 0, 1816, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM852[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 1351, 0, /* 0x80 */ + 5859, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 31, /* 0x90 */ + 1720, 0, 0, 0, 0, 23, 0, 0, /* 0x98 */ + 0, 0, 1816, 0, 0, 2437, 0, 0, /* 0xa0 */ + 0, 3257, 0, 211, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 70, 2137, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 401, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_MACCE[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 2437, 0, 0, 0, 0, 1351, 0, 0, /* 0x88 */ + 211, 0, 0, 0, 0, 0, 0, 1816, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 3257, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 5859, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 401, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 31, 1720, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 70, 23, 2137, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO885913[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 23, 31, 0, 0, 70, 0, 0, /* 0xd8 */ + 2437, 0, 0, 1351, 0, 0, 3257, 0, /* 0xe0 */ + 0, 0, 211, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 401, 0, 1816, 0, 0, 0, 0, /* 0xf0 */ + 0, 5859, 1720, 0, 0, 2137, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO885916[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 2437, 23, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 211, 70, /* 0xa8 */ + 0, 0, 0, 5859, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 2137, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 31, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 1351, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 401, 0, 1816, 0, 0, 0, 1720, /* 0xf0 */ + 0, 0, 0, 0, 0, 3257, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_BALTIC[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 23, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 31, 0, 0, 70, 0, 0, /* 0xd8 */ + 0, 0, 0, 1351, 0, 0, 2437, 0, /* 0xe0 */ + 0, 0, 0, 3257, 0, 0, 0, 0, /* 0xe8 */ + 5859, 0, 401, 1816, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 1720, 0, 0, 2137, 211, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CORK[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 23, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 31, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 70, 0, 0, 0, 0, /* 0x98 */ + 0, 2437, 1351, 0, 0, 0, 3257, 0, /* 0xa0 */ + 0, 0, 5859, 401, 0, 0, 0, 0, /* 0xa8 */ + 0, 1720, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 211, 0, 2137, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 1816, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/totals.pl. */ +static const unsigned short int SIGNIFICANT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 1351, 0, /* 0x80 */ + 8296, 0, 23, 0, 31, 1351, 0, 0, /* 0x88 */ + 211, 31, 0, 0, 0, 0, 0, 1847, /* 0x90 */ + 1720, 0, 0, 70, 1720, 23, 0, 211, /* 0x98 */ + 0, 2437, 5604, 69, 0, 2437, 3288, 0, /* 0xa0 */ + 0, 3257, 5859, 3869, 0, 0, 211, 210, /* 0xa8 */ + 0, 4157, 0, 17577, 0, 0, 1720, 0, /* 0xb0 */ + 5859, 2648, 0, 2137, 211, 70, 2137, 6411, /* 0xb8 */ + 0, 0, 0, 0, 401, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 23, 0, 0, 0, 0, 0, 0, 31, /* 0xd0 */ + 0, 23, 62, 0, 0, 140, 0, 0, /* 0xd8 */ + 2437, 0, 0, 2702, 401, 1382, 10116, 0, /* 0xe0 */ + 0, 0, 6725, 3257, 0, 0, 0, 0, /* 0xe8 */ + 5859, 1604, 401, 10896, 0, 0, 0, 1720, /* 0xf0 */ + 0, 5859, 3440, 70, 23, 9668, 211, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define WEIGHT_SUM 19313 + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const char *const CHARSET_NAMES[] = { + "iso88592", + "cp1250", + "ibm852", + "macce", + "iso885913", + "iso885916", + "baltic", + "cork", +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned short int *const CHARSET_WEIGHTS[] = { + RAW_ISO88592, + RAW_CP1250, + RAW_IBM852, + RAW_MACCE, + RAW_ISO885913, + RAW_ISO885916, + RAW_BALTIC, + RAW_CORK, +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_LETTERS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_PAIRS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define NCHARSETS 8 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/polish/rawcounts.iso88592 b/wlx/wayland_qt_base/build/enca-1.19/data/polish/rawcounts.iso88592 new file mode 100644 index 0000000..7a3e667 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/polish/rawcounts.iso88592 @@ -0,0 +1,154 @@ +0x09 . 478 +0x0a . 307296 +0x0d . 261760 +0x20 1738594 +0x21 ! 21553 +0x22 " 71173 +0x23 # 7181 +0x24 $ 63 +0x25 % 9843 +0x26 & 100450 +0x27 ' 2489 +0x28 ( 3283 +0x29 ) 3555 +0x2a * 582 +0x2b + 208 +0x2c , 144097 +0x2d - 49466 +0x2e . 109782 +0x2f / 42607 +0x30 0 22095 +0x31 1 7192 +0x32 2 12857 +0x33 3 3065 +0x34 4 4695 +0x35 5 4981 +0x36 6 1278 +0x37 7 2264 +0x38 8 8316 +0x39 9 2298 +0x3a : 15607 +0x3b ; 109509 +0x3c < 179947 +0x3d = 36495 +0x3e > 180608 +0x3f ? 10390 +0x40 @ 337 +0x41 A 19198 +0x42 B 14521 +0x43 C 16569 +0x44 D 11720 +0x45 E 9731 +0x46 F 5540 +0x47 G 8817 +0x48 H 5581 +0x49 I 15132 +0x4a J 10119 +0x4b K 15433 +0x4c L 7213 +0x4d M 13190 +0x4e N 17561 +0x4f O 12259 +0x50 P 23364 +0x51 Q 132 +0x52 R 13080 +0x53 S 18521 +0x54 T 19508 +0x55 U 4563 +0x56 V 1057 +0x57 W 19787 +0x58 X 1178 +0x59 Y 1006 +0x5a Z 13247 +0x5b [ 1257 +0x5c \ 171 +0x5d ] 1442 +0x5e ^ 27 +0x5f _ 5221 +0x60 ` 1230 +0x61 a 675245 +0x62 b 330749 +0x63 c 316234 +0x64 d 252519 +0x65 e 630363 +0x66 f 29788 +0x67 g 144083 +0x68 h 109615 +0x69 i 683449 +0x6a j 147881 +0x6b k 226750 +0x6c l 195904 +0x6d m 235685 +0x6e n 502439 +0x6f o 565574 +0x70 p 304251 +0x71 q 6227 +0x72 r 457012 +0x73 s 428128 +0x74 t 337494 +0x75 u 166560 +0x76 v 8310 +0x77 w 293327 +0x78 x 4030 +0x79 y 276515 +0x7a z 427891 +0x7b { 52 +0x7c | 452 +0x7d } 83 +0x7e ~ 267 +0x82 51 +0x84 12 +0x85 58 +0x87 41 +0x8f 1 +0x99 20 +0x9a 1 +0x9b 21 +0xa1 175 +0xa3 742 +0xa5 83 +0xa6 999 +0xab 4 +0xac 86 +0xaf 2241 +0xb0 4 +0xb1 77991 +0xb3 187508 +0xb6 55060 +0xb7 26 +0xb9 2 +0xba 2 +0xbb 4 +0xbc 6765 +0xbf 68392 +0xc3 16 +0xc4 112 +0xc5 128 +0xc6 45 +0xc9 1 +0xca 84 +0xd1 67 +0xd3 162 +0xd6 1 +0xdc 1 +0xde 1 +0xe0 4 +0xe1 20 +0xe2 1 +0xe4 20 +0xe5 21 +0xe6 43252 +0xe7 3 +0xe9 399 +0xea 104253 +0xec 2 +0xed 30 +0xee 3 +0xef 3 +0xf1 12853 +0xf3 58130 +0xf6 53 +0xf8 3 +0xfa 6 +0xfc 21 +0xfd 7 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/russian/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/russian/doit.sh new file mode 100755 index 0000000..5cffd5a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/russian/doit.sh @@ -0,0 +1,2 @@ +#! /bin/bash +../doit.sh koi8r cp1251 iso88595 ibm866 maccyr diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/russian/koi8r.base b/wlx/wayland_qt_base/build/enca-1.19/data/russian/koi8r.base new file mode 100644 index 0000000..95b4aef --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/russian/koi8r.base @@ -0,0 +1,28 @@ + 418 + 4711 + 935 + 244 + 1917 + 5075 + 896 + 597 + 3824 + 819 + 2062 + 2651 + 1688 + 3538 + 5972 + 1529 + 1262 + 2752 + 2929 + 3628 + 1580 + 570 + 2406 + 1202 + 1284 + 969 + 500 + 754 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/russian/paircounts.koi8r b/wlx/wayland_qt_base/build/enca-1.19/data/russian/paircounts.koi8r new file mode 100644 index 0000000..ab02bfd --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/russian/paircounts.koi8r @@ -0,0 +1,61 @@ +.: +:. +:. +:. +:. +:. +:. +: +:. +:. +:. +:. +:. +:. +:. +:. +:. +: +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +: +: +: +:. +:. +:. +: +:. +:. +: +:. +:. +:. +:. +:. +:. +:. +:. +: +:. +:. +:. +:. +:. +: +:. +:. +:. +:. +: +: +: +: diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/russian/rawcounts.koi8r b/wlx/wayland_qt_base/build/enca-1.19/data/russian/rawcounts.koi8r new file mode 100644 index 0000000..66819da --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/russian/rawcounts.koi8r @@ -0,0 +1,166 @@ +13520 +30682 +22930 +93536 +1915 +25916 +608 +387 +2701 +891 +1555 +1554 +208 +2571 +8830 +10868 +17822 +21560 +7814 +6472 +1626 +3052 +843 +941 +2559 +2430 +2184 +2136 +2545 +3760 +27671 +22243 +28341 +1664 +340 +12634 +8266 +4844 +9115 +11584 +4826 +5190 +8692 +7917 +4 +1347 +7568 +2432 +4826 +6919 +2505 +674 +13189 +3320 +13900 +1099 +910 +2747 +7 +404 +971 +4 +1 +4 +810 +15557 +7281 +6467 +5219 +15422 +3154 +7756 +8966 +13530 +814 +4831 +7627 +10815 +10655 +10786 +8764 +102 +15550 +11627 +16648 +4200 +4162 +1953 +973 +4820 +1094 +186 +2937 +187 +4 +60 +1 +46 +28 +16 +62 +16 +2093 +23558 +4677 +1220 +9589 +25376 +489 +4482 +2987 +19124 +4099 +10311 +13258 +8440 +17694 +29860 +7646 +6310 +13761 +14649 +18140 +7904 +2852 +12033 +6011 +6421 +4849 +2502 +675 +901 +3774 +50 +40 +1383 +494 +48 +523 +443 +61 +341 +272 +1306 +51 +884 +411 +839 +1471 +862 +1505 +590 +518 +1348 +724 +320 +144 +1825 +30 +26 +381 +299 +149 +7 +336 +1 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/russian/russian.h b/wlx/wayland_qt_base/build/enca-1.19/data/russian/russian.h new file mode 100644 index 0000000..3b03566 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/russian/russian.h @@ -0,0 +1,773 @@ +/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_KOI8R[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 418, 4711, 935, 244, 1917, 5075, 0, 896, /* 0xc0 */ + 597, 3824, 819, 2062, 2651, 1688, 3538, 5972, /* 0xc8 */ + 1529, 1262, 2752, 2929, 3628, 1580, 570, 2406, /* 0xd0 */ + 1202, 1284, 969, 500, 0, 0, 754, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_KOI8R[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 255, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 255, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 1, 2, 3, 4, 5, 6, 7, 8, /* 0xc0 */ + 9, 10, 11, 12, 13, 14, 15, 16, /* 0xc8 */ + 17, 18, 19, 20, 21, 22, 23, 24, /* 0xd0 */ + 25, 26, 27, 28, 29, 30, 31, 255, /* 0xd8 */ + 32, 33, 34, 255, 35, 36, 255, 37, /* 0xe0 */ + 38, 39, 40, 41, 42, 43, 44, 45, /* 0xe8 */ + 46, 47, 48, 49, 50, 51, 52, 53, /* 0xf0 */ + 54, 55, 56, 57, 58, 59, 60, 255, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_KOI8R[] = { + + (unsigned char*)"\xd0\xd3\xce\xd7\xcf\xc9\xd4\xcb\xc4\xc2\xcd\xf7\xee\xf0\xda\xd2\xf3\xde\xd5\xc7\xef\xeb\xe9\xf4\xcc\xed\xe4\xc5\xe1\xdc\xd1\xf2\xe2\xd6\xc1\xe7\xfa\xf1\xfe\xc8\xf5\xfc\xec\xdb\xe5\xe8\xc6\xf6\xe6\xc3\xfb", /* FILLCHAR */ + (unsigned char*)".\xd4\xc4\xdd\xc2", /* 0xc0 */ + (unsigned char*)".\xcc\xd4\xcb\xce\xda\xd3\xcd\xd7\xd2\xc4\xd1\xc5\xc0\xd6\xdb\xc8\xca\xc2\xde\xd0\xc7\xd5\xdd\xc3", /* 0xc1 */ + (unsigned char*)"\xd9\xcf\xc5\xd2\xd5\xc1\xc9\xcc\xd1.\xce", /* 0xc2 */ + (unsigned char*)"\xc5\xc9\xc1.\xcf", /* 0xc3 */ + (unsigned char*)"\xc5\xc1\xcf\xc9\xd5\xce\xd2.\xd7\xd9\xd8\xcc\xd1\xd3\xcb\xc3", /* 0xc4 */ + (unsigned char*)".\xce\xd2\xcc\xd4\xd3\xcd\xc7\xc4\xca\xcb\xd7\xda\xc2\xde\xc5\xd0\xdb\xd6\xdd\xc8\xc3\xcf", /* 0xc5 */ + (unsigned char*)"\xcf\xc9", /* 0xc6 */ + (unsigned char*)"\xcf\xc1\xcc\xd2\xc4\xc9.\xd5\xce\xc5", /* 0xc7 */ + (unsigned char*)".\xcf\xc1\xc9\xce", /* 0xc8 */ + (unsigned char*)".\xcc\xd4\xce\xcb\xcd\xd3\xd7\xda\xc5\xc8\xc4\xde\xca\xd1\xd2\xc3\xc7\xc9\xdb\xc2\xcf\xd6\xd0\xc1\xc0", /* 0xc9 */ + (unsigned char*)".\xd3\xd4\xce\xde\xc4", /* 0xca */ + (unsigned char*)"\xc1\xcf.\xc9\xd5\xd2\xd4\xcc\xd3\xc5\xce", /* 0xcb */ + (unsigned char*)".\xc9\xcf\xc1\xc5\xd8\xd3\xd1\xd5\xc0\xd9\xcb\xce\xcc", /* 0xcc */ + (unsigned char*)".\xcf\xc5\xc1\xc9\xd5\xce\xd9\xd1", /* 0xcd */ + (unsigned char*)"\xc1\xcf\xc5\xc9.\xd9\xd5\xce\xd1\xd8\xd4\xc4\xd3\xcb\xc3", /* 0xce */ + (unsigned char*)".\xd7\xd2\xd4\xcc\xd3\xce\xcd\xc4\xc7\xca\xc2\xcb\xd6\xde\xc5\xd0\xda\xdb\xc9\xd1\xc8\xcf\xdd\xc0", /* 0xcf */ + (unsigned char*)"\xcf\xd2\xc5\xc1\xc9\xcc\xd5\xd9\xd1", /* 0xd0 */ + (unsigned char*)".\xd4\xcc\xc4\xce\xd3\xcd\xd7\xda\xdd", /* 0xd1 */ + (unsigned char*)"\xcf\xc1\xc5\xc9\xd5.\xd9\xce\xd1\xd4\xd8\xd7\xcd\xc4\xcb\xd6\xd3\xc0", /* 0xd2 */ + (unsigned char*)"\xd4\xd1\xcb\xc5.\xd8\xcf\xcc\xc9\xd0\xc1\xce\xd7\xcd\xd3\xd5\xd9\xde", /* 0xd3 */ + (unsigned char*)"\xcf.\xc1\xc5\xd8\xc9\xd2\xd7\xd9\xd5\xd3\xce\xcb\xd1\xcc", /* 0xd4 */ + (unsigned char*)".\xcc\xc4\xd4\xd3\xcd\xd6\xc7\xc0\xde\xd2\xcb\xc2\xd0\xdb\xd7\xce\xc8\xda\xdd", /* 0xd5 */ + (unsigned char*)"\xc5\xc9\xc1\xce\xc4.\xd5", /* 0xd6 */ + (unsigned char*)"\xc1\xcf.\xc5\xc9\xd9\xd3\xce\xd2\xd5\xcc\xdb\xda\xd4\xc4\xd1\xcb", /* 0xd7 */ + (unsigned char*)".\xce\xcb\xd3\xdb\xc5\xc0\xd1", /* 0xd8 */ + (unsigned char*)".\xcc\xca\xc5\xcd\xc8\xd7\xd4\xd3\xdb\xd2\xc2", /* 0xd9 */ + (unsigned char*)"\xc1\xce.\xc4\xd7\xcf\xc9\xc5\xd5\xd9\xcd\xd2\xd1\xc7\xcc", /* 0xda */ + (unsigned char*)"\xc5\xc9\xc1\xd8\xcb\xcc\xce\xcf\xd5", /* 0xdb */ + (unsigned char*)"\xd4", /* 0xdc */ + (unsigned char*)"\xc5\xc9\xc1", /* 0xdd */ + (unsigned char*)"\xc5\xd4\xc1\xc9\xce\xd5\xcb.\xd8", /* 0xde */ + (unsigned char*)".", /* 0xe0 */ + (unsigned char*)".\xec\xf4\xeb\xee\xfa\xf7\xf3\xed\xf2\xf1\xe4\xce", /* 0xe1 */ + (unsigned char*)"\xf9\xef\xe5", /* 0xe2 */ + (unsigned char*)"\xe5\xe1\xef\xc1\xe9\xf5.\xcf\xee", /* 0xe4 */ + (unsigned char*)".\xf2\xee\xec\xf4\xf3\xed\xe4\xe7\xf7\xea\xe2", /* 0xe5 */ + (unsigned char*)"\xef\xcf", /* 0xe7 */ + (unsigned char*)".\xef", /* 0xe8 */ + (unsigned char*)".\xec\xf4\xee\xf3\xeb\xed\xf7\xe4\xe5\xfa\xfe", /* 0xe9 */ + (unsigned char*)".", /* 0xea */ + (unsigned char*)"\xe1\xef.\xe9\xc1\xcf\xf5\xf2", /* 0xeb */ + (unsigned char*)".\xe9\xef\xe1\xe5\xf8\xf3", /* 0xec */ + (unsigned char*)".\xc1\xe5\xef\xe1\xe9\xf5\xcf\xee", /* 0xed */ + (unsigned char*)"\xe5\xe1\xef\xe9\xc5.\xc1\xf9\xf5\xcf\xee\xd5\xf1", /* 0xee */ + (unsigned char*)".\xf7\xce\xf4\xee\xf3\xec\xf2\xed\xe4\xe7\xea\xe2\xf6\xe5\xeb\xfe\xf0", /* 0xef */ + (unsigned char*)"\xef\xf2\xcf\xd2\xe5\xc1\xe1", /* 0xf0 */ + (unsigned char*)".\xf4", /* 0xf1 */ + (unsigned char*)"\xef\xe1\xe5\xe9\xf5.\xd5\xc1", /* 0xf2 */ + (unsigned char*)"\xf4.\xf1\xeb\xe5\xf8\xec\xef\xf0\xd4\xe9\xcb", /* 0xf3 */ + (unsigned char*)"\xef.\xe1\xf8\xe5\xe9\xf2\xcf\xf7\xc1\xf9\xf5", /* 0xf4 */ + (unsigned char*)".\xe4\xec\xf4", /* 0xf5 */ + (unsigned char*)"\xe5", /* 0xf6 */ + (unsigned char*)".\xef\xe1\xe5\xe9\xd9\xf9\xcf\xf3\xc9\xd3\xc1", /* 0xf7 */ + (unsigned char*)".", /* 0xf8 */ + (unsigned char*)".\xec\xea", /* 0xf9 */ + (unsigned char*)"\xe1\xc1\xee.", /* 0xfa */ + (unsigned char*)"\xe5\xe9", /* 0xfb */ + (unsigned char*)"\xd4\xf4", /* 0xfc */ + (unsigned char*)"\xe5", /* 0xfd */ + (unsigned char*)"\xe5\xf4\xd4\xe1\xe9", /* 0xfe */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1251[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 4711, 935, 2406, 896, 1917, 5075, 570, 969, /* 0xe0 */ + 3824, 819, 2062, 2651, 1688, 3538, 5972, 1529, /* 0xe8 */ + 2752, 2929, 3628, 1580, 0, 597, 244, 754, /* 0xf0 */ + 500, 0, 0, 1284, 1202, 0, 418, 1262, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_CP1251[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 255, 255, 0, 255, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 255, 0, 255, 255, 255, 255, /* 0x88 */ + 255, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 255, 0, 255, 255, 255, 255, /* 0x98 */ + 0, 255, 255, 255, 0, 255, 0, 0, /* 0xa0 */ + 255, 0, 255, 0, 0, 0, 0, 255, /* 0xa8 */ + 0, 0, 255, 255, 255, 0, 0, 0, /* 0xb0 */ + 255, 0, 255, 0, 255, 255, 255, 255, /* 0xb8 */ + 33, 34, 53, 37, 35, 36, 52, 56, /* 0xc0 */ + 39, 40, 41, 42, 43, 44, 45, 46, /* 0xc8 */ + 48, 49, 50, 51, 255, 38, 255, 60, /* 0xd0 */ + 57, 59, 255, 55, 54, 58, 32, 47, /* 0xd8 */ + 2, 3, 24, 8, 5, 6, 23, 27, /* 0xe0 */ + 10, 11, 12, 13, 14, 15, 16, 17, /* 0xe8 */ + 19, 20, 21, 22, 7, 9, 4, 31, /* 0xf0 */ + 28, 30, 255, 26, 25, 29, 1, 18, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_CP1251[] = { + + (unsigned char*)"\xef\xf1\xed\xe2\xee\xe8\xf2\xea\xe4\xe1\xec\xc2\xcd\xcf\xe7\xf0\xd1\xf7\xf3\xe3\xce\xca\xc8\xd2\xeb\xcc\xc4\xe5\xc0\xfd\xff\xd0\xc1\xe6\xe0\xc3\xc7\xdf\xd7\xf5\xd3\xdd\xcb\xf8\xc5\xd5\xf4\xc6\xd4\xf6\xd8", /* FILLCHAR */ + (unsigned char*)".\xf2\xe4\xf9\xe1", /* 0xfe */ + (unsigned char*)".\xeb\xf2\xea\xed\xe7\xf1\xec\xe2\xf0\xe4\xff\xe5\xfe\xe6\xf8\xf5\xe9\xe1\xf7\xef\xe3\xf3\xf9\xf6", /* 0xe0 */ + (unsigned char*)"\xfb\xee\xe5\xf0\xf3\xe0\xe8\xeb\xff.\xed", /* 0xe1 */ + (unsigned char*)"\xe5\xe8\xe0.\xee", /* 0xf6 */ + (unsigned char*)"\xe5\xe0\xee\xe8\xf3\xed\xf0.\xe2\xfb\xfc\xeb\xff\xf1\xea\xf6", /* 0xe4 */ + (unsigned char*)".\xed\xf0\xeb\xf2\xf1\xec\xe3\xe4\xe9\xea\xe2\xe7\xe1\xf7\xe5\xef\xf8\xe6\xf9\xf5\xf6\xee", /* 0xe5 */ + (unsigned char*)"\xee\xe8", /* 0xf4 */ + (unsigned char*)"\xee\xe0\xeb\xf0\xe4\xe8.\xf3\xed\xe5", /* 0xe3 */ + (unsigned char*)".\xee\xe0\xe8\xed", /* 0xf5 */ + (unsigned char*)".\xeb\xf2\xed\xea\xec\xf1\xe2\xe7\xe5\xf5\xe4\xf7\xe9\xff\xf0\xf6\xe3\xe8\xf8\xe1\xee\xe6\xef\xe0\xfe", /* 0xe8 */ + (unsigned char*)".\xf1\xf2\xed\xf7\xe4", /* 0xe9 */ + (unsigned char*)"\xe0\xee.\xe8\xf3\xf0\xf2\xeb\xf1\xe5\xed", /* 0xea */ + (unsigned char*)".\xe8\xee\xe0\xe5\xfc\xf1\xff\xf3\xfe\xfb\xea\xed\xeb", /* 0xeb */ + (unsigned char*)".\xee\xe5\xe0\xe8\xf3\xed\xfb\xff", /* 0xec */ + (unsigned char*)"\xe0\xee\xe5\xe8.\xfb\xf3\xed\xff\xfc\xf2\xe4\xf1\xea\xf6", /* 0xed */ + (unsigned char*)".\xe2\xf0\xf2\xeb\xf1\xed\xec\xe4\xe3\xe9\xe1\xea\xe6\xf7\xe5\xef\xe7\xf8\xe8\xff\xf5\xee\xf9\xfe", /* 0xee */ + (unsigned char*)"\xee\xf0\xe5\xe0\xe8\xeb\xf3\xfb\xff", /* 0xef */ + (unsigned char*)".\xf2\xeb\xe4\xed\xf1\xec\xe2\xe7\xf9", /* 0xff */ + (unsigned char*)"\xee\xe0\xe5\xe8\xf3.\xfb\xed\xff\xf2\xfc\xe2\xec\xe4\xea\xe6\xf1\xfe", /* 0xf0 */ + (unsigned char*)"\xf2\xff\xea\xe5.\xfc\xee\xeb\xe8\xef\xe0\xed\xe2\xec\xf1\xf3\xfb\xf7", /* 0xf1 */ + (unsigned char*)"\xee.\xe0\xe5\xfc\xe8\xf0\xe2\xfb\xf3\xf1\xed\xea\xff\xeb", /* 0xf2 */ + (unsigned char*)".\xeb\xe4\xf2\xf1\xec\xe6\xe3\xfe\xf7\xf0\xea\xe1\xef\xf8\xe2\xed\xf5\xe7\xf9", /* 0xf3 */ + (unsigned char*)"\xe5\xe8\xe0\xed\xe4.\xf3", /* 0xe6 */ + (unsigned char*)"\xe0\xee.\xe5\xe8\xfb\xf1\xed\xf0\xf3\xeb\xf8\xe7\xf2\xe4\xff\xea", /* 0xe2 */ + (unsigned char*)".\xed\xea\xf1\xf8\xe5\xfe\xff", /* 0xfc */ + (unsigned char*)".\xeb\xe9\xe5\xec\xf5\xe2\xf2\xf1\xf8\xf0\xe1", /* 0xfb */ + (unsigned char*)"\xe0\xed.\xe4\xe2\xee\xe8\xe5\xf3\xfb\xec\xf0\xff\xe3\xeb", /* 0xe7 */ + (unsigned char*)"\xe5\xe8\xe0\xfc\xea\xeb\xed\xee\xf3", /* 0xf8 */ + (unsigned char*)"\xf2", /* 0xfd */ + (unsigned char*)"\xe5\xe8\xe0", /* 0xf9 */ + (unsigned char*)"\xe5\xf2\xe0\xe8\xed\xf3\xea.\xfc", /* 0xf7 */ + (unsigned char*)".", /* 0xde */ + (unsigned char*)".\xcb\xd2\xca\xcd\xc7\xc2\xd1\xcc\xd0\xdf\xc4\xed", /* 0xc0 */ + (unsigned char*)"\xdb\xce\xc5", /* 0xc1 */ + (unsigned char*)"\xc5\xc0\xce\xe0\xc8\xd3.\xee\xcd", /* 0xc4 */ + (unsigned char*)".\xd0\xcd\xcb\xd2\xd1\xcc\xc4\xc3\xc2\xc9\xc1", /* 0xc5 */ + (unsigned char*)"\xce\xee", /* 0xc3 */ + (unsigned char*)".\xce", /* 0xd5 */ + (unsigned char*)".\xcb\xd2\xcd\xd1\xca\xcc\xc2\xc4\xc5\xc7\xd7", /* 0xc8 */ + (unsigned char*)".", /* 0xc9 */ + (unsigned char*)"\xc0\xce.\xc8\xe0\xee\xd3\xd0", /* 0xca */ + (unsigned char*)".\xc8\xce\xc0\xc5\xdc\xd1", /* 0xcb */ + (unsigned char*)".\xe0\xc5\xce\xc0\xc8\xd3\xee\xcd", /* 0xcc */ + (unsigned char*)"\xc5\xc0\xce\xc8\xe5.\xe0\xdb\xd3\xee\xcd\xf3\xdf", /* 0xcd */ + (unsigned char*)".\xc2\xed\xd2\xcd\xd1\xcb\xd0\xcc\xc4\xc3\xc9\xc1\xc6\xc5\xca\xd7\xcf", /* 0xce */ + (unsigned char*)"\xce\xd0\xee\xf0\xc5\xe0\xc0", /* 0xcf */ + (unsigned char*)".\xd2", /* 0xdf */ + (unsigned char*)"\xce\xc0\xc5\xc8\xd3.\xf3\xe0", /* 0xd0 */ + (unsigned char*)"\xd2.\xdf\xca\xc5\xdc\xcb\xce\xcf\xf2\xc8\xea", /* 0xd1 */ + (unsigned char*)"\xce.\xc0\xdc\xc5\xc8\xd0\xee\xc2\xe0\xdb\xd3", /* 0xd2 */ + (unsigned char*)".\xc4\xcb\xd2", /* 0xd3 */ + (unsigned char*)"\xc5", /* 0xc6 */ + (unsigned char*)".\xce\xc0\xc5\xc8\xfb\xdb\xee\xd1\xe8\xf1\xe0", /* 0xc2 */ + (unsigned char*)".", /* 0xdc */ + (unsigned char*)".\xcb\xc9", /* 0xdb */ + (unsigned char*)"\xc0\xe0\xcd.", /* 0xc7 */ + (unsigned char*)"\xc5\xc8", /* 0xd8 */ + (unsigned char*)"\xf2\xd2", /* 0xdd */ + (unsigned char*)"\xc5", /* 0xd9 */ + (unsigned char*)"\xc5\xd2\xf2\xc0\xc8", /* 0xd7 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO88595[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 4711, 935, 2406, 896, 1917, 5075, 570, 969, /* 0xd0 */ + 3824, 819, 2062, 2651, 1688, 3538, 5972, 1529, /* 0xd8 */ + 2752, 2929, 3628, 1580, 0, 597, 244, 754, /* 0xe0 */ + 500, 0, 0, 1284, 1202, 0, 418, 1262, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_ISO88595[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 255, 255, 255, 255, 255, 255, 255, /* 0xa0 */ + 255, 255, 255, 255, 255, 0, 255, 255, /* 0xa8 */ + 33, 34, 53, 37, 35, 36, 52, 56, /* 0xb0 */ + 39, 40, 41, 42, 43, 44, 45, 46, /* 0xb8 */ + 48, 49, 50, 51, 255, 38, 255, 60, /* 0xc0 */ + 57, 59, 255, 55, 54, 58, 32, 47, /* 0xc8 */ + 2, 3, 24, 8, 5, 6, 23, 27, /* 0xd0 */ + 10, 11, 12, 13, 14, 15, 16, 17, /* 0xd8 */ + 19, 20, 21, 22, 7, 9, 4, 31, /* 0xe0 */ + 28, 30, 255, 26, 25, 29, 1, 18, /* 0xe8 */ + 0, 255, 255, 255, 255, 255, 255, 255, /* 0xf0 */ + 255, 255, 255, 255, 255, 0, 255, 255, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_ISO88595[] = { + + (unsigned char*)"\xdf\xe1\xdd\xd2\xde\xd8\xe2\xda\xd4\xd1\xdc\xb2\xbd\xbf\xd7\xe0\xc1\xe7\xe3\xd3\xbe\xba\xb8\xc2\xdb\xbc\xb4\xd5\xb0\xed\xef\xc0\xb1\xd6\xd0\xb3\xb7\xcf\xc7\xe5\xc3\xcd\xbb\xe8\xb5\xc5\xe4\xb6\xc4\xe6\xc8", /* FILLCHAR */ + (unsigned char*)".\xe2\xd4\xe9\xd1", /* 0xee */ + (unsigned char*)".\xdb\xe2\xda\xdd\xd7\xe1\xdc\xd2\xe0\xd4\xef\xd5\xee\xd6\xe8\xe5\xd9\xd1\xe7\xdf\xd3\xe3\xe9\xe6", /* 0xd0 */ + (unsigned char*)"\xeb\xde\xd5\xe0\xe3\xd0\xd8\xdb\xef.\xdd", /* 0xd1 */ + (unsigned char*)"\xd5\xd8\xd0.\xde", /* 0xe6 */ + (unsigned char*)"\xd5\xd0\xde\xd8\xe3\xdd\xe0.\xd2\xeb\xec\xdb\xef\xe1\xda\xe6", /* 0xd4 */ + (unsigned char*)".\xdd\xe0\xdb\xe2\xe1\xdc\xd3\xd4\xd9\xda\xd2\xd7\xd1\xe7\xd5\xdf\xe8\xd6\xe9\xe5\xe6\xde", /* 0xd5 */ + (unsigned char*)"\xde\xd8", /* 0xe4 */ + (unsigned char*)"\xde\xd0\xdb\xe0\xd4\xd8.\xe3\xdd\xd5", /* 0xd3 */ + (unsigned char*)".\xde\xd0\xd8\xdd", /* 0xe5 */ + (unsigned char*)".\xdb\xe2\xdd\xda\xdc\xe1\xd2\xd7\xd5\xe5\xd4\xe7\xd9\xef\xe0\xe6\xd3\xd8\xe8\xd1\xde\xd6\xdf\xd0\xee", /* 0xd8 */ + (unsigned char*)".\xe1\xe2\xdd\xe7\xd4", /* 0xd9 */ + (unsigned char*)"\xd0\xde.\xd8\xe3\xe0\xe2\xdb\xe1\xd5\xdd", /* 0xda */ + (unsigned char*)".\xd8\xde\xd0\xd5\xec\xe1\xef\xe3\xee\xeb\xda\xdd\xdb", /* 0xdb */ + (unsigned char*)".\xde\xd5\xd0\xd8\xe3\xdd\xeb\xef", /* 0xdc */ + (unsigned char*)"\xd0\xde\xd5\xd8.\xeb\xe3\xdd\xef\xec\xe2\xd4\xe1\xda\xe6", /* 0xdd */ + (unsigned char*)".\xd2\xe0\xe2\xdb\xe1\xdd\xdc\xd4\xd3\xd9\xd1\xda\xd6\xe7\xd5\xdf\xd7\xe8\xd8\xef\xe5\xde\xe9\xee", /* 0xde */ + (unsigned char*)"\xde\xe0\xd5\xd0\xd8\xdb\xe3\xeb\xef", /* 0xdf */ + (unsigned char*)".\xe2\xdb\xd4\xdd\xe1\xdc\xd2\xd7\xe9", /* 0xef */ + (unsigned char*)"\xde\xd0\xd5\xd8\xe3.\xeb\xdd\xef\xe2\xec\xd2\xdc\xd4\xda\xd6\xe1\xee", /* 0xe0 */ + (unsigned char*)"\xe2\xef\xda\xd5.\xec\xde\xdb\xd8\xdf\xd0\xdd\xd2\xdc\xe1\xe3\xeb\xe7", /* 0xe1 */ + (unsigned char*)"\xde.\xd0\xd5\xec\xd8\xe0\xd2\xeb\xe3\xe1\xdd\xda\xef\xdb", /* 0xe2 */ + (unsigned char*)".\xdb\xd4\xe2\xe1\xdc\xd6\xd3\xee\xe7\xe0\xda\xd1\xdf\xe8\xd2\xdd\xe5\xd7\xe9", /* 0xe3 */ + (unsigned char*)"\xd5\xd8\xd0\xdd\xd4.\xe3", /* 0xd6 */ + (unsigned char*)"\xd0\xde.\xd5\xd8\xeb\xe1\xdd\xe0\xe3\xdb\xe8\xd7\xe2\xd4\xef\xda", /* 0xd2 */ + (unsigned char*)".\xdd\xda\xe1\xe8\xd5\xee\xef", /* 0xec */ + (unsigned char*)".\xdb\xd9\xd5\xdc\xe5\xd2\xe2\xe1\xe8\xe0\xd1", /* 0xeb */ + (unsigned char*)"\xd0\xdd.\xd4\xd2\xde\xd8\xd5\xe3\xeb\xdc\xe0\xef\xd3\xdb", /* 0xd7 */ + (unsigned char*)"\xd5\xd8\xd0\xec\xda\xdb\xdd\xde\xe3", /* 0xe8 */ + (unsigned char*)"\xe2", /* 0xed */ + (unsigned char*)"\xd5\xd8\xd0", /* 0xe9 */ + (unsigned char*)"\xd5\xe2\xd0\xd8\xdd\xe3\xda.\xec", /* 0xe7 */ + (unsigned char*)".", /* 0xce */ + (unsigned char*)".\xbb\xc2\xba\xbd\xb7\xb2\xc1\xbc\xc0\xcf\xb4\xdd", /* 0xb0 */ + (unsigned char*)"\xcb\xbe\xb5", /* 0xb1 */ + (unsigned char*)"\xb5\xb0\xbe\xd0\xb8\xc3.\xde\xbd", /* 0xb4 */ + (unsigned char*)".\xc0\xbd\xbb\xc2\xc1\xbc\xb4\xb3\xb2\xb9\xb1", /* 0xb5 */ + (unsigned char*)"\xbe\xde", /* 0xb3 */ + (unsigned char*)".\xbe", /* 0xc5 */ + (unsigned char*)".\xbb\xc2\xbd\xc1\xba\xbc\xb2\xb4\xb5\xb7\xc7", /* 0xb8 */ + (unsigned char*)".", /* 0xb9 */ + (unsigned char*)"\xb0\xbe.\xb8\xd0\xde\xc3\xc0", /* 0xba */ + (unsigned char*)".\xb8\xbe\xb0\xb5\xcc\xc1", /* 0xbb */ + (unsigned char*)".\xd0\xb5\xbe\xb0\xb8\xc3\xde\xbd", /* 0xbc */ + (unsigned char*)"\xb5\xb0\xbe\xb8\xd5.\xd0\xcb\xc3\xde\xbd\xe3\xcf", /* 0xbd */ + (unsigned char*)".\xb2\xdd\xc2\xbd\xc1\xbb\xc0\xbc\xb4\xb3\xb9\xb1\xb6\xb5\xba\xc7\xbf", /* 0xbe */ + (unsigned char*)"\xbe\xc0\xde\xe0\xb5\xd0\xb0", /* 0xbf */ + (unsigned char*)".\xc2", /* 0xcf */ + (unsigned char*)"\xbe\xb0\xb5\xb8\xc3.\xe3\xd0", /* 0xc0 */ + (unsigned char*)"\xc2.\xcf\xba\xb5\xcc\xbb\xbe\xbf\xe2\xb8\xda", /* 0xc1 */ + (unsigned char*)"\xbe.\xb0\xcc\xb5\xb8\xc0\xde\xb2\xd0\xcb\xc3", /* 0xc2 */ + (unsigned char*)".\xb4\xbb\xc2", /* 0xc3 */ + (unsigned char*)"\xb5", /* 0xb6 */ + (unsigned char*)".\xbe\xb0\xb5\xb8\xeb\xcb\xde\xc1\xd8\xe1\xd0", /* 0xb2 */ + (unsigned char*)".", /* 0xcc */ + (unsigned char*)".\xbb\xb9", /* 0xcb */ + (unsigned char*)"\xb0\xd0\xbd.", /* 0xb7 */ + (unsigned char*)"\xb5\xb8", /* 0xc8 */ + (unsigned char*)"\xe2\xc2", /* 0xcd */ + (unsigned char*)"\xb5", /* 0xc9 */ + (unsigned char*)"\xb5\xc2\xe2\xb0\xb8", /* 0xc7 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM866[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 4711, 935, 2406, 896, 1917, 5075, 570, 969, /* 0xa0 */ + 3824, 819, 2062, 2651, 1688, 3538, 5972, 1529, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 2752, 2929, 3628, 1580, 0, 597, 244, 754, /* 0xe0 */ + 500, 0, 0, 1284, 1202, 0, 418, 1262, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_IBM866[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 33, 34, 53, 37, 35, 36, 52, 56, /* 0x80 */ + 39, 40, 41, 42, 43, 44, 45, 46, /* 0x88 */ + 48, 49, 50, 51, 255, 38, 255, 60, /* 0x90 */ + 57, 59, 255, 55, 54, 58, 32, 47, /* 0x98 */ + 2, 3, 24, 8, 5, 6, 23, 27, /* 0xa0 */ + 10, 11, 12, 13, 14, 15, 16, 17, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 19, 20, 21, 22, 7, 9, 4, 31, /* 0xe0 */ + 28, 30, 255, 26, 25, 29, 1, 18, /* 0xe8 */ + 255, 255, 255, 255, 255, 255, 255, 255, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_IBM866[] = { + + (unsigned char*)"\xaf\xe1\xad\xa2\xae\xa8\xe2\xaa\xa4\xa1\xac\x82\x8d\x8f\xa7\xe0\x91\xe7\xe3\xa3\x8e\x8a\x88\x92\xab\x8c\x84\xa5\x80\xed\xef\x90\x81\xa6\xa0\x83\x87\x9f\x97\xe5\x93\x9d\x8b\xe8\x85\x95\xe4\x86\x94\xe6\x98", /* FILLCHAR */ + (unsigned char*)".\xe2\xa4\xe9\xa1", /* 0xee */ + (unsigned char*)".\xab\xe2\xaa\xad\xa7\xe1\xac\xa2\xe0\xa4\xef\xa5\xee\xa6\xe8\xe5\xa9\xa1\xe7\xaf\xa3\xe3\xe9\xe6", /* 0xa0 */ + (unsigned char*)"\xeb\xae\xa5\xe0\xe3\xa0\xa8\xab\xef.\xad", /* 0xa1 */ + (unsigned char*)"\xa5\xa8\xa0.\xae", /* 0xe6 */ + (unsigned char*)"\xa5\xa0\xae\xa8\xe3\xad\xe0.\xa2\xeb\xec\xab\xef\xe1\xaa\xe6", /* 0xa4 */ + (unsigned char*)".\xad\xe0\xab\xe2\xe1\xac\xa3\xa4\xa9\xaa\xa2\xa7\xa1\xe7\xa5\xaf\xe8\xa6\xe9\xe5\xe6\xae", /* 0xa5 */ + (unsigned char*)"\xae\xa8", /* 0xe4 */ + (unsigned char*)"\xae\xa0\xab\xe0\xa4\xa8.\xe3\xad\xa5", /* 0xa3 */ + (unsigned char*)".\xae\xa0\xa8\xad", /* 0xe5 */ + (unsigned char*)".\xab\xe2\xad\xaa\xac\xe1\xa2\xa7\xa5\xe5\xa4\xe7\xa9\xef\xe0\xe6\xa3\xa8\xe8\xa1\xae\xa6\xaf\xa0\xee", /* 0xa8 */ + (unsigned char*)".\xe1\xe2\xad\xe7\xa4", /* 0xa9 */ + (unsigned char*)"\xa0\xae.\xa8\xe3\xe0\xe2\xab\xe1\xa5\xad", /* 0xaa */ + (unsigned char*)".\xa8\xae\xa0\xa5\xec\xe1\xef\xe3\xee\xeb\xaa\xad\xab", /* 0xab */ + (unsigned char*)".\xae\xa5\xa0\xa8\xe3\xad\xeb\xef", /* 0xac */ + (unsigned char*)"\xa0\xae\xa5\xa8.\xeb\xe3\xad\xef\xec\xe2\xa4\xe1\xaa\xe6", /* 0xad */ + (unsigned char*)".\xa2\xe0\xe2\xab\xe1\xad\xac\xa4\xa3\xa9\xa1\xaa\xa6\xe7\xa5\xaf\xa7\xe8\xa8\xef\xe5\xae\xe9\xee", /* 0xae */ + (unsigned char*)"\xae\xe0\xa5\xa0\xa8\xab\xe3\xeb\xef", /* 0xaf */ + (unsigned char*)".\xe2\xab\xa4\xad\xe1\xac\xa2\xa7\xe9", /* 0xef */ + (unsigned char*)"\xae\xa0\xa5\xa8\xe3.\xeb\xad\xef\xe2\xec\xa2\xac\xa4\xaa\xa6\xe1\xee", /* 0xe0 */ + (unsigned char*)"\xe2\xef\xaa\xa5.\xec\xae\xab\xa8\xaf\xa0\xad\xa2\xac\xe1\xe3\xeb\xe7", /* 0xe1 */ + (unsigned char*)"\xae.\xa0\xa5\xec\xa8\xe0\xa2\xeb\xe3\xe1\xad\xaa\xef\xab", /* 0xe2 */ + (unsigned char*)".\xab\xa4\xe2\xe1\xac\xa6\xa3\xee\xe7\xe0\xaa\xa1\xaf\xe8\xa2\xad\xe5\xa7\xe9", /* 0xe3 */ + (unsigned char*)"\xa5\xa8\xa0\xad\xa4.\xe3", /* 0xa6 */ + (unsigned char*)"\xa0\xae.\xa5\xa8\xeb\xe1\xad\xe0\xe3\xab\xe8\xa7\xe2\xa4\xef\xaa", /* 0xa2 */ + (unsigned char*)".\xad\xaa\xe1\xe8\xa5\xee\xef", /* 0xec */ + (unsigned char*)".\xab\xa9\xa5\xac\xe5\xa2\xe2\xe1\xe8\xe0\xa1", /* 0xeb */ + (unsigned char*)"\xa0\xad.\xa4\xa2\xae\xa8\xa5\xe3\xeb\xac\xe0\xef\xa3\xab", /* 0xa7 */ + (unsigned char*)"\xa5\xa8\xa0\xec\xaa\xab\xad\xae\xe3", /* 0xe8 */ + (unsigned char*)"\xe2", /* 0xed */ + (unsigned char*)"\xa5\xa8\xa0", /* 0xe9 */ + (unsigned char*)"\xa5\xe2\xa0\xa8\xad\xe3\xaa.\xec", /* 0xe7 */ + (unsigned char*)".", /* 0x9e */ + (unsigned char*)".\x8b\x92\x8a\x8d\x87\x82\x91\x8c\x90\x9f\x84\xad", /* 0x80 */ + (unsigned char*)"\x9b\x8e\x85", /* 0x81 */ + (unsigned char*)"\x85\x80\x8e\xa0\x88\x93.\xae\x8d", /* 0x84 */ + (unsigned char*)".\x90\x8d\x8b\x92\x91\x8c\x84\x83\x82\x89\x81", /* 0x85 */ + (unsigned char*)"\x8e\xae", /* 0x83 */ + (unsigned char*)".\x8e", /* 0x95 */ + (unsigned char*)".\x8b\x92\x8d\x91\x8a\x8c\x82\x84\x85\x87\x97", /* 0x88 */ + (unsigned char*)".", /* 0x89 */ + (unsigned char*)"\x80\x8e.\x88\xa0\xae\x93\x90", /* 0x8a */ + (unsigned char*)".\x88\x8e\x80\x85\x9c\x91", /* 0x8b */ + (unsigned char*)".\xa0\x85\x8e\x80\x88\x93\xae\x8d", /* 0x8c */ + (unsigned char*)"\x85\x80\x8e\x88\xa5.\xa0\x9b\x93\xae\x8d\xe3\x9f", /* 0x8d */ + (unsigned char*)".\x82\xad\x92\x8d\x91\x8b\x90\x8c\x84\x83\x89\x81\x86\x85\x8a\x97\x8f", /* 0x8e */ + (unsigned char*)"\x8e\x90\xae\xe0\x85\xa0\x80", /* 0x8f */ + (unsigned char*)".\x92", /* 0x9f */ + (unsigned char*)"\x8e\x80\x85\x88\x93.\xe3\xa0", /* 0x90 */ + (unsigned char*)"\x92.\x9f\x8a\x85\x9c\x8b\x8e\x8f\xe2\x88\xaa", /* 0x91 */ + (unsigned char*)"\x8e.\x80\x9c\x85\x88\x90\xae\x82\xa0\x9b\x93", /* 0x92 */ + (unsigned char*)".\x84\x8b\x92", /* 0x93 */ + (unsigned char*)"\x85", /* 0x86 */ + (unsigned char*)".\x8e\x80\x85\x88\xeb\x9b\xae\x91\xa8\xe1\xa0", /* 0x82 */ + (unsigned char*)".", /* 0x9c */ + (unsigned char*)".\x8b\x89", /* 0x9b */ + (unsigned char*)"\x80\xa0\x8d.", /* 0x87 */ + (unsigned char*)"\x85\x88", /* 0x98 */ + (unsigned char*)"\xe2\x92", /* 0x9d */ + (unsigned char*)"\x85", /* 0x99 */ + (unsigned char*)"\x85\x92\xe2\x80\x88", /* 0x97 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_MACCYR[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 1262, /* 0xd8 */ + 4711, 935, 2406, 896, 1917, 5075, 570, 969, /* 0xe0 */ + 3824, 819, 2062, 2651, 1688, 3538, 5972, 1529, /* 0xe8 */ + 2752, 2929, 3628, 1580, 0, 597, 244, 754, /* 0xf0 */ + 500, 0, 0, 1284, 1202, 0, 418, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_MACCYR[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 33, 34, 53, 37, 35, 36, 52, 56, /* 0x80 */ + 39, 40, 41, 42, 43, 44, 45, 46, /* 0x88 */ + 48, 49, 50, 51, 255, 38, 255, 60, /* 0x90 */ + 57, 59, 255, 55, 54, 58, 32, 47, /* 0x98 */ + 0, 0, 255, 0, 0, 0, 0, 255, /* 0xa0 */ + 0, 0, 0, 255, 255, 0, 255, 255, /* 0xa8 */ + 0, 0, 0, 0, 255, 0, 255, 255, /* 0xb0 */ + 255, 255, 255, 255, 255, 255, 255, 255, /* 0xb8 */ + 255, 255, 0, 0, 255, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 255, 255, 255, 255, 255, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 255, 255, 255, 255, 0, 255, 255, 18, /* 0xd8 */ + 2, 3, 24, 8, 5, 6, 23, 27, /* 0xe0 */ + 10, 11, 12, 13, 14, 15, 16, 17, /* 0xe8 */ + 19, 20, 21, 22, 7, 9, 4, 31, /* 0xf0 */ + 28, 30, 255, 26, 25, 29, 1, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_MACCYR[] = { + + (unsigned char*)"\xef\xf1\xed\xe2\xee\xe8\xf2\xea\xe4\xe1\xec\x82\x8d\x8f\xe7\xf0\x91\xf7\xf3\xe3\x8e\x8a\x88\x92\xeb\x8c\x84\xe5\x80\xfd\xdf\x90\x81\xe6\xe0\x83\x87\x9f\x97\xf5\x93\x9d\x8b\xf8\x85\x95\xf4\x86\x94\xf6\x98", /* FILLCHAR */ + (unsigned char*)".\xf2\xe4\xf9\xe1", /* 0xfe */ + (unsigned char*)".\xeb\xf2\xea\xed\xe7\xf1\xec\xe2\xf0\xe4\xdf\xe5\xfe\xe6\xf8\xf5\xe9\xe1\xf7\xef\xe3\xf3\xf9\xf6", /* 0xe0 */ + (unsigned char*)"\xfb\xee\xe5\xf0\xf3\xe0\xe8\xeb\xdf.\xed", /* 0xe1 */ + (unsigned char*)"\xe5\xe8\xe0.\xee", /* 0xf6 */ + (unsigned char*)"\xe5\xe0\xee\xe8\xf3\xed\xf0.\xe2\xfb\xfc\xeb\xdf\xf1\xea\xf6", /* 0xe4 */ + (unsigned char*)".\xed\xf0\xeb\xf2\xf1\xec\xe3\xe4\xe9\xea\xe2\xe7\xe1\xf7\xe5\xef\xf8\xe6\xf9\xf5\xf6\xee", /* 0xe5 */ + (unsigned char*)"\xee\xe8", /* 0xf4 */ + (unsigned char*)"\xee\xe0\xeb\xf0\xe4\xe8.\xf3\xed\xe5", /* 0xe3 */ + (unsigned char*)".\xee\xe0\xe8\xed", /* 0xf5 */ + (unsigned char*)".\xeb\xf2\xed\xea\xec\xf1\xe2\xe7\xe5\xf5\xe4\xf7\xe9\xdf\xf0\xf6\xe3\xe8\xf8\xe1\xee\xe6\xef\xe0\xfe", /* 0xe8 */ + (unsigned char*)".\xf1\xf2\xed\xf7\xe4", /* 0xe9 */ + (unsigned char*)"\xe0\xee.\xe8\xf3\xf0\xf2\xeb\xf1\xe5\xed", /* 0xea */ + (unsigned char*)".\xe8\xee\xe0\xe5\xfc\xf1\xdf\xf3\xfe\xfb\xea\xed\xeb", /* 0xeb */ + (unsigned char*)".\xee\xe5\xe0\xe8\xf3\xed\xfb\xdf", /* 0xec */ + (unsigned char*)"\xe0\xee\xe5\xe8.\xfb\xf3\xed\xdf\xfc\xf2\xe4\xf1\xea\xf6", /* 0xed */ + (unsigned char*)".\xe2\xf0\xf2\xeb\xf1\xed\xec\xe4\xe3\xe9\xe1\xea\xe6\xf7\xe5\xef\xe7\xf8\xe8\xdf\xf5\xee\xf9\xfe", /* 0xee */ + (unsigned char*)"\xee\xf0\xe5\xe0\xe8\xeb\xf3\xfb\xdf", /* 0xef */ + (unsigned char*)".\xf2\xeb\xe4\xed\xf1\xec\xe2\xe7\xf9", /* 0xdf */ + (unsigned char*)"\xee\xe0\xe5\xe8\xf3.\xfb\xed\xdf\xf2\xfc\xe2\xec\xe4\xea\xe6\xf1\xfe", /* 0xf0 */ + (unsigned char*)"\xf2\xdf\xea\xe5.\xfc\xee\xeb\xe8\xef\xe0\xed\xe2\xec\xf1\xf3\xfb\xf7", /* 0xf1 */ + (unsigned char*)"\xee.\xe0\xe5\xfc\xe8\xf0\xe2\xfb\xf3\xf1\xed\xea\xdf\xeb", /* 0xf2 */ + (unsigned char*)".\xeb\xe4\xf2\xf1\xec\xe6\xe3\xfe\xf7\xf0\xea\xe1\xef\xf8\xe2\xed\xf5\xe7\xf9", /* 0xf3 */ + (unsigned char*)"\xe5\xe8\xe0\xed\xe4.\xf3", /* 0xe6 */ + (unsigned char*)"\xe0\xee.\xe5\xe8\xfb\xf1\xed\xf0\xf3\xeb\xf8\xe7\xf2\xe4\xdf\xea", /* 0xe2 */ + (unsigned char*)".\xed\xea\xf1\xf8\xe5\xfe\xdf", /* 0xfc */ + (unsigned char*)".\xeb\xe9\xe5\xec\xf5\xe2\xf2\xf1\xf8\xf0\xe1", /* 0xfb */ + (unsigned char*)"\xe0\xed.\xe4\xe2\xee\xe8\xe5\xf3\xfb\xec\xf0\xdf\xe3\xeb", /* 0xe7 */ + (unsigned char*)"\xe5\xe8\xe0\xfc\xea\xeb\xed\xee\xf3", /* 0xf8 */ + (unsigned char*)"\xf2", /* 0xfd */ + (unsigned char*)"\xe5\xe8\xe0", /* 0xf9 */ + (unsigned char*)"\xe5\xf2\xe0\xe8\xed\xf3\xea.\xfc", /* 0xf7 */ + (unsigned char*)".", /* 0x9e */ + (unsigned char*)".\x8b\x92\x8a\x8d\x87\x82\x91\x8c\x90\x9f\x84\xed", /* 0x80 */ + (unsigned char*)"\x9b\x8e\x85", /* 0x81 */ + (unsigned char*)"\x85\x80\x8e\xe0\x88\x93.\xee\x8d", /* 0x84 */ + (unsigned char*)".\x90\x8d\x8b\x92\x91\x8c\x84\x83\x82\x89\x81", /* 0x85 */ + (unsigned char*)"\x8e\xee", /* 0x83 */ + (unsigned char*)".\x8e", /* 0x95 */ + (unsigned char*)".\x8b\x92\x8d\x91\x8a\x8c\x82\x84\x85\x87\x97", /* 0x88 */ + (unsigned char*)".", /* 0x89 */ + (unsigned char*)"\x80\x8e.\x88\xe0\xee\x93\x90", /* 0x8a */ + (unsigned char*)".\x88\x8e\x80\x85\x9c\x91", /* 0x8b */ + (unsigned char*)".\xe0\x85\x8e\x80\x88\x93\xee\x8d", /* 0x8c */ + (unsigned char*)"\x85\x80\x8e\x88\xe5.\xe0\x9b\x93\xee\x8d\xf3\x9f", /* 0x8d */ + (unsigned char*)".\x82\xed\x92\x8d\x91\x8b\x90\x8c\x84\x83\x89\x81\x86\x85\x8a\x97\x8f", /* 0x8e */ + (unsigned char*)"\x8e\x90\xee\xf0\x85\xe0\x80", /* 0x8f */ + (unsigned char*)".\x92", /* 0x9f */ + (unsigned char*)"\x8e\x80\x85\x88\x93.\xf3\xe0", /* 0x90 */ + (unsigned char*)"\x92.\x9f\x8a\x85\x9c\x8b\x8e\x8f\xf2\x88\xea", /* 0x91 */ + (unsigned char*)"\x8e.\x80\x9c\x85\x88\x90\xee\x82\xe0\x9b\x93", /* 0x92 */ + (unsigned char*)".\x84\x8b\x92", /* 0x93 */ + (unsigned char*)"\x85", /* 0x86 */ + (unsigned char*)".\x8e\x80\x85\x88\xfb\x9b\xee\x91\xe8\xf1\xe0", /* 0x82 */ + (unsigned char*)".", /* 0x9c */ + (unsigned char*)".\x8b\x89", /* 0x9b */ + (unsigned char*)"\x80\xe0\x8d.", /* 0x87 */ + (unsigned char*)"\x85\x88", /* 0x98 */ + (unsigned char*)"\xf2\x92", /* 0x9d */ + (unsigned char*)"\x85", /* 0x99 */ + (unsigned char*)"\x85\x92\xf2\x80\x88", /* 0x97 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/totals.pl. */ +static const unsigned short int SIGNIFICANT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 4711, 935, 2406, 896, 1917, 5075, 570, 969, /* 0xa0 */ + 3824, 819, 2062, 2651, 1688, 3538, 5972, 1529, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 418, 4711, 935, 244, 1917, 5075, 0, 896, /* 0xc0 */ + 597, 3824, 819, 2062, 2651, 1688, 3538, 5972, /* 0xc8 */ + 6240, 2197, 5158, 3825, 5545, 6655, 1140, 3375, /* 0xd0 */ + 5026, 2103, 3031, 3151, 1688, 3538, 6726, 2791, /* 0xd8 */ + 14926, 7728, 12068, 4952, 3834, 11344, 1628, 3446, /* 0xe0 */ + 8648, 1638, 4124, 7870, 5780, 7076, 12780, 5582, /* 0xe8 */ + 5504, 5858, 7256, 3160, 0, 1194, 488, 1508, /* 0xf0 */ + 1000, 0, 0, 2568, 2404, 0, 836, 1262, /* 0xf8 */ +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define WEIGHT_SUM 56712 + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const char *const CHARSET_NAMES[] = { + "koi8r", + "cp1251", + "iso88595", + "ibm866", + "maccyr", +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned short int *const CHARSET_WEIGHTS[] = { + RAW_KOI8R, + RAW_CP1251, + RAW_ISO88595, + RAW_IBM866, + RAW_MACCYR, +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned char *const CHARSET_LETTERS[] = { + LETTER_KOI8R, + LETTER_CP1251, + LETTER_ISO88595, + LETTER_IBM866, + LETTER_MACCYR, +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned char **const CHARSET_PAIRS[] = { + PAIR_KOI8R, + PAIR_CP1251, + PAIR_ISO88595, + PAIR_IBM866, + PAIR_MACCYR, +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define NCHARSETS 5 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/slovak/cp1250.base b/wlx/wayland_qt_base/build/enca-1.19/data/slovak/cp1250.base new file mode 100644 index 0000000..785e861 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/slovak/cp1250.base @@ -0,0 +1,24 @@ + 115 + 16 + 98 + 2984 + 2032 + 2996 + 33 + 1413 + 171 + 167 + 127 + 47 + 36 + 5864 + 254 + 3401 + 1955 + 3503 + 639 + 515 + 327 + 510 + 2386 + 2794 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/slovak/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/slovak/doit.sh new file mode 100755 index 0000000..18d2ade --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/slovak/doit.sh @@ -0,0 +1,2 @@ +#! /bin/bash +../doit.sh cp1250 iso88592 ibm852 keybcs2 macce koi8cs2 cork diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/slovak/rawcounts.cp1250 b/wlx/wayland_qt_base/build/enca-1.19/data/slovak/rawcounts.cp1250 new file mode 100644 index 0000000..a4e2a21 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/slovak/rawcounts.cp1250 @@ -0,0 +1,142 @@ +1 . 1 +9 . 201 +10 . 23616 +11 . 1 +13 . 13008 +21 . 1 +32 113831 +33 ! 530 +34 " 28021 +35 # 2569 +37 % 1570 +38 & 1912 +39 ' 2040 +40 ( 614 +41 ) 614 +42 * 64 +43 + 115 +44 , 5662 +45 - 3732 +46 . 11695 +47 / 16782 +48 0 19326 +49 1 7045 +50 2 5175 +51 3 2695 +52 4 2312 +53 5 2269 +54 6 1773 +55 7 1126 +56 8 2029 +57 9 1670 +58 : 2096 +59 ; 2735 +60 < 31532 +61 = 29378 +62 > 31538 +63 ? 711 +64 @ 2 +65 A 4363 +66 B 1671 +67 C 1703 +68 D 1624 +69 E 4021 +70 F 7397 +71 G 878 +72 H 1564 +73 I 4131 +74 J 819 +75 K 727 +76 L 1400 +77 M 1912 +78 N 3246 +79 O 2089 +80 P 3008 +81 Q 31 +82 R 2810 +83 S 2527 +84 T 5210 +85 U 419 +86 V 795 +87 W 369 +88 X 11 +89 Y 329 +90 Z 952 +91 [ 1089 +92 \ 12 +93 ] 1089 +95 _ 648 +97 a 55954 +98 b 20817 +99 c 24135 +100 d 33663 +101 e 53988 +102 f 8529 +103 g 16023 +104 h 17918 +105 i 42125 +106 j 6386 +107 k 13990 +108 l 38023 +109 m 24196 +110 n 38768 +111 o 46286 +112 p 27841 +113 q 180 +114 r 38766 +115 s 32785 +116 t 52644 +117 u 12382 +118 v 15540 +119 w 7838 +120 x 1790 +121 y 7621 +122 z 6971 +123 { 140 +124 | 16 +125 } 140 +126 ~ 1 +132 160 +133 51 +138 115 +141 16 +142 98 +145 7 +146 5 +147 182 +148 39 +150 77 +154 2984 +156 5 +157 2032 +158 2996 +160 560 +171 3 +187 3 +188 33 +190 1413 +193 171 +200 167 +201 127 +205 6 +207 8 +211 1 +218 47 +221 2 +224 36 +225 5864 +228 254 +229 18 +232 3401 +233 1955 +236 4 +237 3503 +239 639 +242 515 +243 327 +244 510 +246 5 +248 3 +250 2386 +252 3 +253 2794 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/slovak/slovak.h b/wlx/wayland_qt_base/build/enca-1.19/data/slovak/slovak.h new file mode 100644 index 0000000..595199a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/slovak/slovak.h @@ -0,0 +1,329 @@ +/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1250[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 115, 0, 0, 16, 98, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 2984, 0, 0, 2032, 2996, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 33, 0, 1413, 0, /* 0xb8 */ + 0, 171, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 167, 127, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 47, 0, 0, 0, 0, 0, /* 0xd8 */ + 36, 5864, 0, 0, 254, 0, 0, 0, /* 0xe0 */ + 3401, 1955, 0, 0, 0, 3503, 0, 639, /* 0xe8 */ + 0, 0, 515, 327, 510, 0, 0, 0, /* 0xf0 */ + 0, 0, 2386, 0, 0, 2794, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO88592[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 33, 0, 0, /* 0xa0 */ + 0, 115, 0, 16, 0, 0, 98, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 1413, 0, 0, /* 0xb0 */ + 0, 2984, 0, 2032, 0, 0, 2996, 0, /* 0xb8 */ + 0, 171, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 167, 127, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 47, 0, 0, 0, 0, 0, /* 0xd8 */ + 36, 5864, 0, 0, 254, 0, 0, 0, /* 0xe0 */ + 3401, 1955, 0, 0, 0, 3503, 0, 639, /* 0xe8 */ + 0, 0, 515, 327, 510, 0, 0, 0, /* 0xf0 */ + 0, 0, 2386, 0, 0, 2794, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM852[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 1955, 0, 254, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 127, 0, 0, 510, 0, 33, 1413, 0, /* 0x90 */ + 0, 0, 0, 16, 2032, 0, 0, 3401, /* 0x98 */ + 5864, 3503, 327, 2386, 0, 0, 98, 2996, /* 0xa0 */ + 0, 0, 0, 0, 167, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 171, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 639, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 515, 115, 2984, /* 0xe0 */ + 0, 47, 36, 0, 2794, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_KEYBCS2[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 167, 0, 1955, 639, 254, 0, 16, 3401, /* 0x80 */ + 0, 0, 0, 0, 1413, 0, 0, 171, /* 0x88 */ + 127, 2996, 98, 510, 0, 0, 0, 47, /* 0x90 */ + 2794, 0, 0, 115, 33, 0, 0, 2032, /* 0x98 */ + 5864, 3503, 327, 2386, 515, 0, 0, 0, /* 0xa0 */ + 2984, 0, 36, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_MACCE[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 127, 0, 0, 0, 5864, /* 0x80 */ + 0, 167, 254, 3401, 0, 0, 1955, 0, /* 0x88 */ + 0, 0, 3503, 639, 0, 0, 0, 327, /* 0x90 */ + 0, 510, 0, 0, 2386, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 33, 1413, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 515, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 36, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 115, 0, 0, 2984, 0, 0, 171, /* 0xe0 */ + 16, 2032, 0, 98, 2996, 0, 0, 0, /* 0xe8 */ + 0, 0, 47, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 2794, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_KOI8CS2[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 5864, 0, 3401, 639, 0, 36, 0, /* 0xc0 */ + 0, 3503, 0, 0, 1413, 0, 515, 327, /* 0xc8 */ + 510, 254, 0, 2984, 2032, 2386, 0, 1955, /* 0xd0 */ + 0, 2794, 2996, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 171, 0, 167, 0, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 33, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 115, 16, 47, 0, 127, /* 0xf0 */ + 0, 0, 98, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CORK[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 167, 0, 0, 0, 0, /* 0x80 */ + 0, 33, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 115, 0, 16, 0, 0, 0, /* 0x90 */ + 0, 0, 98, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 3401, 639, 0, 0, 0, /* 0xa0 */ + 0, 1413, 0, 0, 515, 0, 0, 36, /* 0xa8 */ + 0, 0, 2984, 0, 2032, 0, 0, 0, /* 0xb0 */ + 0, 0, 2996, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 171, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 127, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 47, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 5864, 0, 0, 254, 0, 0, 0, /* 0xe0 */ + 0, 1955, 0, 0, 0, 3503, 0, 0, /* 0xe8 */ + 0, 0, 0, 327, 510, 0, 0, 0, /* 0xf0 */ + 0, 0, 2386, 0, 0, 2794, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/totals.pl. */ +static const unsigned short int SIGNIFICANT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 167, 0, 3910, 933, 508, 0, 16, 9265, /* 0x80 */ + 0, 200, 369, 3401, 1413, 16, 2053, 171, /* 0x88 */ + 254, 2996, 3716, 1659, 16, 33, 1413, 374, /* 0x90 */ + 2794, 510, 3082, 131, 4451, 2032, 2996, 5433, /* 0x98 */ + 11728, 7006, 654, 8173, 1154, 33, 98, 2996, /* 0xa0 */ + 2984, 1528, 36, 16, 682, 0, 98, 36, /* 0xa8 */ + 0, 0, 2984, 0, 2032, 1584, 0, 0, /* 0xb0 */ + 0, 2984, 2996, 2065, 1446, 0, 4409, 0, /* 0xb8 */ + 0, 6377, 0, 3401, 639, 0, 36, 0, /* 0xc0 */ + 334, 3884, 0, 515, 1413, 0, 515, 327, /* 0xc8 */ + 510, 254, 0, 2984, 2671, 2386, 0, 1955, /* 0xd0 */ + 0, 2794, 3173, 0, 0, 0, 0, 0, /* 0xd8 */ + 72, 17878, 0, 167, 3746, 515, 115, 3155, /* 0xe0 */ + 6818, 7944, 36, 98, 5823, 10509, 0, 1278, /* 0xe8 */ + 0, 0, 1077, 1096, 1546, 47, 0, 127, /* 0xf0 */ + 0, 2794, 7256, 0, 0, 8382, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define WEIGHT_SUM 32383 + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const char *const CHARSET_NAMES[] = { + "cp1250", + "iso88592", + "ibm852", + "keybcs2", + "macce", + "koi8cs2", + "cork", +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned short int *const CHARSET_WEIGHTS[] = { + RAW_CP1250, + RAW_ISO88592, + RAW_IBM852, + RAW_KEYBCS2, + RAW_MACCE, + RAW_KOI8CS2, + RAW_CORK, +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_LETTERS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_PAIRS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define NCHARSETS 7 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/slovene/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/slovene/doit.sh new file mode 100755 index 0000000..44bb238 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/slovene/doit.sh @@ -0,0 +1,2 @@ +#! /bin/bash +../doit.sh iso88592 cp1250 ibm852 macce cork diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/slovene/iso88592.base b/wlx/wayland_qt_base/build/enca-1.19/data/slovene/iso88592.base new file mode 100644 index 0000000..8292a73 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/slovene/iso88592.base @@ -0,0 +1,6 @@ + 162 + 96 + 4575 + 3045 + 214 + 5282 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/slovene/rawcounts.iso88592 b/wlx/wayland_qt_base/build/enca-1.19/data/slovene/rawcounts.iso88592 new file mode 100644 index 0000000..98be27a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/slovene/rawcounts.iso88592 @@ -0,0 +1,94 @@ +0x0a . 73238 +0x0d . 13 +0x20 559750 +0x21 ! 8749 +0x22 " 23311 +0x23 # 14 +0x25 % 1 +0x26 & 2356 +0x27 ' 312 +0x28 ( 99 +0x29 ) 100 +0x2a * 179 +0x2c , 54871 +0x2d - 4155 +0x2e . 45853 +0x2f / 699 +0x30 0 103 +0x31 1 220 +0x32 2 238 +0x33 3 158 +0x34 4 56 +0x35 5 57 +0x36 6 51 +0x37 7 43 +0x38 8 54 +0x39 9 89 +0x3a : 3177 +0x3b ; 4195 +0x3c < 20344 +0x3d = 127 +0x3e > 20344 +0x3f ? 4268 +0x40 @ 17 +0x41 A 4497 +0x42 B 3268 +0x43 C 580 +0x44 D 2738 +0x45 E 1176 +0x46 F 421 +0x47 G 1781 +0x48 H 1186 +0x49 I 3306 +0x4a J 2908 +0x4b K 5995 +0x4c L 3096 +0x4d M 4254 +0x4e N 5846 +0x4f O 2643 +0x50 P 12740 +0x51 Q 17 +0x52 R 2490 +0x53 S 5530 +0x54 T 6824 +0x55 U 792 +0x56 V 4574 +0x57 W 91 +0x58 X 63 +0x59 Y 12 +0x5a Z 3481 +0x61 a 284926 +0x62 b 49050 +0x63 c 27041 +0x64 d 91270 +0x65 e 293898 +0x66 f 1750 +0x67 g 44249 +0x68 h 25325 +0x69 i 236489 +0x6a j 127904 +0x6b k 93275 +0x6c l 143879 +0x6d m 85266 +0x6e n 161380 +0x6f o 245743 +0x70 p 96380 +0x71 q 1995 +0x72 r 134535 +0x73 s 128693 +0x74 t 107825 +0x75 u 53301 +0x76 v 95942 +0x77 w 34 +0x78 x 3 +0x79 y 1084 +0x7a z 53788 +0x7c | 19 +0x7d } 2 +0x82 1 +0xa9 976 +0xae 580 +0xb9 27453 +0xbe 18270 +0xc8 1286 +0xe8 31697 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/slovene/slovene.h b/wlx/wayland_qt_base/build/enca-1.19/data/slovene/slovene.h new file mode 100644 index 0000000..adf1520 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/slovene/slovene.h @@ -0,0 +1,251 @@ +/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO88592[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 162, 0, 0, 0, 0, 96, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 4575, 0, 0, 0, 0, 3045, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 214, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 5282, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1250[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 162, 0, 0, 0, 96, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 4575, 0, 0, 0, 3045, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 214, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 5282, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM852[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 5282, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 96, 3045, /* 0xa0 */ + 0, 0, 0, 0, 214, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 162, 4575, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_MACCE[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 214, 0, 5282, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 162, 0, 0, 4575, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 96, 3045, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CORK[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 214, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 162, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 96, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 5282, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 4575, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 3045, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/totals.pl. */ +static const unsigned short int SIGNIFICANT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 214, 0, 0, 0, 0, /* 0x80 */ + 0, 214, 162, 5282, 0, 0, 96, 0, /* 0x88 */ + 0, 0, 162, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 4671, 0, 0, 0, 3045, 5282, /* 0x98 */ + 0, 0, 0, 5282, 0, 0, 96, 3045, /* 0xa0 */ + 0, 162, 0, 0, 214, 0, 96, 0, /* 0xa8 */ + 0, 0, 4575, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 4575, 3045, 0, 0, 0, 3045, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 428, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 0, 162, 0, 0, 4575, 0, 162, 4575, /* 0xe0 */ + 10564, 0, 0, 96, 3045, 0, 0, 0, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define WEIGHT_SUM 13374 + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const char *const CHARSET_NAMES[] = { + "iso88592", + "cp1250", + "ibm852", + "macce", + "cork", +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned short int *const CHARSET_WEIGHTS[] = { + RAW_ISO88592, + RAW_CP1250, + RAW_IBM852, + RAW_MACCE, + RAW_CORK, +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_LETTERS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define CHARSET_PAIRS NULL + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define NCHARSETS 5 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/totals.pl b/wlx/wayland_qt_base/build/enca-1.19/data/totals.pl new file mode 100755 index 0000000..f5901f2 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/totals.pl @@ -0,0 +1,91 @@ +#!/usr/bin/perl +use warnings; +use strict; + +my ($total, @significant); +@significant = ( 0 ) x 0x100; + +foreach my $name (@ARGV) { + open FH, "<$name.c"; + local $/ = undef; + my $file = <FH>; + close FH; + + $file =~ s/\/\*.*?\*\///sg; + $file =~ s/^[[:space:]]*[[:alnum:]_ ]+\[\] = {[[:space:]]*//s; + $file =~ s/,[[:space:]]}[[:space:]]*;[[:space:]]*$//s; + my @data = split /[[:space:],]+/, $file; + + my $w = 0; + for (my $i = 0; $i < 0x100; $i++) { + $w += $data[$i]; + $significant[$i] += $data[$i]; + } + die "$name: $w (expecting $total)\n" if defined $total && $total != $w; + $total = $w; +} + +open FH, ">totals.c"; +print FH "/* THIS IS A GENERATED TABLE, see data/totals.pl. */\n"; +print FH "static const unsigned short int SIGNIFICANT[] = {\n"; +for (my $i = 0; $i < 0x100; $i++) { + if ($i % 8 == 0) { + printf FH " "; + } + printf FH "%5u", $significant[$i]; + if ($i % 8 == 7) { + printf FH ", /* 0x%02x */\n", $i-7; + } + else { + print FH ", "; + } +} +print FH "};\n\n"; + +print FH "/* THIS IS A GENERATED VALUE, see data/totals.pl */\n"; +print FH "#define WEIGHT_SUM $total\n\n"; + +print FH "/* THIS IS A GENERATED TABLE, see data/totals.pl */\n"; +print FH "static const char *const CHARSET_NAMES[] = {\n"; +foreach my $name (@ARGV) { + print FH " \"$name\",\n"; +} +print FH "};\n\n"; + +print FH "/* THIS IS A GENERATED TABLE, see data/totals.pl */\n"; +print FH "static const unsigned short int *const CHARSET_WEIGHTS[] = {\n"; +foreach my $name (@ARGV) { + my $raw = "RAW_" . uc $name; + print FH " $raw,\n"; +} +print FH "};\n\n"; + +if (<*.p.c>) { + print FH "/* THIS IS A GENERATED TABLE, see data/totals.pl */\n"; + print FH "static const unsigned char *const CHARSET_LETTERS[] = {\n"; + foreach my $name (@ARGV) { + my $raw = "LETTER_" . uc $name; + print FH " $raw,\n"; + } + print FH "};\n\n"; + + print FH "/* THIS IS A GENERATED TABLE, see data/totals.pl */\n"; + print FH "static const unsigned char **const CHARSET_PAIRS[] = {\n"; + foreach my $name (@ARGV) { + my $raw = "PAIR_" . uc $name; + print FH " $raw,\n"; + } + print FH "};\n\n"; +} +else { + print FH "/* THIS IS A GENERATED VALUE, see data/totals.pl */\n"; + print FH "#define CHARSET_LETTERS NULL\n\n"; + + print FH "/* THIS IS A GENERATED VALUE, see data/totals.pl */\n"; + print FH "#define CHARSET_PAIRS NULL\n\n"; +} + +print FH "/* THIS IS A GENERATED VALUE, see data/totals.pl */\n"; +print FH "#define NCHARSETS " . ($#ARGV + 1) . "\n"; + +close FH; diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/cp1251.base b/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/cp1251.base new file mode 100644 index 0000000..d5f16c0 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/cp1251.base @@ -0,0 +1,32 @@ + 3416 + 587 + 274 + 254 + 5321 + 774 + 3238 + 922 + 1857 + 3140 + 485 + 1219 + 3981 + 688 + 2410 + 2105 + 1772 + 4802 + 5884 + 1587 + 3331 + 2738 + 3518 + 1924 + 275 + 596 + 507 + 762 + 362 + 1116 + 424 + 1401 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/doit.sh b/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/doit.sh new file mode 100755 index 0000000..343a0c3 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/doit.sh @@ -0,0 +1,2 @@ +#! /bin/bash +../doit.sh cp1251 ibm855 iso88595 cp1125 koi8u maccyr diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/paircounts.cp1251 b/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/paircounts.cp1251 new file mode 100644 index 0000000..4717e7c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/paircounts.cp1251 @@ -0,0 +1,49 @@ +.:ѿպ +:. +:. +:. +:. +:. +: +:. +: +: +: +: +: +: +: +: +: +: +: +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +:. +: +:. +:. +: +:. +:. +:. diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/rawcounts.cp1251 b/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/rawcounts.cp1251 new file mode 100644 index 0000000..8e2c135 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/rawcounts.cp1251 @@ -0,0 +1,187 @@ +0x09 . 1624 +0x0a . 49700 +0x0d . 16385 +0x1b . 1 +0x20 288088 +0x21 ! 2075 +0x22 " 65797 +0x23 # 3845 +0x24 $ 293 +0x25 % 2338 +0x26 & 4214 +0x27 ' 5597 +0x28 ( 3512 +0x29 ) 3658 +0x2a * 1074 +0x2b + 1441 +0x2c , 13783 +0x2d - 19380 +0x2e . 41029 +0x2f / 72832 +0x30 0 34382 +0x31 1 18638 +0x32 2 12058 +0x33 3 5678 +0x34 4 4653 +0x35 5 5247 +0x36 6 11769 +0x37 7 3289 +0x38 8 3758 +0x39 9 3678 +0x3a : 10976 +0x3b ; 6106 +0x3c < 73986 +0x3d = 49987 +0x3e > 74010 +0x3f ? 2472 +0x40 @ 278 +0x41 A 10769 +0x42 B 8612 +0x43 C 6231 +0x44 D 5484 +0x45 E 10050 +0x46 F 6403 +0x47 G 2421 +0x48 H 4529 +0x49 I 6682 +0x4a J 341 +0x4b K 1172 +0x4c L 5660 +0x4d M 3883 +0x4e N 6496 +0x4f O 5833 +0x50 P 5508 +0x51 Q 229 +0x52 R 9611 +0x53 S 5563 +0x54 T 12892 +0x55 U 3077 +0x56 V 1017 +0x57 W 2125 +0x58 X 267 +0x59 Y 807 +0x5a Z 580 +0x5b [ 897 +0x5c \ 207 +0x5d ] 893 +0x5f _ 3752 +0x60 ` 191 +0x61 a 73995 +0x62 b 28857 +0x63 c 37821 +0x64 d 38407 +0x65 e 70915 +0x66 f 24117 +0x67 g 33660 +0x68 h 43096 +0x69 i 71220 +0x6a j 1402 +0x6b k 8172 +0x6c l 42019 +0x6d m 34935 +0x6e n 54244 +0x6f o 50077 +0x70 p 31315 +0x71 q 497 +0x72 r 65343 +0x73 s 44368 +0x74 t 88075 +0x75 u 16502 +0x76 v 8482 +0x77 w 30309 +0x78 x 3593 +0x79 y 7047 +0x7a z 2149 +0x7b { 168 +0x7c | 246 +0x7d } 168 +0x7e ~ 25 +0x84 13 +0x85 85 +0x91 4 +0x92 377 +0x93 962 +0x94 979 +0x96 316 +0x97 400 +0xa0 8 +0xa2 1 +0xa5 7 +0xa8 1 +0xa9 16 +0xaa 139 +0xab 425 +0xaf 89 +0xb2 1368 +0xb3 34166 +0xb4 22 +0xb7 89 +0xb8 1 +0xb9 72 +0xba 2813 +0xbb 423 +0xbe 1 +0xbf 5874 +0xc0 1945 +0xc1 802 +0xc2 2744 +0xc3 788 +0xc4 1327 +0xc5 607 +0xc6 228 +0xc7 1046 +0xc8 788 +0xc9 194 +0xca 1965 +0xcb 827 +0xcc 1574 +0xcd 2318 +0xce 1899 +0xcf 2545 +0xd0 1623 +0xd1 1902 +0xd2 1503 +0xd3 1995 +0xd4 503 +0xd5 517 +0xd6 347 +0xd7 344 +0xd8 424 +0xd9 152 +0xdb 3 +0xdc 150 +0xdd 1 +0xde 195 +0xdf 497 +0xe0 53211 +0xe1 7746 +0xe2 32383 +0xe3 9221 +0xe4 18570 +0xe5 31407 +0xe6 4855 +0xe7 12190 +0xe8 39817 +0xe9 6882 +0xea 24107 +0xeb 21055 +0xec 17725 +0xed 48029 +0xee 58846 +0xef 15872 +0xf0 33316 +0xf1 27385 +0xf2 35186 +0xf3 19248 +0xf4 2751 +0xf5 5964 +0xf6 5075 +0xf7 7624 +0xf8 3623 +0xf9 2056 +0xfa 4 +0xfb 378 +0xfc 11169 +0xfd 44 +0xfe 4245 +0xff 14010 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/ukrainian.h b/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/ukrainian.h new file mode 100644 index 0000000..550301a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/ukrainian/ukrainian.h @@ -0,0 +1,844 @@ +/***** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1251[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 3416, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 587, /* 0xb8 */ + 0, 0, 274, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 254, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 5321, 774, 3238, 922, 1857, 3140, 485, 1219, /* 0xe0 */ + 3981, 688, 2410, 2105, 1772, 4802, 5884, 1587, /* 0xe8 */ + 3331, 2738, 3518, 1924, 275, 596, 507, 762, /* 0xf0 */ + 362, 0, 0, 0, 1116, 0, 424, 1401, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_CP1251[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 255, 255, 0, 255, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 255, 0, 255, 255, 255, 255, /* 0x88 */ + 255, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 255, 0, 255, 255, 255, 255, /* 0x98 */ + 0, 255, 255, 255, 0, 255, 0, 0, /* 0xa0 */ + 255, 0, 255, 0, 0, 0, 0, 255, /* 0xa8 */ + 0, 0, 1, 2, 255, 0, 0, 0, /* 0xb0 */ + 255, 0, 3, 0, 255, 255, 255, 4, /* 0xb8 */ + 5, 6, 7, 255, 8, 9, 255, 10, /* 0xc0 */ + 255, 255, 11, 255, 12, 13, 255, 14, /* 0xc8 */ + 15, 16, 17, 18, 255, 255, 255, 255, /* 0xd0 */ + 255, 255, 255, 255, 255, 255, 255, 19, /* 0xd8 */ + 20, 21, 22, 23, 24, 25, 26, 27, /* 0xe0 */ + 28, 29, 30, 31, 32, 33, 34, 35, /* 0xe8 */ + 36, 37, 38, 39, 40, 41, 42, 43, /* 0xf0 */ + 44, 45, 255, 255, 46, 255, 47, 48, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_CP1251[] = { + + (unsigned char*)"\xe2\xef\xed\xf1\xe7\xf2\xe4\xec\xea\xe1\xf0\xee\xe3\xb3\xe9\xff\xf3\xeb\xf7\xf9\xc2\xe0\xcf\xf6\xf5\xe6\xcd\xc0\xcc\xd2\xce\xd1\xbf\xca\xc1\xb2\xd0\xf8\xc4\xc3\xc7\xf4\xd3\xdf\xd5\xba\xd7\xc5\xe5\xd8\xcb\xd6\xd4", /* FILLCHAR */ + (unsigned char*)".", /* 0xb2 */ + (unsigned char*)".\xe4\xe2\xeb\xed\xf2\xf1\xe9\xe7\xec\xea\xff\xf7\xf0\xf8\xbf\xba\xf5\xe1\xe6\xe3\xee\xfe\xe0", /* 0xb3 */ + (unsigned char*)".\xf2", /* 0xba */ + (unsigned char*)".\xed\xf5\xbf", /* 0xbf */ + (unsigned char*)".\xeb", /* 0xc0 */ + (unsigned char*)"\xe0", /* 0xc1 */ + (unsigned char*)"\xe8\xee\xb3.", /* 0xc2 */ + (unsigned char*)"\xee", /* 0xc4 */ + (unsigned char*)"\xeb", /* 0xc5 */ + (unsigned char*)"\xe0", /* 0xc7 */ + (unsigned char*)"\xee", /* 0xca */ + (unsigned char*)"\xe0\xee", /* 0xcc */ + (unsigned char*)"\xe0\xe5", /* 0xcd */ + (unsigned char*)"\xf0\xee", /* 0xcf */ + (unsigned char*)"\xf3", /* 0xd0 */ + (unsigned char*)"\xee", /* 0xd1 */ + (unsigned char*)"\xe0\xf0", /* 0xd2 */ + (unsigned char*)"\xea", /* 0xd3 */ + (unsigned char*)".", /* 0xdf */ + (unsigned char*)".\xeb\xed\xf2\xe2\xf0\xec\xea\xf1\xe4\xba\xe7\xe9\xf8\xf5\xf7\xe1\xfe\xef\xe3\xe6\xf6\xbf\xf4", /* 0xe0 */ + (unsigned char*)"\xf3\xe0\xee\xb3\xe8\xe5\xeb\xf0.\xed", /* 0xe1 */ + (unsigned char*)".\xe8\xe0\xb3\xee\xe5\xf1\xed\xf3\xeb\xe6\xf7\xf2\xf8\xe4\xea", /* 0xe2 */ + (unsigned char*)"\xee\xe0\xf0\xf3\xeb\xb3\xe8.\xe5", /* 0xe3 */ + (unsigned char*)"\xee\xe8\xe0\xe5\xed.\xb3\xf3\xf0\xe2\xea\xeb\xff\xf1\xe6", /* 0xe4 */ + (unsigned char*)".\xf0\xed\xf1\xeb\xf2\xec\xe7\xea\xe4\xe2\xef\xe1\xe9\xf7\xe6\xf6\xe3\xee", /* 0xe5 */ + (unsigned char*)"\xe5\xed.\xe8\xe0\xf3", /* 0xe6 */ + (unsigned char*)"\xe0.\xed\xe2\xf3\xe8\xee\xe4\xe5\xb3\xec\xf0\xeb", /* 0xe7 */ + (unsigned char*)".\xf2\xed\xf1\xec\xe9\xe2\xf5\xea\xeb\xf7\xf0\xe4\xf6\xf8\xef\xe1\xe7\xe3", /* 0xe8 */ + (unsigned char*)".\xee\xed\xf1\xf2", /* 0xe9 */ + (unsigned char*)"\xee\xe0\xe8.\xf3\xf0\xb3\xeb\xf2\xe5\xf1\xed", /* 0xea */ + (unsigned char*)"\xe8\xe0\xee\xfc\xe5\xb3\xff\xfe\xf3.", /* 0xeb */ + (unsigned char*)".\xe0\xe8\xee\xb3\xf3\xe5\xed", /* 0xec */ + (unsigned char*)"\xe0\xee\xe5\xe8\xb3\xff\xed\xf3.\xfc\xea\xf2\xf6\xf1\xe4\xfe", /* 0xed */ + (unsigned char*)".\xe2\xf0\xe3\xeb\xec\xe4\xf1\xed\xe1\xea\xf2\xe7\xf7\xbf\xfe\xe6\xef\xf5\xf8\xf6", /* 0xee */ + (unsigned char*)"\xee\xf0\xe0\xe5\xb3\xe8\xeb\xf3.", /* 0xef */ + (unsigned char*)"\xee\xe0\xe8\xe5\xf3\xb3.\xf2\xed\xff\xea\xf1\xe3\xec\xe2", /* 0xf0 */ + (unsigned char*)"\xf2\xff\xfc\xe8\xb3\xee\xea\xe0\xef\xe5\xe2\xeb.\xed\xf3\xec", /* 0xf1 */ + (unsigned char*)"\xe8\xe0\xfc\xee\xe5\xb3\xf0\xf3.\xe2\xff\xed\xea\xf2\xeb", /* 0xf2 */ + (unsigned char*)".\xe2\xe4\xf2\xf1\xea\xeb\xec\xf0\xf5\xba\xef\xf8\xe6\xf7\xe3\xed\xe1\xe7\xfe", /* 0xf3 */ + (unsigned char*)"\xb3.\xee\xe0", /* 0xf4 */ + (unsigned char*)".\xee\xe0\xe8\xb3\xf3", /* 0xf5 */ + (unsigned char*)"\xb3\xe5\xfc\xff\xfe", /* 0xf6 */ + (unsigned char*)"\xe8\xe5\xe0\xed\xee\xb3\xf3\xea.", /* 0xf7 */ + (unsigned char*)"\xe8\xe5\xe0\xea\xed.\xf3\xee\xb3\xf2\xeb", /* 0xf8 */ + (unsigned char*)"\xee\xe5\xe0", /* 0xf9 */ + (unsigned char*)".\xea\xf1\xed\xee\xf4", /* 0xfc */ + (unsigned char*)".\xf2\xf7\xe4", /* 0xfe */ + (unsigned char*)".\xea\xf2\xf7\xec\xe4\xed\xe2\xe3\xba", /* 0xff */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_IBM855[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 3416, 0, 587, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 424, 0, 0, 0, /* 0x98 */ + 5321, 0, 774, 0, 507, 0, 1857, 0, /* 0xa0 */ + 3140, 0, 275, 0, 922, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 596, 0, 3981, /* 0xb0 */ + 0, 0, 0, 0, 0, 688, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 2410, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 2105, 0, 1772, 0, 4802, 0, 5884, 0, /* 0xd0 */ + 1587, 0, 0, 0, 0, 254, 1401, 0, /* 0xd8 */ + 0, 3331, 0, 2738, 0, 3518, 0, 1924, /* 0xe0 */ + 0, 485, 0, 3238, 274, 1116, 0, 0, /* 0xe8 */ + 0, 0, 0, 1219, 0, 362, 0, 0, /* 0xf0 */ + 0, 0, 0, 762, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_IBM855[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 255, 255, 255, 255, 255, 255, 3, 255, /* 0x80 */ + 255, 255, 2, 1, 4, 255, 255, 255, /* 0x88 */ + 255, 255, 255, 255, 255, 0, 255, 255, /* 0x90 */ + 255, 255, 255, 255, 47, 255, 255, 255, /* 0x98 */ + 20, 5, 21, 6, 42, 255, 24, 8, /* 0xa0 */ + 25, 9, 40, 255, 23, 255, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 41, 255, 28, /* 0xb0 */ + 255, 0, 0, 0, 0, 29, 255, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 30, 11, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 31, 255, 32, 12, 33, 13, 34, 255, /* 0xd0 */ + 35, 0, 0, 0, 0, 14, 48, 0, /* 0xd8 */ + 19, 36, 15, 37, 16, 38, 17, 39, /* 0xe0 */ + 18, 26, 255, 22, 7, 46, 255, 0, /* 0xe8 */ + 0, 255, 255, 27, 10, 44, 255, 255, /* 0xf0 */ + 255, 45, 255, 43, 255, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_IBM855[] = { + + (unsigned char*)"\xeb\xd8\xd4\xe3\xf3\xe5\xa6\xd2\xc6\xa2\xe1\xd6\xac\x8a\xbd\xde\xe7\xd0\xfb\xf9\xec\xa0\xdd\xa4\xb5\xe9\xd5\xa1\xd3\xe6\xd7\xe4\x8c\xc7\xa3\x8b\xe2\xf5\xa7\xad\xf4\xaa\xe8\xe0\xb6\x86\xfc\xa9\xa8\xf6\xd1\xa5\xab", /* FILLCHAR */ + (unsigned char*)".", /* 0x8b */ + (unsigned char*)".\xa6\xeb\xd0\xd4\xe5\xe3\xbd\xf3\xd2\xc6\xde\xfb\xe1\xf5\x8c\x86\xb5\xa2\xe9\xac\xd6\x9c\xa0", /* 0x8a */ + (unsigned char*)".\xe5", /* 0x86 */ + (unsigned char*)".\xd4\xb5\x8c", /* 0x8c */ + (unsigned char*)".\xd0", /* 0xa1 */ + (unsigned char*)"\xa0", /* 0xa3 */ + (unsigned char*)"\xb7\xd6\x8a.", /* 0xec */ + (unsigned char*)"\xd6", /* 0xa7 */ + (unsigned char*)"\xd0", /* 0xa9 */ + (unsigned char*)"\xa0", /* 0xf4 */ + (unsigned char*)"\xd6", /* 0xc7 */ + (unsigned char*)"\xa0\xd6", /* 0xd3 */ + (unsigned char*)"\xa0\xa8", /* 0xd5 */ + (unsigned char*)"\xe1\xd6", /* 0xdd */ + (unsigned char*)"\xe7", /* 0xe2 */ + (unsigned char*)"\xd6", /* 0xe4 */ + (unsigned char*)"\xa0\xe1", /* 0xe6 */ + (unsigned char*)"\xc6", /* 0xe8 */ + (unsigned char*)".", /* 0xe0 */ + (unsigned char*)".\xd0\xd4\xe5\xeb\xe1\xd2\xc6\xe3\xa6\x86\xf3\xbd\xf5\xb5\xfb\xa2\x9c\xd8\xac\xe9\xa4\x8c\xaa", /* 0xa0 */ + (unsigned char*)"\xe7\xa0\xd6\x8a\xb7\xa8\xd0\xe1.\xd4", /* 0xa2 */ + (unsigned char*)".\xb7\xa0\x8a\xd6\xa8\xe3\xd4\xe7\xd0\xe9\xfb\xe5\xf5\xa6\xc6", /* 0xeb */ + (unsigned char*)"\xd6\xa0\xe1\xe7\xd0\x8a\xb7.\xa8", /* 0xac */ + (unsigned char*)"\xd6\xb7\xa0\xa8\xd4.\x8a\xe7\xe1\xeb\xc6\xd0\xde\xe3\xe9", /* 0xa6 */ + (unsigned char*)".\xe1\xd4\xe3\xd0\xe5\xd2\xf3\xc6\xa6\xeb\xd8\xa2\xbd\xfb\xe9\xa4\xac\xd6", /* 0xa8 */ + (unsigned char*)"\xa8\xd4.\xb7\xa0\xe7", /* 0xe9 */ + (unsigned char*)"\xa0.\xd4\xeb\xe7\xb7\xd6\xa6\xa8\x8a\xd2\xe1\xd0", /* 0xf3 */ + (unsigned char*)".\xe5\xd4\xe3\xd2\xbd\xeb\xb5\xc6\xd0\xfb\xe1\xa6\xa4\xf5\xd8\xa2\xf3\xac", /* 0xb7 */ + (unsigned char*)".\xd6\xd4\xe3\xe5", /* 0xbd */ + (unsigned char*)"\xd6\xa0\xb7.\xe7\xe1\x8a\xd0\xe5\xa8\xe3\xd4", /* 0xc6 */ + (unsigned char*)"\xb7\xa0\xd6\xed\xa8\x8a\xde\x9c\xe7.", /* 0xd0 */ + (unsigned char*)".\xa0\xb7\xd6\x8a\xe7\xa8\xd4", /* 0xd2 */ + (unsigned char*)"\xa0\xd6\xa8\xb7\x8a\xde\xd4\xe7.\xed\xc6\xe5\xa4\xe3\xa6\x9c", /* 0xd4 */ + (unsigned char*)".\xeb\xe1\xac\xd0\xd2\xa6\xe3\xd4\xa2\xc6\xe5\xf3\xfb\x8c\x9c\xe9\xd8\xb5\xf5\xa4", /* 0xd6 */ + (unsigned char*)"\xd6\xe1\xa0\xa8\x8a\xb7\xd0\xe7.", /* 0xd8 */ + (unsigned char*)"\xd6\xa0\xb7\xa8\xe7\x8a.\xe5\xd4\xde\xc6\xe3\xac\xd2\xeb", /* 0xe1 */ + (unsigned char*)"\xe5\xde\xed\xb7\x8a\xd6\xc6\xa0\xd8\xa8\xeb\xd0.\xd4\xe7\xd2", /* 0xe3 */ + (unsigned char*)"\xb7\xa0\xed\xd6\xa8\x8a\xe1\xe7.\xeb\xde\xd4\xc6\xe5\xd0", /* 0xe5 */ + (unsigned char*)".\xeb\xa6\xe5\xe3\xc6\xd0\xd2\xe1\xb5\x86\xd8\xf5\xe9\xfb\xac\xd4\xa2\xf3\x9c", /* 0xe7 */ + (unsigned char*)"\x8a.\xd6\xa0", /* 0xaa */ + (unsigned char*)".\xd6\xa0\xb7\x8a\xe7", /* 0xb5 */ + (unsigned char*)"\x8a\xa8\xed\xde\x9c", /* 0xa4 */ + (unsigned char*)"\xb7\xa8\xa0\xd4\xd6\x8a\xe7\xc6.", /* 0xfb */ + (unsigned char*)"\xb7\xa8\xa0\xc6\xd4.\xe7\xd6\x8a\xe5\xd0", /* 0xf5 */ + (unsigned char*)"\xd6\xa8\xa0", /* 0xf9 */ + (unsigned char*)".\xc6\xe3\xd4\xd6\xaa", /* 0xed */ + (unsigned char*)".\xe5\xfb\xa6", /* 0x9c */ + (unsigned char*)".\xc6\xe5\xfb\xd2\xa6\xd4\xeb\xac\x86", /* 0xde */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_ISO88595[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 274, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 254, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 5321, 774, 3238, 922, 1857, 3140, 485, 1219, /* 0xd0 */ + 3981, 688, 2410, 2105, 1772, 4802, 5884, 1587, /* 0xd8 */ + 3331, 2738, 3518, 1924, 275, 596, 507, 762, /* 0xe0 */ + 362, 0, 0, 0, 1116, 0, 424, 1401, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 3416, 587, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_ISO88595[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 255, 255, 255, 255, 255, 1, 255, /* 0xa0 */ + 255, 255, 255, 255, 255, 0, 255, 255, /* 0xa8 */ + 5, 6, 7, 255, 8, 9, 255, 10, /* 0xb0 */ + 255, 255, 11, 255, 12, 13, 255, 14, /* 0xb8 */ + 15, 16, 17, 18, 255, 255, 255, 255, /* 0xc0 */ + 255, 255, 255, 255, 255, 255, 255, 19, /* 0xc8 */ + 20, 21, 22, 23, 24, 25, 26, 27, /* 0xd0 */ + 28, 29, 30, 31, 32, 33, 34, 35, /* 0xd8 */ + 36, 37, 38, 39, 40, 41, 42, 43, /* 0xe0 */ + 44, 45, 255, 255, 46, 255, 47, 48, /* 0xe8 */ + 0, 255, 255, 255, 3, 255, 2, 4, /* 0xf0 */ + 255, 255, 255, 255, 255, 0, 255, 255, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_ISO88595[] = { + + (unsigned char*)"\xd2\xdf\xdd\xe1\xd7\xe2\xd4\xdc\xda\xd1\xe0\xde\xd3\xf6\xd9\xef\xe3\xdb\xe7\xe9\xb2\xd0\xbf\xe6\xe5\xd6\xbd\xb0\xbc\xc2\xbe\xc1\xf7\xba\xb1\xa6\xc0\xe8\xb4\xb3\xb7\xe4\xc3\xcf\xc5\xf4\xc7\xb5\xd5\xc8\xbb\xc6\xc4", /* FILLCHAR */ + (unsigned char*)".", /* 0xa6 */ + (unsigned char*)".\xd4\xd2\xdb\xdd\xe2\xe1\xd9\xd7\xdc\xda\xef\xe7\xe0\xe8\xf7\xf4\xe5\xd1\xd6\xd3\xde\xee\xd0", /* 0xf6 */ + (unsigned char*)".\xe2", /* 0xf4 */ + (unsigned char*)".\xdd\xe5\xf7", /* 0xf7 */ + (unsigned char*)".\xdb", /* 0xb0 */ + (unsigned char*)"\xd0", /* 0xb1 */ + (unsigned char*)"\xd8\xde\xf6.", /* 0xb2 */ + (unsigned char*)"\xde", /* 0xb4 */ + (unsigned char*)"\xdb", /* 0xb5 */ + (unsigned char*)"\xd0", /* 0xb7 */ + (unsigned char*)"\xde", /* 0xba */ + (unsigned char*)"\xd0\xde", /* 0xbc */ + (unsigned char*)"\xd0\xd5", /* 0xbd */ + (unsigned char*)"\xe0\xde", /* 0xbf */ + (unsigned char*)"\xe3", /* 0xc0 */ + (unsigned char*)"\xde", /* 0xc1 */ + (unsigned char*)"\xd0\xe0", /* 0xc2 */ + (unsigned char*)"\xda", /* 0xc3 */ + (unsigned char*)".", /* 0xcf */ + (unsigned char*)".\xdb\xdd\xe2\xd2\xe0\xdc\xda\xe1\xd4\xf4\xd7\xd9\xe8\xe5\xe7\xd1\xee\xdf\xd3\xd6\xe6\xf7\xe4", /* 0xd0 */ + (unsigned char*)"\xe3\xd0\xde\xf6\xd8\xd5\xdb\xe0.\xdd", /* 0xd1 */ + (unsigned char*)".\xd8\xd0\xf6\xde\xd5\xe1\xdd\xe3\xdb\xd6\xe7\xe2\xe8\xd4\xda", /* 0xd2 */ + (unsigned char*)"\xde\xd0\xe0\xe3\xdb\xf6\xd8.\xd5", /* 0xd3 */ + (unsigned char*)"\xde\xd8\xd0\xd5\xdd.\xf6\xe3\xe0\xd2\xda\xdb\xef\xe1\xd6", /* 0xd4 */ + (unsigned char*)".\xe0\xdd\xe1\xdb\xe2\xdc\xd7\xda\xd4\xd2\xdf\xd1\xd9\xe7\xd6\xe6\xd3\xde", /* 0xd5 */ + (unsigned char*)"\xd5\xdd.\xd8\xd0\xe3", /* 0xd6 */ + (unsigned char*)"\xd0.\xdd\xd2\xe3\xd8\xde\xd4\xd5\xf6\xdc\xe0\xdb", /* 0xd7 */ + (unsigned char*)".\xe2\xdd\xe1\xdc\xd9\xd2\xe5\xda\xdb\xe7\xe0\xd4\xe6\xe8\xdf\xd1\xd7\xd3", /* 0xd8 */ + (unsigned char*)".\xde\xdd\xe1\xe2", /* 0xd9 */ + (unsigned char*)"\xde\xd0\xd8.\xe3\xe0\xf6\xdb\xe2\xd5\xe1\xdd", /* 0xda */ + (unsigned char*)"\xd8\xd0\xde\xec\xd5\xf6\xef\xee\xe3.", /* 0xdb */ + (unsigned char*)".\xd0\xd8\xde\xf6\xe3\xd5\xdd", /* 0xdc */ + (unsigned char*)"\xd0\xde\xd5\xd8\xf6\xef\xdd\xe3.\xec\xda\xe2\xe6\xe1\xd4\xee", /* 0xdd */ + (unsigned char*)".\xd2\xe0\xd3\xdb\xdc\xd4\xe1\xdd\xd1\xda\xe2\xd7\xe7\xf7\xee\xd6\xdf\xe5\xe8\xe6", /* 0xde */ + (unsigned char*)"\xde\xe0\xd0\xd5\xf6\xd8\xdb\xe3.", /* 0xdf */ + (unsigned char*)"\xde\xd0\xd8\xd5\xe3\xf6.\xe2\xdd\xef\xda\xe1\xd3\xdc\xd2", /* 0xe0 */ + (unsigned char*)"\xe2\xef\xec\xd8\xf6\xde\xda\xd0\xdf\xd5\xd2\xdb.\xdd\xe3\xdc", /* 0xe1 */ + (unsigned char*)"\xd8\xd0\xec\xde\xd5\xf6\xe0\xe3.\xd2\xef\xdd\xda\xe2\xdb", /* 0xe2 */ + (unsigned char*)".\xd2\xd4\xe2\xe1\xda\xdb\xdc\xe0\xe5\xf4\xdf\xe8\xd6\xe7\xd3\xdd\xd1\xd7\xee", /* 0xe3 */ + (unsigned char*)"\xf6.\xde\xd0", /* 0xe4 */ + (unsigned char*)".\xde\xd0\xd8\xf6\xe3", /* 0xe5 */ + (unsigned char*)"\xf6\xd5\xec\xef\xee", /* 0xe6 */ + (unsigned char*)"\xd8\xd5\xd0\xdd\xde\xf6\xe3\xda.", /* 0xe7 */ + (unsigned char*)"\xd8\xd5\xd0\xda\xdd.\xe3\xde\xf6\xe2\xdb", /* 0xe8 */ + (unsigned char*)"\xde\xd5\xd0", /* 0xe9 */ + (unsigned char*)".\xda\xe1\xdd\xde\xe4", /* 0xec */ + (unsigned char*)".\xe2\xe7\xd4", /* 0xee */ + (unsigned char*)".\xda\xe2\xe7\xdc\xd4\xdd\xd2\xd3\xf4", /* 0xef */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_CP1125[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 274, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 254, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 5321, 774, 3238, 922, 1857, 3140, 485, 1219, /* 0xa0 */ + 3981, 688, 2410, 2105, 1772, 4802, 5884, 1587, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 3331, 2738, 3518, 1924, 275, 596, 507, 762, /* 0xe0 */ + 362, 0, 0, 0, 1116, 0, 424, 1401, /* 0xe8 */ + 0, 0, 0, 0, 0, 0, 0, 3416, /* 0xf0 */ + 0, 587, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_CP1125[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 5, 6, 7, 255, 8, 9, 255, 10, /* 0x80 */ + 255, 255, 11, 255, 12, 13, 255, 14, /* 0x88 */ + 15, 16, 17, 18, 255, 255, 255, 255, /* 0x90 */ + 255, 255, 255, 255, 255, 255, 255, 19, /* 0x98 */ + 20, 21, 22, 23, 24, 25, 26, 27, /* 0xa0 */ + 28, 29, 30, 31, 32, 33, 34, 35, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd8 */ + 36, 37, 38, 39, 40, 41, 42, 43, /* 0xe0 */ + 44, 45, 255, 255, 46, 255, 47, 48, /* 0xe8 */ + 255, 255, 255, 255, 255, 3, 1, 2, /* 0xf0 */ + 255, 4, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_CP1125[] = { + + (unsigned char*)"\xa2\xaf\xad\xe1\xa7\xe2\xa4\xac\xaa\xa1\xe0\xae\xa3\xf7\xa9\xef\xe3\xab\xe7\xe9\x82\xa0\x8f\xe6\xe5\xa6\x8d\x80\x8c\x92\x8e\x91\xf9\x8a\x81\xf6\x90\xe8\x84\x83\x87\xe4\x93\x9f\x95\xf5\x97\x85\xa5\x98\x8b\x96\x94", /* FILLCHAR */ + (unsigned char*)".", /* 0xf6 */ + (unsigned char*)".\xa4\xa2\xab\xad\xe2\xe1\xa9\xa7\xac\xaa\xef\xe7\xe0\xe8\xf9\xf5\xe5\xa1\xa6\xa3\xae\xee\xa0", /* 0xf7 */ + (unsigned char*)".\xe2", /* 0xf5 */ + (unsigned char*)".\xad\xe5\xf9", /* 0xf9 */ + (unsigned char*)".\xab", /* 0x80 */ + (unsigned char*)"\xa0", /* 0x81 */ + (unsigned char*)"\xa8\xae\xf7.", /* 0x82 */ + (unsigned char*)"\xae", /* 0x84 */ + (unsigned char*)"\xab", /* 0x85 */ + (unsigned char*)"\xa0", /* 0x87 */ + (unsigned char*)"\xae", /* 0x8a */ + (unsigned char*)"\xa0\xae", /* 0x8c */ + (unsigned char*)"\xa0\xa5", /* 0x8d */ + (unsigned char*)"\xe0\xae", /* 0x8f */ + (unsigned char*)"\xe3", /* 0x90 */ + (unsigned char*)"\xae", /* 0x91 */ + (unsigned char*)"\xa0\xe0", /* 0x92 */ + (unsigned char*)"\xaa", /* 0x93 */ + (unsigned char*)".", /* 0x9f */ + (unsigned char*)".\xab\xad\xe2\xa2\xe0\xac\xaa\xe1\xa4\xf5\xa7\xa9\xe8\xe5\xe7\xa1\xee\xaf\xa3\xa6\xe6\xf9\xe4", /* 0xa0 */ + (unsigned char*)"\xe3\xa0\xae\xf7\xa8\xa5\xab\xe0.\xad", /* 0xa1 */ + (unsigned char*)".\xa8\xa0\xf7\xae\xa5\xe1\xad\xe3\xab\xa6\xe7\xe2\xe8\xa4\xaa", /* 0xa2 */ + (unsigned char*)"\xae\xa0\xe0\xe3\xab\xf7\xa8.\xa5", /* 0xa3 */ + (unsigned char*)"\xae\xa8\xa0\xa5\xad.\xf7\xe3\xe0\xa2\xaa\xab\xef\xe1\xa6", /* 0xa4 */ + (unsigned char*)".\xe0\xad\xe1\xab\xe2\xac\xa7\xaa\xa4\xa2\xaf\xa1\xa9\xe7\xa6\xe6\xa3\xae", /* 0xa5 */ + (unsigned char*)"\xa5\xad.\xa8\xa0\xe3", /* 0xa6 */ + (unsigned char*)"\xa0.\xad\xa2\xe3\xa8\xae\xa4\xa5\xf7\xac\xe0\xab", /* 0xa7 */ + (unsigned char*)".\xe2\xad\xe1\xac\xa9\xa2\xe5\xaa\xab\xe7\xe0\xa4\xe6\xe8\xaf\xa1\xa7\xa3", /* 0xa8 */ + (unsigned char*)".\xae\xad\xe1\xe2", /* 0xa9 */ + (unsigned char*)"\xae\xa0\xa8.\xe3\xe0\xf7\xab\xe2\xa5\xe1\xad", /* 0xaa */ + (unsigned char*)"\xa8\xa0\xae\xec\xa5\xf7\xef\xee\xe3.", /* 0xab */ + (unsigned char*)".\xa0\xa8\xae\xf7\xe3\xa5\xad", /* 0xac */ + (unsigned char*)"\xa0\xae\xa5\xa8\xf7\xef\xad\xe3.\xec\xaa\xe2\xe6\xe1\xa4\xee", /* 0xad */ + (unsigned char*)".\xa2\xe0\xa3\xab\xac\xa4\xe1\xad\xa1\xaa\xe2\xa7\xe7\xf9\xee\xa6\xaf\xe5\xe8\xe6", /* 0xae */ + (unsigned char*)"\xae\xe0\xa0\xa5\xf7\xa8\xab\xe3.", /* 0xaf */ + (unsigned char*)"\xae\xa0\xa8\xa5\xe3\xf7.\xe2\xad\xef\xaa\xe1\xa3\xac\xa2", /* 0xe0 */ + (unsigned char*)"\xe2\xef\xec\xa8\xf7\xae\xaa\xa0\xaf\xa5\xa2\xab.\xad\xe3\xac", /* 0xe1 */ + (unsigned char*)"\xa8\xa0\xec\xae\xa5\xf7\xe0\xe3.\xa2\xef\xad\xaa\xe2\xab", /* 0xe2 */ + (unsigned char*)".\xa2\xa4\xe2\xe1\xaa\xab\xac\xe0\xe5\xf5\xaf\xe8\xa6\xe7\xa3\xad\xa1\xa7\xee", /* 0xe3 */ + (unsigned char*)"\xf7.\xae\xa0", /* 0xe4 */ + (unsigned char*)".\xae\xa0\xa8\xf7\xe3", /* 0xe5 */ + (unsigned char*)"\xf7\xa5\xec\xef\xee", /* 0xe6 */ + (unsigned char*)"\xa8\xa5\xa0\xad\xae\xf7\xe3\xaa.", /* 0xe7 */ + (unsigned char*)"\xa8\xa5\xa0\xaa\xad.\xe3\xae\xf7\xe2\xab", /* 0xe8 */ + (unsigned char*)"\xae\xa5\xa0", /* 0xe9 */ + (unsigned char*)".\xaa\xe1\xad\xae\xe4", /* 0xec */ + (unsigned char*)".\xe2\xe7\xa4", /* 0xee */ + (unsigned char*)".\xaa\xe2\xe7\xac\xa4\xad\xa2\xa3\xf5", /* 0xef */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_KOI8U[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 3416, 587, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xb8 */ + 424, 5321, 774, 507, 1857, 3140, 275, 922, /* 0xc0 */ + 596, 3981, 688, 2410, 2105, 1772, 4802, 5884, /* 0xc8 */ + 1587, 1401, 3331, 2738, 3518, 1924, 485, 3238, /* 0xd0 */ + 1116, 0, 1219, 362, 0, 0, 762, 0, /* 0xd8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xe8 */ + 254, 0, 0, 0, 0, 0, 0, 274, /* 0xf0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_KOI8U[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 255, 3, 0, 2, 4, /* 0xa0 */ + 0, 0, 0, 0, 0, 255, 0, 0, /* 0xa8 */ + 0, 0, 0, 255, 255, 0, 1, 255, /* 0xb0 */ + 0, 0, 0, 0, 0, 255, 0, 0, /* 0xb8 */ + 47, 20, 21, 42, 24, 25, 40, 23, /* 0xc0 */ + 41, 28, 29, 30, 31, 32, 33, 34, /* 0xc8 */ + 35, 48, 36, 37, 38, 39, 26, 22, /* 0xd0 */ + 46, 255, 27, 44, 255, 45, 43, 255, /* 0xd8 */ + 255, 5, 6, 255, 8, 9, 255, 255, /* 0xe0 */ + 255, 255, 255, 11, 255, 12, 13, 255, /* 0xe8 */ + 14, 19, 15, 16, 17, 18, 255, 7, /* 0xf0 */ + 255, 255, 10, 255, 255, 255, 255, 255, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_KOI8U[] = { + + (unsigned char*)"\xd7\xd0\xce\xd3\xda\xd4\xc4\xcd\xcb\xc2\xd2\xcf\xc7\xa6\xca\xd1\xd5\xcc\xde\xdd\xf7\xc1\xf0\xc3\xc8\xd6\xee\xe1\xed\xf4\xef\xf3\xa7\xeb\xe2\xb6\xf2\xdb\xe4\xe7\xfa\xc6\xf5\xf1\xe8\xa4\xfe\xe5\xc5\xfb\xec\xe3\xe6", /* FILLCHAR */ + (unsigned char*)".", /* 0xb6 */ + (unsigned char*)".\xc4\xd7\xcc\xce\xd4\xd3\xca\xda\xcd\xcb\xd1\xde\xd2\xdb\xa7\xa4\xc8\xc2\xd6\xc7\xcf\xc0\xc1", /* 0xa6 */ + (unsigned char*)".\xd4", /* 0xa4 */ + (unsigned char*)".\xce\xc8\xa7", /* 0xa7 */ + (unsigned char*)".\xcc", /* 0xe1 */ + (unsigned char*)"\xc1", /* 0xe2 */ + (unsigned char*)"\xc9\xcf\xa6.", /* 0xf7 */ + (unsigned char*)"\xcf", /* 0xe4 */ + (unsigned char*)"\xcc", /* 0xe5 */ + (unsigned char*)"\xc1", /* 0xfa */ + (unsigned char*)"\xcf", /* 0xeb */ + (unsigned char*)"\xc1\xcf", /* 0xed */ + (unsigned char*)"\xc1\xc5", /* 0xee */ + (unsigned char*)"\xd2\xcf", /* 0xf0 */ + (unsigned char*)"\xd5", /* 0xf2 */ + (unsigned char*)"\xcf", /* 0xf3 */ + (unsigned char*)"\xc1\xd2", /* 0xf4 */ + (unsigned char*)"\xcb", /* 0xf5 */ + (unsigned char*)".", /* 0xf1 */ + (unsigned char*)".\xcc\xce\xd4\xd7\xd2\xcd\xcb\xd3\xc4\xa4\xda\xca\xdb\xc8\xde\xc2\xc0\xd0\xc7\xd6\xc3\xa7\xc6", /* 0xc1 */ + (unsigned char*)"\xd5\xc1\xcf\xa6\xc9\xc5\xcc\xd2.\xce", /* 0xc2 */ + (unsigned char*)".\xc9\xc1\xa6\xcf\xc5\xd3\xce\xd5\xcc\xd6\xde\xd4\xdb\xc4\xcb", /* 0xd7 */ + (unsigned char*)"\xcf\xc1\xd2\xd5\xcc\xa6\xc9.\xc5", /* 0xc7 */ + (unsigned char*)"\xcf\xc9\xc1\xc5\xce.\xa6\xd5\xd2\xd7\xcb\xcc\xd1\xd3\xd6", /* 0xc4 */ + (unsigned char*)".\xd2\xce\xd3\xcc\xd4\xcd\xda\xcb\xc4\xd7\xd0\xc2\xca\xde\xd6\xc3\xc7\xcf", /* 0xc5 */ + (unsigned char*)"\xc5\xce.\xc9\xc1\xd5", /* 0xd6 */ + (unsigned char*)"\xc1.\xce\xd7\xd5\xc9\xcf\xc4\xc5\xa6\xcd\xd2\xcc", /* 0xda */ + (unsigned char*)".\xd4\xce\xd3\xcd\xca\xd7\xc8\xcb\xcc\xde\xd2\xc4\xc3\xdb\xd0\xc2\xda\xc7", /* 0xc9 */ + (unsigned char*)".\xcf\xce\xd3\xd4", /* 0xca */ + (unsigned char*)"\xcf\xc1\xc9.\xd5\xd2\xa6\xcc\xd4\xc5\xd3\xce", /* 0xcb */ + (unsigned char*)"\xc9\xc1\xcf\xd8\xc5\xa6\xd1\xc0\xd5.", /* 0xcc */ + (unsigned char*)".\xc1\xc9\xcf\xa6\xd5\xc5\xce", /* 0xcd */ + (unsigned char*)"\xc1\xcf\xc5\xc9\xa6\xd1\xce\xd5.\xd8\xcb\xd4\xc3\xd3\xc4\xc0", /* 0xce */ + (unsigned char*)".\xd7\xd2\xc7\xcc\xcd\xc4\xd3\xce\xc2\xcb\xd4\xda\xde\xa7\xc0\xd6\xd0\xc8\xdb\xc3", /* 0xcf */ + (unsigned char*)"\xcf\xd2\xc1\xc5\xa6\xc9\xcc\xd5.", /* 0xd0 */ + (unsigned char*)"\xcf\xc1\xc9\xc5\xd5\xa6.\xd4\xce\xd1\xcb\xd3\xc7\xcd\xd7", /* 0xd2 */ + (unsigned char*)"\xd4\xd1\xd8\xc9\xa6\xcf\xcb\xc1\xd0\xc5\xd7\xcc.\xce\xd5\xcd", /* 0xd3 */ + (unsigned char*)"\xc9\xc1\xd8\xcf\xc5\xa6\xd2\xd5.\xd7\xd1\xce\xcb\xd4\xcc", /* 0xd4 */ + (unsigned char*)".\xd7\xc4\xd4\xd3\xcb\xcc\xcd\xd2\xc8\xa4\xd0\xdb\xd6\xde\xc7\xce\xc2\xda\xc0", /* 0xd5 */ + (unsigned char*)"\xa6.\xcf\xc1", /* 0xc6 */ + (unsigned char*)".\xcf\xc1\xc9\xa6\xd5", /* 0xc8 */ + (unsigned char*)"\xa6\xc5\xd8\xd1\xc0", /* 0xc3 */ + (unsigned char*)"\xc9\xc5\xc1\xce\xcf\xa6\xd5\xcb.", /* 0xde */ + (unsigned char*)"\xc9\xc5\xc1\xcb\xce.\xd5\xcf\xa6\xd4\xcc", /* 0xdb */ + (unsigned char*)"\xcf\xc5\xc1", /* 0xdd */ + (unsigned char*)".\xcb\xd3\xce\xcf\xc6", /* 0xd8 */ + (unsigned char*)".\xd4\xde\xc4", /* 0xc0 */ + (unsigned char*)".\xcb\xd4\xde\xcd\xc4\xce\xd7\xc7\xa4", /* 0xd1 */ +}; + + +/* THIS IS A GENERATED TABLE, see data/basetoc.c. */ +static const unsigned short int RAW_MACCYR[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 274, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 0, 0, 0, 0, 0, 254, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x98 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xa8 */ + 0, 0, 0, 0, 3416, 0, 0, 0, /* 0xb0 */ + 0, 0, 0, 587, 0, 0, 0, 0, /* 0xb8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 0, 0, 0, 0, 0, 0, 0, 1401, /* 0xd8 */ + 5321, 774, 3238, 922, 1857, 3140, 485, 1219, /* 0xe0 */ + 3981, 688, 2410, 2105, 1772, 4802, 5884, 1587, /* 0xe8 */ + 3331, 2738, 3518, 1924, 275, 596, 507, 762, /* 0xf0 */ + 362, 0, 0, 0, 1116, 0, 424, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char LETTER_MACCYR[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 5, 6, 7, 255, 8, 9, 255, 10, /* 0x80 */ + 255, 255, 11, 255, 12, 13, 255, 14, /* 0x88 */ + 15, 16, 17, 18, 255, 255, 255, 255, /* 0x90 */ + 255, 255, 255, 255, 255, 255, 255, 19, /* 0x98 */ + 0, 0, 255, 0, 0, 0, 0, 1, /* 0xa0 */ + 0, 0, 0, 255, 255, 0, 255, 255, /* 0xa8 */ + 0, 0, 0, 0, 2, 0, 255, 255, /* 0xb0 */ + 255, 3, 255, 4, 255, 255, 255, 255, /* 0xb8 */ + 255, 255, 0, 0, 255, 0, 0, 0, /* 0xc0 */ + 0, 0, 0, 255, 255, 255, 255, 255, /* 0xc8 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0xd0 */ + 255, 255, 255, 255, 0, 255, 255, 48, /* 0xd8 */ + 20, 21, 22, 23, 24, 25, 26, 27, /* 0xe0 */ + 28, 29, 30, 31, 32, 33, 34, 35, /* 0xe8 */ + 36, 37, 38, 39, 40, 41, 42, 43, /* 0xf0 */ + 44, 45, 255, 255, 46, 255, 47, 0, /* 0xf8 */ +}; + +/* THIS IS A GENERATED TABLE, see data/pairtoc.c. */ +static const unsigned char *PAIR_MACCYR[] = { + + (unsigned char*)"\xe2\xef\xed\xf1\xe7\xf2\xe4\xec\xea\xe1\xf0\xee\xe3\xb4\xe9\xdf\xf3\xeb\xf7\xf9\x82\xe0\x8f\xf6\xf5\xe6\x8d\x80\x8c\x92\x8e\x91\xbb\x8a\x81\xa7\x90\xf8\x84\x83\x87\xf4\x93\x9f\x95\xb9\x97\x85\xe5\x98\x8b\x96\x94", /* FILLCHAR */ + (unsigned char*)".", /* 0xa7 */ + (unsigned char*)".\xe4\xe2\xeb\xed\xf2\xf1\xe9\xe7\xec\xea\xdf\xf7\xf0\xf8\xbb\xb9\xf5\xe1\xe6\xe3\xee\xfe\xe0", /* 0xb4 */ + (unsigned char*)".\xf2", /* 0xb9 */ + (unsigned char*)".\xed\xf5\xbb", /* 0xbb */ + (unsigned char*)".\xeb", /* 0x80 */ + (unsigned char*)"\xe0", /* 0x81 */ + (unsigned char*)"\xe8\xee\xb4.", /* 0x82 */ + (unsigned char*)"\xee", /* 0x84 */ + (unsigned char*)"\xeb", /* 0x85 */ + (unsigned char*)"\xe0", /* 0x87 */ + (unsigned char*)"\xee", /* 0x8a */ + (unsigned char*)"\xe0\xee", /* 0x8c */ + (unsigned char*)"\xe0\xe5", /* 0x8d */ + (unsigned char*)"\xf0\xee", /* 0x8f */ + (unsigned char*)"\xf3", /* 0x90 */ + (unsigned char*)"\xee", /* 0x91 */ + (unsigned char*)"\xe0\xf0", /* 0x92 */ + (unsigned char*)"\xea", /* 0x93 */ + (unsigned char*)".", /* 0x9f */ + (unsigned char*)".\xeb\xed\xf2\xe2\xf0\xec\xea\xf1\xe4\xb9\xe7\xe9\xf8\xf5\xf7\xe1\xfe\xef\xe3\xe6\xf6\xbb\xf4", /* 0xe0 */ + (unsigned char*)"\xf3\xe0\xee\xb4\xe8\xe5\xeb\xf0.\xed", /* 0xe1 */ + (unsigned char*)".\xe8\xe0\xb4\xee\xe5\xf1\xed\xf3\xeb\xe6\xf7\xf2\xf8\xe4\xea", /* 0xe2 */ + (unsigned char*)"\xee\xe0\xf0\xf3\xeb\xb4\xe8.\xe5", /* 0xe3 */ + (unsigned char*)"\xee\xe8\xe0\xe5\xed.\xb4\xf3\xf0\xe2\xea\xeb\xdf\xf1\xe6", /* 0xe4 */ + (unsigned char*)".\xf0\xed\xf1\xeb\xf2\xec\xe7\xea\xe4\xe2\xef\xe1\xe9\xf7\xe6\xf6\xe3\xee", /* 0xe5 */ + (unsigned char*)"\xe5\xed.\xe8\xe0\xf3", /* 0xe6 */ + (unsigned char*)"\xe0.\xed\xe2\xf3\xe8\xee\xe4\xe5\xb4\xec\xf0\xeb", /* 0xe7 */ + (unsigned char*)".\xf2\xed\xf1\xec\xe9\xe2\xf5\xea\xeb\xf7\xf0\xe4\xf6\xf8\xef\xe1\xe7\xe3", /* 0xe8 */ + (unsigned char*)".\xee\xed\xf1\xf2", /* 0xe9 */ + (unsigned char*)"\xee\xe0\xe8.\xf3\xf0\xb4\xeb\xf2\xe5\xf1\xed", /* 0xea */ + (unsigned char*)"\xe8\xe0\xee\xfc\xe5\xb4\xdf\xfe\xf3.", /* 0xeb */ + (unsigned char*)".\xe0\xe8\xee\xb4\xf3\xe5\xed", /* 0xec */ + (unsigned char*)"\xe0\xee\xe5\xe8\xb4\xdf\xed\xf3.\xfc\xea\xf2\xf6\xf1\xe4\xfe", /* 0xed */ + (unsigned char*)".\xe2\xf0\xe3\xeb\xec\xe4\xf1\xed\xe1\xea\xf2\xe7\xf7\xbb\xfe\xe6\xef\xf5\xf8\xf6", /* 0xee */ + (unsigned char*)"\xee\xf0\xe0\xe5\xb4\xe8\xeb\xf3.", /* 0xef */ + (unsigned char*)"\xee\xe0\xe8\xe5\xf3\xb4.\xf2\xed\xdf\xea\xf1\xe3\xec\xe2", /* 0xf0 */ + (unsigned char*)"\xf2\xdf\xfc\xe8\xb4\xee\xea\xe0\xef\xe5\xe2\xeb.\xed\xf3\xec", /* 0xf1 */ + (unsigned char*)"\xe8\xe0\xfc\xee\xe5\xb4\xf0\xf3.\xe2\xdf\xed\xea\xf2\xeb", /* 0xf2 */ + (unsigned char*)".\xe2\xe4\xf2\xf1\xea\xeb\xec\xf0\xf5\xb9\xef\xf8\xe6\xf7\xe3\xed\xe1\xe7\xfe", /* 0xf3 */ + (unsigned char*)"\xb4.\xee\xe0", /* 0xf4 */ + (unsigned char*)".\xee\xe0\xe8\xb4\xf3", /* 0xf5 */ + (unsigned char*)"\xb4\xe5\xfc\xdf\xfe", /* 0xf6 */ + (unsigned char*)"\xe8\xe5\xe0\xed\xee\xb4\xf3\xea.", /* 0xf7 */ + (unsigned char*)"\xe8\xe5\xe0\xea\xed.\xf3\xee\xb4\xf2\xeb", /* 0xf8 */ + (unsigned char*)"\xee\xe5\xe0", /* 0xf9 */ + (unsigned char*)".\xea\xf1\xed\xee\xf4", /* 0xfc */ + (unsigned char*)".\xf2\xf7\xe4", /* 0xfe */ + (unsigned char*)".\xea\xf2\xf7\xec\xe4\xed\xe2\xe3\xb9", /* 0xdf */ +}; + + +/* THIS IS A GENERATED TABLE, see data/totals.pl. */ +static const unsigned short int SIGNIFICANT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x08 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x10 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x18 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x20 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x28 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x30 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x38 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x40 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x48 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x50 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x58 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x68 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x78 */ + 0, 0, 548, 0, 0, 0, 0, 0, /* 0x80 */ + 0, 0, 3416, 0, 587, 0, 0, 508, /* 0x88 */ + 0, 0, 0, 0, 0, 0, 0, 0, /* 0x90 */ + 0, 0, 0, 0, 424, 0, 0, 0, /* 0x98 */ + 10642, 774, 4012, 922, 2364, 3140, 5758, 1806, /* 0xa0 */ + 7121, 688, 2685, 2105, 2694, 4802, 5884, 1587, /* 0xa8 */ + 0, 0, 274, 3416, 3416, 596, 0, 3981, /* 0xb0 */ + 0, 0, 0, 587, 0, 688, 0, 841, /* 0xb8 */ + 424, 5321, 1048, 507, 1857, 3140, 2685, 922, /* 0xc0 */ + 596, 3981, 688, 2410, 2105, 1772, 4802, 6138, /* 0xc8 */ + 9013, 2175, 8341, 3660, 10177, 5064, 6854, 4457, /* 0xd0 */ + 6684, 688, 3629, 2467, 1772, 5056, 8047, 2988, /* 0xd8 */ + 17304, 10355, 13512, 8430, 4264, 10990, 1984, 5886, /* 0xe0 */ + 8686, 1861, 4820, 7448, 6050, 10720, 12616, 5976, /* 0xe8 */ + 6916, 5476, 7036, 5067, 550, 1554, 4430, 5801, /* 0xf0 */ + 724, 587, 0, 762, 2232, 0, 848, 1401, /* 0xf8 */ +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define WEIGHT_SUM 61670 + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const char *const CHARSET_NAMES[] = { + "cp1251", + "ibm855", + "iso88595", + "cp1125", + "koi8u", + "maccyr", +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned short int *const CHARSET_WEIGHTS[] = { + RAW_CP1251, + RAW_IBM855, + RAW_ISO88595, + RAW_CP1125, + RAW_KOI8U, + RAW_MACCYR, +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned char *const CHARSET_LETTERS[] = { + LETTER_CP1251, + LETTER_IBM855, + LETTER_ISO88595, + LETTER_CP1125, + LETTER_KOI8U, + LETTER_MACCYR, +}; + +/* THIS IS A GENERATED TABLE, see data/totals.pl */ +static const unsigned char **const CHARSET_PAIRS[] = { + PAIR_CP1251, + PAIR_IBM855, + PAIR_ISO88595, + PAIR_CP1125, + PAIR_KOI8U, + PAIR_MACCYR, +}; + +/* THIS IS A GENERATED VALUE, see data/totals.pl */ +#define NCHARSETS 6 diff --git a/wlx/wayland_qt_base/build/enca-1.19/data/xlt.c b/wlx/wayland_qt_base/build/enca-1.19/data/xlt.c new file mode 100644 index 0000000..d87afea --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/data/xlt.c @@ -0,0 +1,49 @@ +#include <stdio.h> +#define NO_CHR 0xffff + +int +main(int argc, char *argv[]) +{ + unsigned int target_map[0x100]; + unsigned int source_map[0x100]; + unsigned char xlt[0x100]; + unsigned int ucs2_map[0x10000]; + FILE *f; + + int i; + int c; + + f = fopen(argv[1], "r"); + for (i = 0; i < 0x100; i++) + fscanf(f, "%x", source_map + i); + fclose(f); + + f = fopen(argv[2], "r"); + for (i = 0; i < 0x100; i++) + fscanf(f, "%x", target_map + i); + fclose(f); + + for (i = 0; i < 0x100; i++) + xlt[i] = (unsigned char)i; + + for (i = 0; i < 0x10000; i++) + ucs2_map[i] = NO_CHR; + + for (i = 0xff; i >= 0; i--) { + if (target_map[i] != NO_CHR) + ucs2_map[target_map[i]] = (unsigned int)i; + } + + for (i = 0xff; i >= 0; i--) { + if (source_map[i] != NO_CHR + && ucs2_map[source_map[i]] != NO_CHR) + xlt[i] = (unsigned char)ucs2_map[source_map[i]]; + } + + while ((c = getchar()) != EOF) + putchar(xlt[c]); + + return 0; +} +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/depcomp b/wlx/wayland_qt_base/build/enca-1.19/depcomp new file mode 100755 index 0000000..fc98710 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/depcomp @@ -0,0 +1,791 @@ +#! /bin/sh +# depcomp - compile a program generating dependencies as side-effects + +scriptversion=2013-05-30.07; # UTC + +# Copyright (C) 1999-2014 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>. + +case $1 in + '') + echo "$0: No command. Try '$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: depcomp [--help] [--version] PROGRAM [ARGS] + +Run PROGRAMS ARGS to compile a file, generating dependencies +as side-effects. + +Environment variables: + depmode Dependency tracking mode. + source Source file read by 'PROGRAMS ARGS'. + object Object file output by 'PROGRAMS ARGS'. + DEPDIR directory where to store dependencies. + depfile Dependency file to output. + tmpdepfile Temporary file to use when outputting dependencies. + libtool Whether libtool is used (yes/no). + +Report bugs to <bug-automake@gnu.org>. +EOF + exit $? + ;; + -v | --v*) + echo "depcomp $scriptversion" + exit $? + ;; +esac + +# Get the directory component of the given path, and save it in the +# global variables '$dir'. Note that this directory component will +# be either empty or ending with a '/' character. This is deliberate. +set_dir_from () +{ + case $1 in + */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; + *) dir=;; + esac +} + +# Get the suffix-stripped basename of the given path, and save it the +# global variable '$base'. +set_base_from () +{ + base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` +} + +# If no dependency file was actually created by the compiler invocation, +# we still have to create a dummy depfile, to avoid errors with the +# Makefile "include basename.Plo" scheme. +make_dummy_depfile () +{ + echo "#dummy" > "$depfile" +} + +# Factor out some common post-processing of the generated depfile. +# Requires the auxiliary global variable '$tmpdepfile' to be set. +aix_post_process_depfile () +{ + # If the compiler actually managed to produce a dependency file, + # post-process it. + if test -f "$tmpdepfile"; then + # Each line is of the form 'foo.o: dependency.h'. + # Do two passes, one to just change these to + # $object: dependency.h + # and one to simply output + # dependency.h: + # which is needed to avoid the deleted-header problem. + { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" + sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" + } > "$depfile" + rm -f "$tmpdepfile" + else + make_dummy_depfile + fi +} + +# A tabulation character. +tab=' ' +# A newline character. +nl=' +' +# Character ranges might be problematic outside the C locale. +# These definitions help. +upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ +lower=abcdefghijklmnopqrstuvwxyz +digits=0123456789 +alpha=${upper}${lower} + +if test -z "$depmode" || test -z "$source" || test -z "$object"; then + echo "depcomp: Variables source, object and depmode must be set" 1>&2 + exit 1 +fi + +# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. +depfile=${depfile-`echo "$object" | + sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} +tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} + +rm -f "$tmpdepfile" + +# Avoid interferences from the environment. +gccflag= dashmflag= + +# Some modes work just like other modes, but use different flags. We +# parameterize here, but still list the modes in the big case below, +# to make depend.m4 easier to write. Note that we *cannot* use a case +# here, because this file can only contain one case statement. +if test "$depmode" = hp; then + # HP compiler uses -M and no extra arg. + gccflag=-M + depmode=gcc +fi + +if test "$depmode" = dashXmstdout; then + # This is just like dashmstdout with a different argument. + dashmflag=-xM + depmode=dashmstdout +fi + +cygpath_u="cygpath -u -f -" +if test "$depmode" = msvcmsys; then + # This is just like msvisualcpp but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u='sed s,\\\\,/,g' + depmode=msvisualcpp +fi + +if test "$depmode" = msvc7msys; then + # This is just like msvc7 but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u='sed s,\\\\,/,g' + depmode=msvc7 +fi + +if test "$depmode" = xlc; then + # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. + gccflag=-qmakedep=gcc,-MF + depmode=gcc +fi + +case "$depmode" in +gcc3) +## gcc 3 implements dependency tracking that does exactly what +## we want. Yay! Note: for some reason libtool 1.4 doesn't like +## it if -MD -MP comes after the -MF stuff. Hmm. +## Unfortunately, FreeBSD c89 acceptance of flags depends upon +## the command line argument order; so add the flags where they +## appear in depend2.am. Note that the slowdown incurred here +## affects only configure: in makefiles, %FASTDEP% shortcuts this. + for arg + do + case $arg in + -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; + *) set fnord "$@" "$arg" ;; + esac + shift # fnord + shift # $arg + done + "$@" + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + mv "$tmpdepfile" "$depfile" + ;; + +gcc) +## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. +## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. +## (see the conditional assignment to $gccflag above). +## There are various ways to get dependency output from gcc. Here's +## why we pick this rather obscure method: +## - Don't want to use -MD because we'd like the dependencies to end +## up in a subdir. Having to rename by hand is ugly. +## (We might end up doing this anyway to support other compilers.) +## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like +## -MM, not -M (despite what the docs say). Also, it might not be +## supported by the other compilers which use the 'gcc' depmode. +## - Using -M directly means running the compiler twice (even worse +## than renaming). + if test -z "$gccflag"; then + gccflag=-MD, + fi + "$@" -Wp,"$gccflag$tmpdepfile" + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + # The second -e expression handles DOS-style file names with drive + # letters. + sed -e 's/^[^:]*: / /' \ + -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" +## This next piece of magic avoids the "deleted header file" problem. +## The problem is that when a header file which appears in a .P file +## is deleted, the dependency causes make to die (because there is +## typically no way to rebuild the header). We avoid this by adding +## dummy dependencies for each header file. Too bad gcc doesn't do +## this for us directly. +## Some versions of gcc put a space before the ':'. On the theory +## that the space means something, we add a space to the output as +## well. hp depmode also adds that space, but also prefixes the VPATH +## to the object. Take care to not repeat it in the output. +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +sgi) + if test "$libtool" = yes; then + "$@" "-Wp,-MDupdate,$tmpdepfile" + else + "$@" -MDupdate "$tmpdepfile" + fi + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + + if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files + echo "$object : \\" > "$depfile" + # Clip off the initial element (the dependent). Don't try to be + # clever and replace this with sed code, as IRIX sed won't handle + # lines with more than a fixed number of characters (4096 in + # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; + # the IRIX cc adds comments like '#:fec' to the end of the + # dependency line. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ + | tr "$nl" ' ' >> "$depfile" + echo >> "$depfile" + # The second pass generates a dummy entry for each header file. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ + >> "$depfile" + else + make_dummy_depfile + fi + rm -f "$tmpdepfile" + ;; + +xlc) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +aix) + # The C for AIX Compiler uses -M and outputs the dependencies + # in a .u file. In older versions, this file always lives in the + # current directory. Also, the AIX compiler puts '$object:' at the + # start of each line; $object doesn't have directory information. + # Version 6 uses the directory in both cases. + set_dir_from "$object" + set_base_from "$object" + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.u + tmpdepfile2=$base.u + tmpdepfile3=$dir.libs/$base.u + "$@" -Wc,-M + else + tmpdepfile1=$dir$base.u + tmpdepfile2=$dir$base.u + tmpdepfile3=$dir$base.u + "$@" -M + fi + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + do + test -f "$tmpdepfile" && break + done + aix_post_process_depfile + ;; + +tcc) + # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 + # FIXME: That version still under development at the moment of writing. + # Make that this statement remains true also for stable, released + # versions. + # It will wrap lines (doesn't matter whether long or short) with a + # trailing '\', as in: + # + # foo.o : \ + # foo.c \ + # foo.h \ + # + # It will put a trailing '\' even on the last line, and will use leading + # spaces rather than leading tabs (at least since its commit 0394caf7 + # "Emit spaces for -MD"). + "$@" -MD -MF "$tmpdepfile" + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. + # We have to change lines of the first kind to '$object: \'. + sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" + # And for each line of the second kind, we have to emit a 'dep.h:' + # dummy dependency, to avoid the deleted-header problem. + sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" + rm -f "$tmpdepfile" + ;; + +## The order of this option in the case statement is important, since the +## shell code in configure will try each of these formats in the order +## listed in this file. A plain '-MD' option would be understood by many +## compilers, so we must ensure this comes after the gcc and icc options. +pgcc) + # Portland's C compiler understands '-MD'. + # Will always output deps to 'file.d' where file is the root name of the + # source file under compilation, even if file resides in a subdirectory. + # The object file name does not affect the name of the '.d' file. + # pgcc 10.2 will output + # foo.o: sub/foo.c sub/foo.h + # and will wrap long lines using '\' : + # foo.o: sub/foo.c ... \ + # sub/foo.h ... \ + # ... + set_dir_from "$object" + # Use the source, not the object, to determine the base name, since + # that's sadly what pgcc will do too. + set_base_from "$source" + tmpdepfile=$base.d + + # For projects that build the same source file twice into different object + # files, the pgcc approach of using the *source* file root name can cause + # problems in parallel builds. Use a locking strategy to avoid stomping on + # the same $tmpdepfile. + lockdir=$base.d-lock + trap " + echo '$0: caught signal, cleaning up...' >&2 + rmdir '$lockdir' + exit 1 + " 1 2 13 15 + numtries=100 + i=$numtries + while test $i -gt 0; do + # mkdir is a portable test-and-set. + if mkdir "$lockdir" 2>/dev/null; then + # This process acquired the lock. + "$@" -MD + stat=$? + # Release the lock. + rmdir "$lockdir" + break + else + # If the lock is being held by a different process, wait + # until the winning process is done or we timeout. + while test -d "$lockdir" && test $i -gt 0; do + sleep 1 + i=`expr $i - 1` + done + fi + i=`expr $i - 1` + done + trap - 1 2 13 15 + if test $i -le 0; then + echo "$0: failed to acquire lock after $numtries attempts" >&2 + echo "$0: check lockdir '$lockdir'" >&2 + exit 1 + fi + + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + # Each line is of the form `foo.o: dependent.h', + # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp2) + # The "hp" stanza above does not work with aCC (C++) and HP's ia64 + # compilers, which have integrated preprocessors. The correct option + # to use with these is +Maked; it writes dependencies to a file named + # 'foo.d', which lands next to the object file, wherever that + # happens to be. + # Much of this is similar to the tru64 case; see comments there. + set_dir_from "$object" + set_base_from "$object" + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir.libs/$base.d + "$@" -Wc,+Maked + else + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir$base.d + "$@" +Maked + fi + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile1" "$tmpdepfile2" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" + # Add 'dependent.h:' lines. + sed -ne '2,${ + s/^ *// + s/ \\*$// + s/$/:/ + p + }' "$tmpdepfile" >> "$depfile" + else + make_dummy_depfile + fi + rm -f "$tmpdepfile" "$tmpdepfile2" + ;; + +tru64) + # The Tru64 compiler uses -MD to generate dependencies as a side + # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. + # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put + # dependencies in 'foo.d' instead, so we check for that too. + # Subdirectories are respected. + set_dir_from "$object" + set_base_from "$object" + + if test "$libtool" = yes; then + # Libtool generates 2 separate objects for the 2 libraries. These + # two compilations output dependencies in $dir.libs/$base.o.d and + # in $dir$base.o.d. We have to check for both files, because + # one of the two compilations can be disabled. We should prefer + # $dir$base.o.d over $dir.libs/$base.o.d because the latter is + # automatically cleaned when .libs/ is deleted, while ignoring + # the former would cause a distcleancheck panic. + tmpdepfile1=$dir$base.o.d # libtool 1.5 + tmpdepfile2=$dir.libs/$base.o.d # Likewise. + tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 + "$@" -Wc,-MD + else + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir$base.d + tmpdepfile3=$dir$base.d + "$@" -MD + fi + + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + do + test -f "$tmpdepfile" && break + done + # Same post-processing that is required for AIX mode. + aix_post_process_depfile + ;; + +msvc7) + if test "$libtool" = yes; then + showIncludes=-Wc,-showIncludes + else + showIncludes=-showIncludes + fi + "$@" $showIncludes > "$tmpdepfile" + stat=$? + grep -v '^Note: including file: ' "$tmpdepfile" + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + # The first sed program below extracts the file names and escapes + # backslashes for cygpath. The second sed program outputs the file + # name when reading, but also accumulates all include files in the + # hold buffer in order to output them again at the end. This only + # works with sed implementations that can handle large buffers. + sed < "$tmpdepfile" -n ' +/^Note: including file: *\(.*\)/ { + s//\1/ + s/\\/\\\\/g + p +}' | $cygpath_u | sort -u | sed -n ' +s/ /\\ /g +s/\(.*\)/'"$tab"'\1 \\/p +s/.\(.*\) \\/\1:/ +H +$ { + s/.*/'"$tab"'/ + G + p +}' >> "$depfile" + echo >> "$depfile" # make sure the fragment doesn't end with a backslash + rm -f "$tmpdepfile" + ;; + +msvc7msys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +#nosideeffect) + # This comment above is used by automake to tell side-effect + # dependency tracking mechanisms from slower ones. + +dashmstdout) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout, regardless of -o. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove '-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + test -z "$dashmflag" && dashmflag=-M + # Require at least two characters before searching for ':' + # in the target name. This is to cope with DOS-style filenames: + # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. + "$@" $dashmflag | + sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this sed invocation + # correctly. Breaking it into two sed invocations is a workaround. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +dashXmstdout) + # This case only exists to satisfy depend.m4. It is never actually + # run, as this mode is specially recognized in the preamble. + exit 1 + ;; + +makedepend) + "$@" || exit $? + # Remove any Libtool call + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + # X makedepend + shift + cleared=no eat=no + for arg + do + case $cleared in + no) + set ""; shift + cleared=yes ;; + esac + if test $eat = yes; then + eat=no + continue + fi + case "$arg" in + -D*|-I*) + set fnord "$@" "$arg"; shift ;; + # Strip any option that makedepend may not understand. Remove + # the object too, otherwise makedepend will parse it as a source file. + -arch) + eat=yes ;; + -*|$object) + ;; + *) + set fnord "$@" "$arg"; shift ;; + esac + done + obj_suffix=`echo "$object" | sed 's/^.*\././'` + touch "$tmpdepfile" + ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" + rm -f "$depfile" + # makedepend may prepend the VPATH from the source file name to the object. + # No need to regex-escape $object, excess matching of '.' is harmless. + sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process the last invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed '1,2d' "$tmpdepfile" \ + | tr ' ' "$nl" \ + | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" "$tmpdepfile".bak + ;; + +cpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove '-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + "$@" -E \ + | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ + -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ + | sed '$ s: \\$::' > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + cat < "$tmpdepfile" >> "$depfile" + sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvisualcpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + IFS=" " + for arg + do + case "$arg" in + -o) + shift + ;; + $object) + shift + ;; + "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") + set fnord "$@" + shift + shift + ;; + *) + set fnord "$@" "$arg" + shift + shift + ;; + esac + done + "$@" -E 2>/dev/null | + sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" + echo "$tab" >> "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvcmsys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +none) + exec "$@" + ;; + +*) + echo "Unknown depmode $depmode" 1>&2 + exit 1 + ;; +esac + +exit 0 + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/Makefile b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/Makefile new file mode 100644 index 0000000..354b27b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/Makefile @@ -0,0 +1,661 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# devel-docs/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +# This is a blank Makefile.am for using gtk-doc. +# Copy this to your project's API docs directory and modify the variables to +# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples +# of using the various options. + +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/enca +pkgincludedir = $(includedir)/enca +pkglibdir = $(libdir)/enca +pkglibexecdir = $(libexecdir)/enca +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-pc-linux-gnu +host_triplet = x86_64-pc-linux-gnu +subdir = devel-docs +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/mkinstalldirs +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing aclocal-1.15 -I m4 +AMTAR = $${TAR-tar} +AM_DEFAULT_VERBOSITY = 1 +AR = ar +AUTOCONF = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoconf +AUTOHEADER = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoheader +AUTOMAKE = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing automake-1.15 +AWK = gawk +CC = /usr/bin/cc +CCDEPMODE = depmode=gcc3 +CFLAGS = -Wall -Wextra -W -pedantic -g -O2 +CONVERTER_LIBS = +CPP = /usr/bin/cc -E +CPPFLAGS = +CSTOCS_PROG = +CYGPATH_W = echo +DEFAULT_CONVERTER_LIST = built-in,iconv +DEFAULT_EXTERNAL_CONVERTER = recode +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +FGREP = /usr/bin/grep -F +GCOV = /usr/bin/gcov +GCOV_CPPFLAGS = +GCOV_FLAGS = +GCOV_LDFLAGS = +GREP = /usr/bin/grep +GTKDOC = false +HTML_DIR = ${datarootdir}/gtk-doc/html +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBICONV = +LIBM = -lm +LIBOBJS = +LIBS = -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LN_S = ln -s +LTLIBICONV = +LTLIBOBJS = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing makeinfo +MANIFEST_TOOL = : +MAP_PROG = +MKDIR_P = /usr/bin/mkdir -p +MKTEMP_PROG = /usr/bin/mktemp +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = enca +PACKAGE_BUGREPORT = https://github.com/nijel/enca/issues +PACKAGE_NAME = Enca +PACKAGE_STRING = Enca 1.19 +PACKAGE_TARNAME = enca +PACKAGE_URL = +PACKAGE_VERSION = 1.19 +PATH_SEPARATOR = : +PICONV_PROG = /usr/bin/core_perl/piconv +RANLIB = ranlib +RECODE_PROG = /usr/bin/recode +RELEASE = 1 +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SHELL_RANDOM_FILENAME = `/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` +STRIP = strip +UMAP_PROG = +VERSION = 1.19 +abs_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/devel-docs +abs_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/devel-docs +abs_top_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +abs_top_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +ac_ct_AR = ar +ac_ct_CC = /usr/bin/cc +ac_ct_DUMPBIN = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-pc-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = pc +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} +dvidir = ${docdir} +exec_prefix = ${prefix} +host = x86_64-pc-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = pc +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /usr/local +program_transform_name = s,x,x, +psdir = ${docdir} +runstatedir = ${localstatedir}/run +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = . +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = .. + +# The name of the module, e.g. 'glib'. +DOC_MODULE = libenca + +# The top-level SGML file. Change it if you want. +DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml + +# The directory containing the source code. Relative to $(srcdir). +# gtk-doc will search all .c & .h files beneath here for inline comments +# documenting functions and macros. +DOC_SOURCE_DIR = ${top_srcdir}/lib + +# Extra options to pass to gtkdoc-scanobj or gtkdoc-scangobj. +SCANOBJ_OPTIONS = + +# Extra options to supply to gtkdoc-scan. +SCAN_OPTIONS = + +# Extra options to supply to gtkdoc-mkdb. +MKDB_OPTIONS = + +# Extra options to supply to gtkdoc-fixref. +FIXXREF_OPTIONS = + +# Used for dependencies. +HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h +CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c + +# Header files to ignore when scanning. +IGNORE_HFILES = + +# Images to copy into HTML directory. +HTML_IMAGES = + +# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). +content_files = + +# Other files to distribute. +extra_files = + +# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib +# contains GtkObjects/GObjects and you want to document signals and properties. +GTKDOC_CFLAGS = +GTKDOC_LIBS = +GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) +GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) + +# If you need to override some of the declarations, place them in the +# $(DOC_MODULE)-overrides.txt file and uncomment the second line here. +DOC_OVERRIDES = +#DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt + +########################################################################### +# Everything below here is generic and you shouldn't need to change it. +########################################################################### +TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) +EXTRA_DIST = \ + $(content_files) \ + $(extra_files) \ + $(HTML_IMAGES) \ + $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE)-sections.txt \ + $(DOC_OVERRIDES) + +DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ + $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp + +SCANOBJ_FILES = \ + $(DOC_MODULE).args \ + $(DOC_MODULE).hierarchy \ + $(DOC_MODULE).signals \ + $(DOC_MODULE).prerequisites \ + $(DOC_MODULE).intefraces + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits devel-docs/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits devel-docs/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" distdir="$(distdir)" \ + dist-hook +check-am: all-am +check: check-am +all-am: Makefile +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool clean-local mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-data-local + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic \ + maintainer-clean-local + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-local + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + clean-local cscopelist-am ctags-am dist-hook distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic maintainer-clean-local mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags-am uninstall uninstall-am uninstall-local + +.PRECIOUS: Makefile + + +#docs: html-build.stamp + +#### scan #### + +#scan-build.stamp: $(HFILE_GLOB) +# @echo '*** Scanning header files ***' +# if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ +# CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scanobj $(SCANOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ +# else \ +# cd $(srcdir) ; \ +# for i in $(SCANOBJ_FILES) ; do \ +# test -f $$i || touch $$i ; \ +# done \ +# fi +# cd $(srcdir) && \ +# gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES) +# touch scan-build.stamp + +#$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES): scan-build.stamp +# @true + +#### templates #### + +#tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_OVERRIDES) +# @echo '*** Rebuilding template files ***' +# cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) +# touch tmpl-build.stamp + +#tmpl.stamp: tmpl-build.stamp +# @true + +#### sgml #### + +#sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(wildcard $(srcdir)/tmpl/*.sgml) +# @echo '*** Building XML ***' +# cd $(srcdir) && \ +# gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS) +# touch sgml-build.stamp + +#sgml.stamp: sgml-build.stamp +# @true + +#### html #### + +#html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) +# @echo '*** Building HTML ***' +# test -d $(srcdir)/html || mkdir $(srcdir)/html +# cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) +# test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html ) +# @echo '-- Fixing Crossreferences' +# cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) +# touch html-build.stamp + +############## + +clean-local: + rm -f *~ *.bak $(SCANOBJ_FILES) *-unused.txt $(DOC_STAMPS) + +maintainer-clean-local: clean + cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt + +install-data-local: + $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR) + (installfiles=`echo $(srcdir)/html/*.html`; \ + if test "$$installfiles" = '$(srcdir)/html/*.html'; \ + then echo '-- Nothing to install' ; \ + else \ + for i in $$installfiles; do \ + echo '-- Installing '$$i ; \ + $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \ + done; \ + echo '-- Installing $(srcdir)/html/index.sgml' ; \ + $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \ + echo '-- Installing $(srcdir)/html/$(DOC_MODULE).devhelp2' ; \ + $(INSTALL_DATA) $(srcdir)/html/$(DOC_MODULE).devhelp2 $(DESTDIR)$(TARGET_DIR); \ + fi) + +uninstall-local: + (installfiles=`cd $(srcdir)/html >/dev/null && echo *.html`; \ + if test "$$installfiles" = '*.html'; \ + then echo '-- Nothing to uninstall' ; \ + else \ + for i in $$installfiles; do \ + echo '-- Removing '$$i ; \ + rm -f $(DESTDIR)$(TARGET_DIR)/$$i; \ + done; \ + echo '-- Removing index.sgml' ; \ + rm -f $(DESTDIR)$(TARGET_DIR)/index.sgml; \ + echo '-- Removing $(DOC_MODULE).devhelp2' ; \ + rm -f $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE).devhelp2; \ + fi) + +# +# Require gtk-doc when making dist +# +#dist-check-gtkdoc: +dist-check-gtkdoc: + @echo "*** gtk-doc must be installed and enabled in order to make dist" + @false + +dist-hook: dist-check-gtkdoc dist-hook-local + mkdir $(distdir)/tmpl + mkdir $(distdir)/xml + mkdir $(distdir)/html + cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl + cp $(srcdir)/xml/*.xml $(distdir)/xml + cp $(srcdir)/html/index.sgml $(distdir)/html + -cp $(srcdir)/html/$(DOC_MODULE).devhelp2 $(distdir)/html + -cp $(srcdir)/html/*.html $(srcdir)/html/*.css $(distdir)/html + + images=$(HTML_IMAGES) ; \ + for i in $$images ; do \ + cp $(srcdir)/$$i $(distdir)/html ; \ + done + +.PHONY : dist-hook-local + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/Makefile.am b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/Makefile.am new file mode 100644 index 0000000..9c74b4c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/Makefile.am @@ -0,0 +1,205 @@ +## Process this file with automake to produce Makefile.in + +# This is a blank Makefile.am for using gtk-doc. +# Copy this to your project's API docs directory and modify the variables to +# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples +# of using the various options. + +# The name of the module, e.g. 'glib'. +DOC_MODULE = libenca + +# The top-level SGML file. Change it if you want. +DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml + +# The directory containing the source code. Relative to $(srcdir). +# gtk-doc will search all .c & .h files beneath here for inline comments +# documenting functions and macros. +DOC_SOURCE_DIR = ${top_srcdir}/lib + +# Extra options to pass to gtkdoc-scanobj or gtkdoc-scangobj. +SCANOBJ_OPTIONS = + +# Extra options to supply to gtkdoc-scan. +SCAN_OPTIONS = + +# Extra options to supply to gtkdoc-mkdb. +MKDB_OPTIONS = + +# Extra options to supply to gtkdoc-fixref. +FIXXREF_OPTIONS = + +# Used for dependencies. +HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h +CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c + +# Header files to ignore when scanning. +IGNORE_HFILES = + +# Images to copy into HTML directory. +HTML_IMAGES = + +# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). +content_files = + +# Other files to distribute. +extra_files = + +# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib +# contains GtkObjects/GObjects and you want to document signals and properties. +GTKDOC_CFLAGS = +GTKDOC_LIBS = + +GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) +GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) + +# If you need to override some of the declarations, place them in the +# $(DOC_MODULE)-overrides.txt file and uncomment the second line here. +DOC_OVERRIDES = +#DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt + + +########################################################################### +# Everything below here is generic and you shouldn't need to change it. +########################################################################### + +TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE) + +EXTRA_DIST = \ + $(content_files) \ + $(extra_files) \ + $(HTML_IMAGES) \ + $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE)-sections.txt \ + $(DOC_OVERRIDES) + +DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ + $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp + +SCANOBJ_FILES = \ + $(DOC_MODULE).args \ + $(DOC_MODULE).hierarchy \ + $(DOC_MODULE).signals \ + $(DOC_MODULE).prerequisites \ + $(DOC_MODULE).intefraces + +if ENABLE_GTK_DOC +docs: html-build.stamp + +#### scan #### + +scan-build.stamp: $(HFILE_GLOB) + @echo '*** Scanning header files ***' + if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ + CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scanobj $(SCANOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ + else \ + cd $(srcdir) ; \ + for i in $(SCANOBJ_FILES) ; do \ + test -f $$i || touch $$i ; \ + done \ + fi + cd $(srcdir) && \ + gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES) + touch scan-build.stamp + +$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES): scan-build.stamp + @true + +#### templates #### + +tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_OVERRIDES) + @echo '*** Rebuilding template files ***' + cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) + touch tmpl-build.stamp + +tmpl.stamp: tmpl-build.stamp + @true + +#### sgml #### + +sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(wildcard $(srcdir)/tmpl/*.sgml) + @echo '*** Building XML ***' + cd $(srcdir) && \ + gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS) + touch sgml-build.stamp + +sgml.stamp: sgml-build.stamp + @true + +#### html #### + +html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) + @echo '*** Building HTML ***' + test -d $(srcdir)/html || mkdir $(srcdir)/html + cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) + test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html ) + @echo '-- Fixing Crossreferences' + cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) + touch html-build.stamp +endif + +############## + +clean-local: + rm -f *~ *.bak $(SCANOBJ_FILES) *-unused.txt $(DOC_STAMPS) + +maintainer-clean-local: clean + cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt + +install-data-local: + $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR) + (installfiles=`echo $(srcdir)/html/*.html`; \ + if test "$$installfiles" = '$(srcdir)/html/*.html'; \ + then echo '-- Nothing to install' ; \ + else \ + for i in $$installfiles; do \ + echo '-- Installing '$$i ; \ + $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \ + done; \ + echo '-- Installing $(srcdir)/html/index.sgml' ; \ + $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \ + echo '-- Installing $(srcdir)/html/$(DOC_MODULE).devhelp2' ; \ + $(INSTALL_DATA) $(srcdir)/html/$(DOC_MODULE).devhelp2 $(DESTDIR)$(TARGET_DIR); \ + fi) + +uninstall-local: + (installfiles=`cd $(srcdir)/html >/dev/null && echo *.html`; \ + if test "$$installfiles" = '*.html'; \ + then echo '-- Nothing to uninstall' ; \ + else \ + for i in $$installfiles; do \ + echo '-- Removing '$$i ; \ + rm -f $(DESTDIR)$(TARGET_DIR)/$$i; \ + done; \ + echo '-- Removing index.sgml' ; \ + rm -f $(DESTDIR)$(TARGET_DIR)/index.sgml; \ + echo '-- Removing $(DOC_MODULE).devhelp2' ; \ + rm -f $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE).devhelp2; \ + fi) + +# +# Require gtk-doc when making dist +# +if ENABLE_GTK_DOC +dist-check-gtkdoc: +else +dist-check-gtkdoc: + @echo "*** gtk-doc must be installed and enabled in order to make dist" + @false +endif + +dist-hook: dist-check-gtkdoc dist-hook-local + mkdir $(distdir)/tmpl + mkdir $(distdir)/xml + mkdir $(distdir)/html + cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl + cp $(srcdir)/xml/*.xml $(distdir)/xml + cp $(srcdir)/html/index.sgml $(distdir)/html + -cp $(srcdir)/html/$(DOC_MODULE).devhelp2 $(distdir)/html + -cp $(srcdir)/html/*.html $(srcdir)/html/*.css $(distdir)/html + + images=$(HTML_IMAGES) ; \ + for i in $$images ; do \ + cp $(srcdir)/$$i $(distdir)/html ; \ + done + +.PHONY : dist-hook-local diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/Makefile.in b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/Makefile.in new file mode 100644 index 0000000..aac9ff4 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/Makefile.in @@ -0,0 +1,661 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +# This is a blank Makefile.am for using gtk-doc. +# Copy this to your project's API docs directory and modify the variables to +# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples +# of using the various options. +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = devel-docs +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/mkinstalldirs +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERTER_LIBS = @CONVERTER_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CSTOCS_PROG = @CSTOCS_PROG@ +CYGPATH_W = @CYGPATH_W@ +DEFAULT_CONVERTER_LIST = @DEFAULT_CONVERTER_LIST@ +DEFAULT_EXTERNAL_CONVERTER = @DEFAULT_EXTERNAL_CONVERTER@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCOV = @GCOV@ +GCOV_CPPFLAGS = @GCOV_CPPFLAGS@ +GCOV_FLAGS = @GCOV_FLAGS@ +GCOV_LDFLAGS = @GCOV_LDFLAGS@ +GREP = @GREP@ +GTKDOC = @GTKDOC@ +HTML_DIR = @HTML_DIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBM = @LIBM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MAP_PROG = @MAP_PROG@ +MKDIR_P = @MKDIR_P@ +MKTEMP_PROG = @MKTEMP_PROG@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PICONV_PROG = @PICONV_PROG@ +RANLIB = @RANLIB@ +RECODE_PROG = @RECODE_PROG@ +RELEASE = @RELEASE@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SHELL_RANDOM_FILENAME = @SHELL_RANDOM_FILENAME@ +STRIP = @STRIP@ +UMAP_PROG = @UMAP_PROG@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ + +# The name of the module, e.g. 'glib'. +DOC_MODULE = libenca + +# The top-level SGML file. Change it if you want. +DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml + +# The directory containing the source code. Relative to $(srcdir). +# gtk-doc will search all .c & .h files beneath here for inline comments +# documenting functions and macros. +DOC_SOURCE_DIR = ${top_srcdir}/lib + +# Extra options to pass to gtkdoc-scanobj or gtkdoc-scangobj. +SCANOBJ_OPTIONS = + +# Extra options to supply to gtkdoc-scan. +SCAN_OPTIONS = + +# Extra options to supply to gtkdoc-mkdb. +MKDB_OPTIONS = + +# Extra options to supply to gtkdoc-fixref. +FIXXREF_OPTIONS = + +# Used for dependencies. +HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h +CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c + +# Header files to ignore when scanning. +IGNORE_HFILES = + +# Images to copy into HTML directory. +HTML_IMAGES = + +# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). +content_files = + +# Other files to distribute. +extra_files = + +# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib +# contains GtkObjects/GObjects and you want to document signals and properties. +GTKDOC_CFLAGS = +GTKDOC_LIBS = +GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) +GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) + +# If you need to override some of the declarations, place them in the +# $(DOC_MODULE)-overrides.txt file and uncomment the second line here. +DOC_OVERRIDES = +#DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt + +########################################################################### +# Everything below here is generic and you shouldn't need to change it. +########################################################################### +TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) +EXTRA_DIST = \ + $(content_files) \ + $(extra_files) \ + $(HTML_IMAGES) \ + $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE)-sections.txt \ + $(DOC_OVERRIDES) + +DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ + $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp + +SCANOBJ_FILES = \ + $(DOC_MODULE).args \ + $(DOC_MODULE).hierarchy \ + $(DOC_MODULE).signals \ + $(DOC_MODULE).prerequisites \ + $(DOC_MODULE).intefraces + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits devel-docs/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits devel-docs/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" distdir="$(distdir)" \ + dist-hook +check-am: all-am +check: check-am +all-am: Makefile +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool clean-local mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-data-local + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic \ + maintainer-clean-local + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-local + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + clean-local cscopelist-am ctags-am dist-hook distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic maintainer-clean-local mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags-am uninstall uninstall-am uninstall-local + +.PRECIOUS: Makefile + + +@ENABLE_GTK_DOC_TRUE@docs: html-build.stamp + +#### scan #### + +@ENABLE_GTK_DOC_TRUE@scan-build.stamp: $(HFILE_GLOB) +@ENABLE_GTK_DOC_TRUE@ @echo '*** Scanning header files ***' +@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ +@ENABLE_GTK_DOC_TRUE@ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scanobj $(SCANOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ +@ENABLE_GTK_DOC_TRUE@ else \ +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) ; \ +@ENABLE_GTK_DOC_TRUE@ for i in $(SCANOBJ_FILES) ; do \ +@ENABLE_GTK_DOC_TRUE@ test -f $$i || touch $$i ; \ +@ENABLE_GTK_DOC_TRUE@ done \ +@ENABLE_GTK_DOC_TRUE@ fi +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && \ +@ENABLE_GTK_DOC_TRUE@ gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES) +@ENABLE_GTK_DOC_TRUE@ touch scan-build.stamp + +@ENABLE_GTK_DOC_TRUE@$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES): scan-build.stamp +@ENABLE_GTK_DOC_TRUE@ @true + +#### templates #### + +@ENABLE_GTK_DOC_TRUE@tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_OVERRIDES) +@ENABLE_GTK_DOC_TRUE@ @echo '*** Rebuilding template files ***' +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) +@ENABLE_GTK_DOC_TRUE@ touch tmpl-build.stamp + +@ENABLE_GTK_DOC_TRUE@tmpl.stamp: tmpl-build.stamp +@ENABLE_GTK_DOC_TRUE@ @true + +#### sgml #### + +@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(wildcard $(srcdir)/tmpl/*.sgml) +@ENABLE_GTK_DOC_TRUE@ @echo '*** Building XML ***' +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && \ +@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS) +@ENABLE_GTK_DOC_TRUE@ touch sgml-build.stamp + +@ENABLE_GTK_DOC_TRUE@sgml.stamp: sgml-build.stamp +@ENABLE_GTK_DOC_TRUE@ @true + +#### html #### + +@ENABLE_GTK_DOC_TRUE@html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) +@ENABLE_GTK_DOC_TRUE@ @echo '*** Building HTML ***' +@ENABLE_GTK_DOC_TRUE@ test -d $(srcdir)/html || mkdir $(srcdir)/html +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) +@ENABLE_GTK_DOC_TRUE@ test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html ) +@ENABLE_GTK_DOC_TRUE@ @echo '-- Fixing Crossreferences' +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) +@ENABLE_GTK_DOC_TRUE@ touch html-build.stamp + +############## + +clean-local: + rm -f *~ *.bak $(SCANOBJ_FILES) *-unused.txt $(DOC_STAMPS) + +maintainer-clean-local: clean + cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt + +install-data-local: + $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR) + (installfiles=`echo $(srcdir)/html/*.html`; \ + if test "$$installfiles" = '$(srcdir)/html/*.html'; \ + then echo '-- Nothing to install' ; \ + else \ + for i in $$installfiles; do \ + echo '-- Installing '$$i ; \ + $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \ + done; \ + echo '-- Installing $(srcdir)/html/index.sgml' ; \ + $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \ + echo '-- Installing $(srcdir)/html/$(DOC_MODULE).devhelp2' ; \ + $(INSTALL_DATA) $(srcdir)/html/$(DOC_MODULE).devhelp2 $(DESTDIR)$(TARGET_DIR); \ + fi) + +uninstall-local: + (installfiles=`cd $(srcdir)/html >/dev/null && echo *.html`; \ + if test "$$installfiles" = '*.html'; \ + then echo '-- Nothing to uninstall' ; \ + else \ + for i in $$installfiles; do \ + echo '-- Removing '$$i ; \ + rm -f $(DESTDIR)$(TARGET_DIR)/$$i; \ + done; \ + echo '-- Removing index.sgml' ; \ + rm -f $(DESTDIR)$(TARGET_DIR)/index.sgml; \ + echo '-- Removing $(DOC_MODULE).devhelp2' ; \ + rm -f $(DESTDIR)$(TARGET_DIR)/$(DOC_MODULE).devhelp2; \ + fi) + +# +# Require gtk-doc when making dist +# +@ENABLE_GTK_DOC_TRUE@dist-check-gtkdoc: +@ENABLE_GTK_DOC_FALSE@dist-check-gtkdoc: +@ENABLE_GTK_DOC_FALSE@ @echo "*** gtk-doc must be installed and enabled in order to make dist" +@ENABLE_GTK_DOC_FALSE@ @false + +dist-hook: dist-check-gtkdoc dist-hook-local + mkdir $(distdir)/tmpl + mkdir $(distdir)/xml + mkdir $(distdir)/html + cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl + cp $(srcdir)/xml/*.xml $(distdir)/xml + cp $(srcdir)/html/index.sgml $(distdir)/html + -cp $(srcdir)/html/$(DOC_MODULE).devhelp2 $(distdir)/html + -cp $(srcdir)/html/*.html $(srcdir)/html/*.css $(distdir)/html + + images=$(HTML_IMAGES) ; \ + for i in $$images ; do \ + cp $(srcdir)/$$i $(distdir)/html ; \ + done + +.PHONY : dist-hook-local + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/ch01.html b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/ch01.html new file mode 100644 index 0000000..54cf5cb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/ch01.html @@ -0,0 +1,43 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<title>Enca Library API: Enca Library Reference Manual + + + + + + + + + + + + + + + + +
+

+Enca Library API

+
+
+Analyser — Basic analyser interface. +
+
+Typedefs and Constants — Enca library typedefs, enums and constants. +
+
+Charsets and Surfaces — Functions and macros for getting something sensible from EncaEncoding. +
+
+Auxiliary functions — Variouis auxiliary functions and informations about libenca. +
+
+
+ + + \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/index.html b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/index.html new file mode 100644 index 0000000..8853226 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/index.html @@ -0,0 +1,39 @@ + + + + +Enca Library Reference Manual: Enca Library Reference Manual + + + + + + + +
+
+
+
+
+
+
Enca Library API
+
+
+Analyser — Basic analyser interface. +
+
+Typedefs and Constants — Enca library typedefs, enums and constants. +
+
+Charsets and Surfaces — Functions and macros for getting something sensible from EncaEncoding. +
+
+Auxiliary functions — Variouis auxiliary functions and informations about libenca. +
+
+
+
+ + + \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/index.sgml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/index.sgml new file mode 100644 index 0000000..bbe365e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/index.sgml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca-Analyser.html b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca-Analyser.html new file mode 100644 index 0000000..a8a9e55 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca-Analyser.html @@ -0,0 +1,115 @@ + + + + +Analyser: Enca Library Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

Analyser

+

Analyser — Basic analyser interface.

+
+
+

Description

+

+Basically you want to allocate an analyser with enca_analyser_alloc() for some +language, use enca_analyse() (or enca_analyse_const()) on a buffer to find its +encoding, and interpret the results with something like enca_charset_name(). +The analyser then can be used for another buffer. Once you no longer need +it, call enca_analyser_free() to release it. +

+

+A single working example is better than a hundred pages of reference manual. +

+
+

Example 1. A minimal Enca library application – Czech encoding +detector.

+
+ + + + + + + +
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
#include <stdio.h>
+#include <enca.h>
+int
+main(void)
+{
+  EncaAnalyser analyser;
+  EncaEncoding encoding;
+  unsigned char buffer[4096];
+  size_t buflen;
+  buflen = fread(buffer, 1, 4096, stdin);
+  analyser = enca_analyser_alloc("cs");
+  encoding = enca_analyse(analyser, buffer, buflen);
+  printf("Charset: %%s\n", enca_charset_name(encoding.charset,
+                                             ENCA_NAME_STYLE_HUMAN));
+  enca_analyser_free(analyser);
+  return 0;
+}
+
+ +
+

+The analyser has plenty of options, but generally you don't need to fiddle +with them, except enca_set_termination_strictness(). +

+

+All names prefixed with ENCA_, +Enca, _Enca, +or enca_ should be treated as reserved and not used for +application function/variable/type/macro names. +

+
+
+

Functions

+

+
+
+

Types and Values

+
+
+ + + \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca-Auxiliary-Functions.html b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca-Auxiliary-Functions.html new file mode 100644 index 0000000..126e9c4 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca-Auxiliary-Functions.html @@ -0,0 +1,49 @@ + + + + +Auxiliary functions: Enca Library Reference Manual + + + + + + + + + + + + + + + +
+
+
+ + +
+

Auxiliary functions

+

Auxiliary functions — Variouis auxiliary functions and informations about libenca.

+
+
+

Description

+

+

+
+
+

Functions

+

+
+
+

Types and Values

+
+
+ + + \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca-Charsets-and-Surfaces.html b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca-Charsets-and-Surfaces.html new file mode 100644 index 0000000..c352a08 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca-Charsets-and-Surfaces.html @@ -0,0 +1,50 @@ + + + + +Charsets and Surfaces: Enca Library Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

Charsets and Surfaces

+

Charsets and Surfaces — Functions and macros for getting something sensible from EncaEncoding.

+
+
+

Description

+

+

+
+
+

Functions

+

+
+
+

Types and Values

+
+
+ + + \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca-Typedefs-and-Constants.html b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca-Typedefs-and-Constants.html new file mode 100644 index 0000000..4863929 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca-Typedefs-and-Constants.html @@ -0,0 +1,484 @@ + + + + +Typedefs and Constants: Enca Library Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

Typedefs and Constants

+

Typedefs and Constants — Enca library typedefs, enums and constants.

+
+
+

Functions

+
++++ + + + + +
#defineENCA_CS_UNKNOWN
+
+
+

Types and Values

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
typedefEncaAnalyser
 EncaEncoding
enumEncaSurface
enumEncaCharsetFlags
enumEncaNameStyle
enumEncaErrno
#defineENCA_NOT_A_CHAR
+
+
+

Description

+

+

+
+
+

Functions

+
+

ENCA_CS_UNKNOWN

+
#define ENCA_CS_UNKNOWN (-1)
+
+

Unknown character set id.

+

Use enca_charset_is_known() to check for unknown charset instead of direct +comparsion.

+
+
+
+

Types and Values

+
+

EncaAnalyser

+
typedef struct _EncaAnalyserState *EncaAnalyser;
+
+

+

+
+
+
+

EncaEncoding

+
typedef struct _EncaEncoding EncaEncoding;
+

Encoding, i.e. charset and surface.

+

This is what enca_analyse() and enca_analyse_const() return.

+

The charset + field is an opaque numerical charset identifier, which has no +meaning outside Enca library. +You will probably want to use it only as enca_charset_name() argument. +It is only guaranteed not to change meaning +during program execution time; change of its interpretation (e.g. due to +addition of new charsets) is not considered API change.

+

The surface + field is a combination of EncaSurface flags. You may want +to ignore it completely; you should use enca_set_interpreted_surfaces() +to disable weird surfaces then.

+
+

Members

+
+++++ + +
+
+
+
+
+

enum EncaSurface

+

Surface flags.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

ENCA_SURFACE_EOL_CR

+

End-of-lines are represented with CR's.

+
 

ENCA_SURFACE_EOL_LF

+

End-of-lines are represented with LF's.

+
 

ENCA_SURFACE_EOL_CRLF

+

End-of-lines are represented with CRLF's.

+
 

ENCA_SURFACE_EOL_MIX

+

Several end-of-line types, mixed.

+
 

ENCA_SURFACE_EOL_BIN

+

End-of-line concept not applicable (binary data).

+
 

ENCA_SURFACE_MASK_EOL

+

Mask for end-of-line surfaces.

+
 

ENCA_SURFACE_PERM_21

+

Odd and even bytes swapped.

+
 

ENCA_SURFACE_PERM_4321

+

Reversed byte sequence in 4byte words.

+
 

ENCA_SURFACE_PERM_MIX

+

Chunks with both endianess, concatenated.

+
 

ENCA_SURFACE_MASK_PERM

+

Mask for permutation surfaces.

+
 

ENCA_SURFACE_QP

+

Quoted printables.

+
 

ENCA_SURFACE_REMOVE

+

Recode `remove' surface.

+
 

ENCA_SURFACE_UNKNOWN

+

Unknown surface.

+
 

ENCA_SURFACE_MASK_ALL

+

Mask for all bits, withnout ENCA_SURFACE_UNKNOWN.

+
 
+
+
+
+
+

enum EncaCharsetFlags

+

Charset properties.

+

Flags ENCA_CHARSET_7BIT, ENCA_CHARSET_8BIT, ENCA_CHARSET_16BIT, +ENCA_CHARSET_32BIT tell how many bits a `fundamental piece' consists of. +This is different from bits per character; r.g. UTF-8 consists of 8bit +pieces (bytes), but character can be composed from 1 to 6 of them.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

ENCA_CHARSET_7BIT

+

Characters are represented with 7bit characters.

+
 

ENCA_CHARSET_8BIT

+

Characters are represented with bytes.

+
 

ENCA_CHARSET_16BIT

+

Characters are represented with 2byte words.

+
 

ENCA_CHARSET_32BIT

+

Characters are represented with 4byte words.

+
 

ENCA_CHARSET_FIXED

+

One characters consists of one fundamental piece.

+
 

ENCA_CHARSET_VARIABLE

+

One character consists of variable number of +fundamental pieces.

+
 

ENCA_CHARSET_BINARY

+

Charset is binary from ASCII viewpoint.

+
 

ENCA_CHARSET_REGULAR

+

Language dependent (8bit) charset.

+
 

ENCA_CHARSET_MULTIBYTE

+

Multibyte charset.

+
 
+
+
+
+
+

enum EncaNameStyle

+

Charset naming styles and conventions.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

ENCA_NAME_STYLE_ENCA

+

Default, implicit charset name in Enca.

+
 

ENCA_NAME_STYLE_RFC1345

+

RFC 1345 or otherwise canonical charset name.

+
 

ENCA_NAME_STYLE_CSTOCS

+

Cstocs charset name (may not exist).

+
 

ENCA_NAME_STYLE_ICONV

+

Iconv charset name (may not exist).

+
 

ENCA_NAME_STYLE_HUMAN

+

Human comprehensible description.

+
 

ENCA_NAME_STYLE_MIME

+

Preferred MIME name (may not exist).

+
 
+
+
+
+
+

enum EncaErrno

+

Error codes.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

ENCA_EOK

+

OK.

+
 

ENCA_EINVALUE

+

Invalid value (usually of an option).

+
 

ENCA_EEMPTY

+

Sample is empty.

+
 

ENCA_EFILTERED

+

After filtering, (almost) nothing remained.

+
 

ENCA_ENOCS8

+

Mulitibyte tests failed and language contains no 8bit charsets.

+
 

ENCA_ESIGNIF

+

Too few significant characters.

+
 

ENCA_EWINNER

+

No clear winner.

+
 

ENCA_EGARBAGE

+

Sample is garbage.

+
 
+
+
+
+
+

ENCA_NOT_A_CHAR

+
#define ENCA_NOT_A_CHAR 0xffff
+
+

Not-a-character in unicode tables.

+
+
+
+ + + \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca.devhelp2 b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca.devhelp2 new file mode 100644 index 0000000..3dbf1e9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/libenca.devhelp2 @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/style.css b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/style.css new file mode 100644 index 0000000..3675420 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/html/style.css @@ -0,0 +1,479 @@ +body +{ + font-family: cantarell, sans-serif; +} +.synopsis, .classsynopsis +{ + /* tango:aluminium 1/2 */ + background: #eeeeec; + background: rgba(238, 238, 236, 0.5); + border: solid 1px rgb(238, 238, 236); + padding: 0.5em; +} +.programlisting +{ + /* tango:sky blue 0/1 */ + /* fallback for no rgba support */ + background: #e6f3ff; + border: solid 1px #729fcf; + background: rgba(114, 159, 207, 0.1); + border: solid 1px rgba(114, 159, 207, 0.2); + padding: 0.5em; +} +.variablelist +{ + padding: 4px; + margin-left: 3em; +} +.variablelist td:first-child +{ + vertical-align: top; +} + +div.gallery-float +{ + float: left; + padding: 10px; +} +div.gallery-float img +{ + border-style: none; +} +div.gallery-spacer +{ + clear: both; +} + +a, a:visited +{ + text-decoration: none; + /* tango:sky blue 2 */ + color: #3465a4; +} +a:hover +{ + text-decoration: underline; + /* tango:sky blue 1 */ + color: #729fcf; +} + +div.informaltable table +{ + border-collapse: separate; + border-spacing: 1em 0.3em; + border: none; +} + +div.informaltable table td, div.informaltable table th +{ + vertical-align: top; +} + +.function_type, +.variable_type, +.property_type, +.signal_type, +.parameter_name, +.struct_member_name, +.union_member_name, +.define_keyword, +.datatype_keyword, +.typedef_keyword +{ + text-align: right; +} + +/* dim non-primary columns */ +.c_punctuation, +.function_type, +.variable_type, +.property_type, +.signal_type, +.define_keyword, +.datatype_keyword, +.typedef_keyword, +.property_flags, +.signal_flags, +.parameter_annotations, +.enum_member_annotations, +.struct_member_annotations, +.union_member_annotations +{ + color: #888a85; +} + +.function_type a, +.function_type a:visited, +.function_type a:hover, +.property_type a, +.property_type a:visited, +.property_type a:hover, +.signal_type a, +.signal_type a:visited, +.signal_type a:hover, +.signal_flags a, +.signal_flags a:visited, +.signal_flags a:hover +{ + color: #729fcf; +} + +td p +{ + margin: 0.25em; +} + +div.table table +{ + border-collapse: collapse; + border-spacing: 0px; + /* tango:aluminium 3 */ + border: solid 1px #babdb6; +} + +div.table table td, div.table table th +{ + /* tango:aluminium 3 */ + border: solid 1px #babdb6; + padding: 3px; + vertical-align: top; +} + +div.table table th +{ + /* tango:aluminium 2 */ + background-color: #d3d7cf; +} + +h4 +{ + color: #555753; + margin-top: 1em; + margin-bottom: 1em; +} + +hr +{ + /* tango:aluminium 1 */ + color: #d3d7cf; + background: #d3d7cf; + border: none 0px; + height: 1px; + clear: both; + margin: 2.0em 0em 2.0em 0em; +} + +dl.toc dt +{ + padding-bottom: 0.25em; +} + +dl.toc > dt +{ + padding-top: 0.25em; + padding-bottom: 0.25em; + font-weight: bold; +} + +dl.toc > dl +{ + padding-bottom: 0.5em; +} + +.parameter +{ + font-style: normal; +} + +.footer +{ + padding-top: 3.5em; + /* tango:aluminium 3 */ + color: #babdb6; + text-align: center; + font-size: 80%; +} + +.informalfigure, +.figure +{ + margin: 1em; +} + +.informalexample, +.example +{ + margin-top: 1em; + margin-bottom: 1em; +} + +.warning +{ + /* tango:orange 0/1 */ + background: #ffeed9; + background: rgba(252, 175, 62, 0.1); + border-color: #ffb04f; + border-color: rgba(252, 175, 62, 0.2); +} +.note +{ + /* tango:chameleon 0/0.5 */ + background: #d8ffb2; + background: rgba(138, 226, 52, 0.1); + border-color: #abf562; + border-color: rgba(138, 226, 52, 0.2); +} +div.blockquote +{ + border-color: #eeeeec; +} +.note, .warning, div.blockquote +{ + padding: 0.5em; + border-width: 1px; + border-style: solid; + margin: 2em; +} +.note p, .warning p +{ + margin: 0; +} + +div.warning h3.title, +div.note h3.title +{ + display: none; +} + +p + div.section +{ + margin-top: 1em; +} + +div.refnamediv, +div.refsynopsisdiv, +div.refsect1, +div.refsect2, +div.toc, +div.section +{ + margin-bottom: 1em; +} + +/* blob links */ +h2 .extralinks, h3 .extralinks +{ + float: right; + /* tango:aluminium 3 */ + color: #babdb6; + font-size: 80%; + font-weight: normal; +} + +.lineart +{ + color: #d3d7cf; + font-weight: normal; +} + +.annotation +{ + /* tango:aluminium 5 */ + color: #555753; + font-weight: normal; +} + +.structfield +{ + font-style: normal; + font-weight: normal; +} + +acronym,abbr +{ + border-bottom: 1px dotted gray; +} + +/* code listings */ + +.listing_code .programlisting .normal, +.listing_code .programlisting .normal a, +.listing_code .programlisting .number, +.listing_code .programlisting .cbracket, +.listing_code .programlisting .symbol { color: #555753; } +.listing_code .programlisting .comment, +.listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */ +.listing_code .programlisting .function, +.listing_code .programlisting .function a, +.listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */ +.listing_code .programlisting .string { color: #ad7fa8; } /* tango: plum */ +.listing_code .programlisting .keyword, +.listing_code .programlisting .usertype, +.listing_code .programlisting .type, +.listing_code .programlisting .type a { color: #4e9a06; } /* tango: chameleon 3 */ + +.listing_frame { + /* tango:sky blue 1 */ + border: solid 1px #729fcf; + border: solid 1px rgba(114, 159, 207, 0.2); + padding: 0px; +} + +.listing_lines, .listing_code { + margin-top: 0px; + margin-bottom: 0px; + padding: 0.5em; +} +.listing_lines { + /* tango:sky blue 0.5 */ + background: #a6c5e3; + background: rgba(114, 159, 207, 0.2); + /* tango:aluminium 6 */ + color: #2e3436; +} +.listing_code { + /* tango:sky blue 0 */ + background: #e6f3ff; + background: rgba(114, 159, 207, 0.1); +} +.listing_code .programlisting { + /* override from previous */ + border: none 0px; + padding: 0px; + background: none; +} +.listing_lines pre, .listing_code pre { + margin: 0px; +} + +@media screen { + /* these have a as a first child, but since there are no parent selectors + * we can't use that. */ + a.footnote + { + position: relative; + top: 0em ! important; + } + /* this is needed so that the local anchors are displayed below the naviagtion */ + div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name] + { + display: inline-block; + position: relative; + top:-5em; + } + /* this seems to be a bug in the xsl style sheets when generating indexes */ + div.index div.index + { + top: 0em; + } + /* make space for the fixed navigation bar and add space at the bottom so that + * link targets appear somewhat close to top + */ + body + { + padding-top: 2.5em; + padding-bottom: 500px; + max-width: 60em; + } + p + { + max-width: 60em; + } + /* style and size the navigation bar */ + table.navigation#top + { + position: fixed; + background: #e2e2e2; + border-bottom: solid 1px #babdb6; + border-spacing: 5px; + margin-top: 0; + margin-bottom: 0; + top: 0; + left: 0; + z-index: 10; + } + table.navigation#top td + { + padding-left: 6px; + padding-right: 6px; + } + .navigation a, .navigation a:visited + { + /* tango:sky blue 3 */ + color: #204a87; + } + .navigation a:hover + { + /* tango:sky blue 2 */ + color: #3465a4; + } + td.shortcuts + { + /* tango:sky blue 2 */ + color: #3465a4; + font-size: 80%; + white-space: nowrap; + } + td.shortcuts .dim + { + color: #babdb6; + } + .navigation .title + { + font-size: 80%; + max-width: none; + margin: 0px; + font-weight: normal; + } +} +@media screen and (min-width: 60em) { + /* screen larger than 60em */ + body { margin: auto; } +} +@media screen and (max-width: 60em) { + /* screen less than 60em */ + #nav_hierarchy { display: none; } + #nav_interfaces { display: none; } + #nav_prerequisites { display: none; } + #nav_derived_interfaces { display: none; } + #nav_implementations { display: none; } + #nav_child_properties { display: none; } + #nav_style_properties { display: none; } + #nav_index { display: none; } + #nav_glossary { display: none; } + .gallery_image { display: none; } + .property_flags { display: none; } + .signal_flags { display: none; } + .parameter_annotations { display: none; } + .enum_member_annotations { display: none; } + .struct_member_annotations { display: none; } + .union_member_annotations { display: none; } + /* now that a column is hidden, optimize space */ + col.parameters_name { width: auto; } + col.parameters_description { width: auto; } + col.struct_members_name { width: auto; } + col.struct_members_description { width: auto; } + col.enum_members_name { width: auto; } + col.enum_members_description { width: auto; } + col.union_members_name { width: auto; } + col.union_members_description { width: auto; } + .listing_lines { display: none; } +} +@media print { + table.navigation { + visibility: collapse; + display: none; + } + div.titlepage table.navigation { + visibility: visible; + display: table; + background: #e2e2e2; + border: solid 1px #babdb6; + margin-top: 0; + margin-bottom: 0; + top: 0; + left: 0; + height: 3em; + } +} + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/libenca-docs.sgml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/libenca-docs.sgml new file mode 100644 index 0000000..d4578d8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/libenca-docs.sgml @@ -0,0 +1,23 @@ + + + + + Enca Library Reference Manual + + + + Enca Library API + + + + + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/libenca-sections.txt b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/libenca-sections.txt new file mode 100644 index 0000000..390a224 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/libenca-sections.txt @@ -0,0 +1,138 @@ +
+enums +Typedefs and Constants +EncaAnalyser +EncaEncoding +ENCA_CS_UNKNOWN +EncaSurface +EncaCharsetFlags +EncaNameStyle +EncaErrno +ENCA_NOT_A_CHAR +
+ +
+analyser +Analyser +enca_analyser_alloc +enca_analyser_free +enca_analyse +enca_analyse_const +enca_errno +enca_strerror +enca_double_utf8_check +enca_double_utf8_get_candidates +enca_set_multibyte +enca_get_multibyte +enca_set_interpreted_surfaces +enca_get_interpreted_surfaces +enca_set_ambiguity +enca_get_ambiguity +enca_set_filtering +enca_get_filtering +enca_set_garbage_test +enca_get_garbage_test +enca_set_termination_strictness +enca_get_termination_strictness +enca_set_significant +enca_get_significant +enca_set_threshold +enca_get_threshold +
+ +
+encodings +Charsets and Surfaces +enca_charset_name +enca_get_charset_aliases +enca_get_surface_name +enca_parse_encoding_name +enca_charset_natural_surface +enca_charset_properties +enca_charset_is_7bit +enca_charset_is_8bit +enca_charset_is_16bit +enca_charset_is_32bit +enca_charset_is_fixed +enca_charset_is_variable +enca_charset_is_binary +enca_charset_is_regular +enca_charset_is_multibyte +enca_charset_is_known +
+ +
+auxiliary +Auxiliary Functions +enca_charset_has_ucs2_map +enca_charset_ucs2_map +enca_number_of_charsets +enca_analyser_language +enca_get_languages +enca_language_english_name +enca_get_language_charsets +
+ +
+internal +Internal Functions +EncaAnalyserOptions +EncaAnalyserState +EncaCharsetInfo +EncaLanguageInfo +EncaLanguageHookData1CS +EncaLanguageHookDataEOL +EncaHookFunc +EncaGuessFunc +EncaUTFCheckData +ELEMENTS +MAKE_HOOK_LINE +EPSILON +FILL_NONLETTER +LF +CR +enca_malloc +enca_realloc +enca_free +NEW +RENEW +enca_strdup +enca_strstr +enca_stpcpy +enca_strconcat +enca_strappend +enca_csname +enca_name_to_charset +enca_name_to_surface +enca_language_init +enca_language_destroy +enca_get_charset_similarity_matrix +enca_charsets_subset_identical +enca_filter_boxdraw +enca_language_hook_ncs +enca_language_hook_eol +enca_guess_init +enca_guess_destroy +enca_eol_surface +enca_find_max_sec +ENCA_LANGUAGE_BE +ENCA_LANGUAGE_BG +ENCA_LANGUAGE_CS +ENCA_LANGUAGE_ET +ENCA_LANGUAGE_HR +ENCA_LANGUAGE_HU +ENCA_LANGUAGE_LT +ENCA_LANGUAGE_LV +ENCA_LANGUAGE_PL +ENCA_LANGUAGE_RU +ENCA_LANGUAGE_SK +ENCA_LANGUAGE_SL +ENCA_LANGUAGE_UK +ENCA_LANGUAGE_ZH +enca_double_utf8_init +enca_double_utf8_destroy +enca_pair_init +enca_pair_destroy +enca_pair_analyse +
+ diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/analyser.sgml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/analyser.sgml new file mode 100644 index 0000000..3ec10ad --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/analyser.sgml @@ -0,0 +1,70 @@ + +Analyser + + + +Basic analyser interface. + + + +Basically you want to allocate an analyser with enca_analyser_alloc() for some +language, use enca_analyse() (or enca_analyse_const()) on a buffer to find its +encoding, and interpret the results with something like enca_charset_name(). +The analyser then can be used for another buffer. Once you no longer need +it, call enca_analyser_free() to release it. + + + +A single working example is better than a hundred pages of reference manual. + + + +A minimal Enca library application – Czech encoding +detector. + +#include <stdio.h> +#include <enca.h> + +int +main(void) +{ + EncaAnalyser analyser; + EncaEncoding encoding; + unsigned char buffer[4096]; + size_t buflen; + + buflen = fread(buffer, 1, 4096, stdin); + analyser = enca_analyser_alloc("cs"); + encoding = enca_analyse(analyser, buffer, buflen); + printf("Charset: %%s\n", enca_charset_name(encoding.charset, + ENCA_NAME_STYLE_HUMAN)); + enca_analyser_free(analyser); + + return 0; +} + + + + +The analyser has plenty of options, but generally you don't need to fiddle +with them, except enca_set_termination_strictness(). + + + +All names prefixed with ENCA_, +Enca, _Enca, +or enca_ should be treated as reserved and not used for +application function/variable/type/macro names. + + + + + + + + + + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/auxiliary.sgml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/auxiliary.sgml new file mode 100644 index 0000000..82da7ab --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/auxiliary.sgml @@ -0,0 +1,22 @@ + +Auxiliary functions + + +Variouis auxiliary functions and informations about libenca. + + + + + + + + + + + + + + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/encodings.sgml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/encodings.sgml new file mode 100644 index 0000000..168907d --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/encodings.sgml @@ -0,0 +1,22 @@ + +Charsets and Surfaces + + +Functions and macros for getting something sensible from #EncaEncoding. + + + + + + + + + + + + + + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/enums.sgml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/enums.sgml new file mode 100644 index 0000000..1f9ee9a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/enums.sgml @@ -0,0 +1,109 @@ + +Typedefs and Constants + + +Enca library typedefs, enums and constants. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +@ENCA_SURFACE_EOL_CR: +@ENCA_SURFACE_EOL_LF: +@ENCA_SURFACE_EOL_CRLF: +@ENCA_SURFACE_EOL_MIX: +@ENCA_SURFACE_EOL_BIN: +@ENCA_SURFACE_MASK_EOL: +@ENCA_SURFACE_PERM_21: +@ENCA_SURFACE_PERM_4321: +@ENCA_SURFACE_PERM_MIX: +@ENCA_SURFACE_MASK_PERM: +@ENCA_SURFACE_QP: +@ENCA_SURFACE_REMOVE: +@ENCA_SURFACE_UNKNOWN: +@ENCA_SURFACE_MASK_ALL: + + + + + + +@ENCA_CHARSET_7BIT: +@ENCA_CHARSET_8BIT: +@ENCA_CHARSET_16BIT: +@ENCA_CHARSET_32BIT: +@ENCA_CHARSET_FIXED: +@ENCA_CHARSET_VARIABLE: +@ENCA_CHARSET_BINARY: +@ENCA_CHARSET_REGULAR: +@ENCA_CHARSET_MULTIBYTE: + + + + + + +@ENCA_NAME_STYLE_ENCA: +@ENCA_NAME_STYLE_RFC1345: +@ENCA_NAME_STYLE_CSTOCS: +@ENCA_NAME_STYLE_ICONV: +@ENCA_NAME_STYLE_HUMAN: +@ENCA_NAME_STYLE_MIME: + + + + + + +@ENCA_EOK: +@ENCA_EINVALUE: +@ENCA_EEMPTY: +@ENCA_EFILTERED: +@ENCA_ENOCS8: +@ENCA_ESIGNIF: +@ENCA_EWINNER: +@ENCA_EGARBAGE: + + + + + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/internal.sgml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/internal.sgml new file mode 100644 index 0000000..3b87cee --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/internal.sgml @@ -0,0 +1,542 @@ + +internal + + + + +internal functions + + + + +Do not use outside Enca library. + + + + + + + + + + + + + + + + + + +@const_buffer: +@min_chars: +@threshold: +@multibyte_enabled: +@interpreted_surfaces: +@ambiguous_mode: +@filtering: +@test_garbageness: +@termination_strictness: + + + + + + +@lang: +@ncharsets: +@charsets: +@gerrno: +@size: +@buffer: +@result: +@counts: +@bin: +@up: +@ratings: +@order: +@size2: +@buffer2: +@utfch: +@utfbuf: +@pair2bits: +@bitcounts: +@pairratings: +@lcbits: +@ucbits: +@options: + + + + + + +@enca: +@rfc1345: +@cstocs: +@iconv: +@mime: +@human: +@flags: +@nsurface: + + + + + + +@name: +@humanname: +@ncharsets: +@csnames: +@weight_sum: +@hook: +@eolhook: +@lcuchook: +@ratinghook: + + + + + + +@name: +@size: +@cs: + + + + + + +@name: +@eol: +@cs: + + + + + + +@analyser: +@Returns: + + + + + + + +@analyser: +@Returns: + + + + + + + +@rating: +@size: +@result: +@ucs2: +@weights: + + + + + + +@array: +@Returns: + + + + + + + +@name: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +@size: +@Returns: + + + + + + + +@ptr: +@size: +@Returns: + + + + + + + +@ptr: + + + + + + + +@type: +@n: +@Returns: + + + + + + + +@ptr: +@type: +@n: +@Returns: + + + + + + + +@s: +@Returns: + + + + + + + +@haystack: +@needle: +@Returns: + + + + + + + +@dest: +@src: +@Returns: + + + + + + + +@str: +@...: +@Returns: + + + + + + + +@str: +@...: +@Returns: + + + + + + + +@cs: + + + + + + + +@csname: +@Returns: + + + + + + + +@sname: +@Returns: + + + + + + + +@analyser: +@langname: +@Returns: + + + + + + + +@analyser: + + + + + + + +@lang: +@Returns: + + + + + + + +@charset1: +@charset2: +@counts: +@Returns: + + + + + + + +@analyser: +@fill_char: +@Returns: + + + + + + + +@analyser: +@ncs: +@hookdata: +@Returns: + + + + + + + +@analyser: +@ncs: +@hookdata: +@Returns: + + + + + + + +@analyser: + + + + + + + +@analyser: + + + + + + + +@buffer: +@size: +@counts: +@Returns: + + + + + + + +@analyser: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +@analyser: + + + + + + + +@analyser: + + + + + + + +@analyser: + + + + + + + +@analyser: + + + + + + + +@analyser: +@Returns: + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/libenca-unused.sgml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/libenca-unused.sgml new file mode 100644 index 0000000..82f1e62 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/tmpl/libenca-unused.sgml @@ -0,0 +1,482 @@ + + + + + + + + + + + + + + + + + +enca + + + + + + + + + + + + + + + + + + + +libenca + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +@size: +@name1: +@name2: +@id1: +@id2: +@list1: +@list2: + + + + + + +@analyser: +@buffer: +@size: +@Returns: + + + + + + +@analyser: +@buffer: +@size: +@Returns: + + + + + + +@langname: +@Returns: + + + + + + +@analyser: + + + + + + +@analyser: +@Returns: + + + + + + +@analyser: +@Returns: + + + + + + +@charset: +@Returns: + + + + + + +@cs: + + + + + + +@cs: + + + + + + +@cs: + + + + + + +@cs: + + + + + + +@cs: + + + + + + +@cs: + + + + + + +@cs: + + + + + + +@cs: + + + + + + +@cs: + + + + + + +@cs: + + + + + + +@charset: +@whatname: +@Returns: + + + + + + +@charset: +@Returns: + + + + + + +@charset: +@Returns: + + + + + + +@charset: +@buffer: +@Returns: + + + + + + +@analyser: +@buffer: +@size: +@Returns: + + + + + + +@analyser: +@Returns: + + + + + + +@analyser: +@Returns: + + + + + + +@analyser: +@Returns: + + + + + + +@charset: +@n: +@Returns: + + + + + + +@analyser: +@Returns: + + + + + + +@analyser: +@Returns: + + + + + + +@analyser: +@Returns: + + + + + + +@langname: +@n: +@Returns: + + + + + + +@n: +@Returns: + + + + + + +@analyser: +@Returns: + + + + + + +@analyser: +@Returns: + + + + + + +@surface: +@whatname: +@Returns: + + + + + + +@analyser: +@Returns: + + + + + + +@analyser: +@Returns: + + + + + + +@lang: +@Returns: + + + + + + +@analyser: +@hookdata: +@Returns: + + + + + + +@analyser: +@csname: +@csid: +@Returns: + + + + + + +@Returns: + + + + + + +@name: +@Returns: + + + + + + +@analyser: +@ambiguity: + + + + + + +@analyser: +@filtering: + + + + + + +@analyser: +@garabage_test: + + + + + + +@analyser: +@interpreted_surfaces: + + + + + + +@analyser: +@multibyte: + + + + + + +@analyser: +@significant: +@Returns: + + + + + + +@analyser: +@termination_strictness: + + + + + + +@analyser: +@threshold: +@Returns: + + + + + + +@analyser: +@errnum: +@Returns: + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/analyser.xml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/analyser.xml new file mode 100644 index 0000000..ea76384 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/analyser.xml @@ -0,0 +1,73 @@ + + + + +Analyser +3 +LIBENCA Library + + +Analyser +Basic analyser interface. + + + + + +Description + +Basically you want to allocate an analyser with enca_analyser_alloc() for some +language, use enca_analyse() (or enca_analyse_const()) on a buffer to find its +encoding, and interpret the results with something like enca_charset_name(). +The analyser then can be used for another buffer. Once you no longer need +it, call enca_analyser_free() to release it. + + +A single working example is better than a hundred pages of reference manual. + + +A minimal Enca library application – Czech encoding +detector. + +#include <stdio.h> +#include <enca.h> +int +main(void) +{ + EncaAnalyser analyser; + EncaEncoding encoding; + unsigned char buffer[4096]; + size_t buflen; + buflen = fread(buffer, 1, 4096, stdin); + analyser = enca_analyser_alloc("cs"); + encoding = enca_analyse(analyser, buffer, buflen); + printf("Charset: %%s\n", enca_charset_name(encoding.charset, + ENCA_NAME_STYLE_HUMAN)); + enca_analyser_free(analyser); + return 0; +} + + + +The analyser has plenty of options, but generally you don't need to fiddle +with them, except enca_set_termination_strictness(). + + +All names prefixed with ENCA_, +Enca, _Enca, +or enca_ should be treated as reserved and not used for +application function/variable/type/macro names. + + + + +Functions + + + +Types and Values + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/api-index-1.3..xml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/api-index-1.3..xml new file mode 100644 index 0000000..626bb42 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/api-index-1.3..xml @@ -0,0 +1,5 @@ + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/api-index-deprecated.xml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/api-index-deprecated.xml new file mode 100644 index 0000000..be7208d --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/api-index-deprecated.xml @@ -0,0 +1,5 @@ + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/api-index-full.xml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/api-index-full.xml new file mode 100644 index 0000000..1c9fa72 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/api-index-full.xml @@ -0,0 +1,99 @@ + + + +A +EncaAnalyser, typedef in Typedefs and Constants +EncaAnalyserOptions, struct in Internal Functions +EncaAnalyserState, struct in Internal Functions + +C +EncaCharsetFlags, enum in Typedefs and Constants +EncaCharsetInfo, struct in Internal Functions +enca_charsets_subset_identical, function in Internal Functions +CR, macro in Internal Functions +enca_csname, macro in Internal Functions +ENCA_CS_UNKNOWN, macro in Typedefs and Constants + +D +enca_double_utf8_destroy, function in Internal Functions +enca_double_utf8_init, function in Internal Functions + +E +ELEMENTS, macro in Internal Functions +EncaEncoding, struct in Typedefs and Constants +enca_eol_surface, function in Internal Functions +EPSILON, macro in Internal Functions +EncaErrno, enum in Typedefs and Constants + +F +FILL_NONLETTER, macro in Internal Functions +enca_filter_boxdraw, function in Internal Functions +enca_find_max_sec, function in Internal Functions +enca_free, macro in Internal Functions + +G +enca_get_charset_similarity_matrix, function in Internal Functions +EncaGuessFunc, user_function in Internal Functions +enca_guess_destroy, function in Internal Functions +enca_guess_init, function in Internal Functions + +H +EncaHookFunc, user_function in Internal Functions + +L +EncaLanguageHookData1CS, struct in Internal Functions +EncaLanguageHookDataEOL, struct in Internal Functions +EncaLanguageInfo, struct in Internal Functions +ENCA_LANGUAGE_BE, variable in Internal Functions +ENCA_LANGUAGE_BG, variable in Internal Functions +ENCA_LANGUAGE_CS, variable in Internal Functions +enca_language_destroy, function in Internal Functions +ENCA_LANGUAGE_ET, variable in Internal Functions +enca_language_hook_eol, function in Internal Functions +enca_language_hook_ncs, function in Internal Functions +ENCA_LANGUAGE_HR, variable in Internal Functions +ENCA_LANGUAGE_HU, variable in Internal Functions +enca_language_init, function in Internal Functions +ENCA_LANGUAGE_LT, variable in Internal Functions +ENCA_LANGUAGE_LV, variable in Internal Functions +ENCA_LANGUAGE_PL, variable in Internal Functions +ENCA_LANGUAGE_RU, variable in Internal Functions +ENCA_LANGUAGE_SK, variable in Internal Functions +ENCA_LANGUAGE_SL, variable in Internal Functions +ENCA_LANGUAGE_UK, variable in Internal Functions +ENCA_LANGUAGE_ZH, variable in Internal Functions +LF, macro in Internal Functions + +M +MAKE_HOOK_LINE, macro in Internal Functions +enca_malloc, function in Internal Functions + +N +EncaNameStyle, enum in Typedefs and Constants +enca_name_to_charset, function in Internal Functions +enca_name_to_surface, function in Internal Functions +NEW, macro in Internal Functions +ENCA_NOT_A_CHAR, macro in Typedefs and Constants + +P +enca_pair_analyse, function in Internal Functions +enca_pair_destroy, function in Internal Functions +enca_pair_init, function in Internal Functions + +R +enca_realloc, function in Internal Functions +RENEW, macro in Internal Functions + +S +enca_stpcpy, function in Internal Functions +enca_strappend, function in Internal Functions +enca_strconcat, function in Internal Functions +enca_strdup, function in Internal Functions +enca_strstr, function in Internal Functions +EncaSurface, enum in Typedefs and Constants + +U +EncaUTFCheckData, struct in Internal Functions + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/auxiliary.xml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/auxiliary.xml new file mode 100644 index 0000000..79970b6 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/auxiliary.xml @@ -0,0 +1,32 @@ + + + + +Auxiliary functions +3 +LIBENCA Library + + +Auxiliary functions +Variouis auxiliary functions and informations about libenca. + + + + + +Description + + + + + +Functions + + + +Types and Values + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/encodings.xml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/encodings.xml new file mode 100644 index 0000000..f369584 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/encodings.xml @@ -0,0 +1,32 @@ + + + + +Charsets and Surfaces +3 +LIBENCA Library + + +Charsets and Surfaces +Functions and macros for getting something sensible from EncaEncoding. + + + + + +Description + + + + + +Functions + + + +Types and Values + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/enums.xml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/enums.xml new file mode 100644 index 0000000..f5c7b0f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/enums.xml @@ -0,0 +1,362 @@ + + + + +Typedefs and Constants +3 +LIBENCA Library + + +Typedefs and Constants +Enca library typedefs, enums and constants. + + + +Functions + + + + + +#defineENCA_CS_UNKNOWN + + + + + + +Types and Values + + + + + +typedefEncaAnalyser +EncaEncoding +enumEncaSurface +enumEncaCharsetFlags +enumEncaNameStyle +enumEncaErrno +#defineENCA_NOT_A_CHAR + + + + + + + + +Description + + + + + +Functions + +ENCA_CS_UNKNOWN +ENCA_CS_UNKNOWN +#define ENCA_CS_UNKNOWN (-1) + +Unknown character set id. +Use enca_charset_is_known() to check for unknown charset instead of direct +comparsion. + + + + +Types and Values + +EncaAnalyser +EncaAnalyser +typedef struct _EncaAnalyserState *EncaAnalyser; + + + + + +EncaEncoding +EncaEncoding +typedef struct _EncaEncoding EncaEncoding; +Encoding, i.e. charset and surface. +This is what enca_analyse() and enca_analyse_const() return. +The charset + field is an opaque numerical charset identifier, which has no +meaning outside Enca library. +You will probably want to use it only as enca_charset_name() argument. +It is only guaranteed not to change meaning +during program execution time; change of its interpretation (e.g. due to +addition of new charsets) is not considered API change. +The surface + field is a combination of EncaSurface flags. You may want +to ignore it completely; you should use enca_set_interpreted_surfaces() +to disable weird surfaces then. + +Members + + + + + + + + + + +enum EncaSurface +EncaSurface +Surface flags. + +Members + + + + + + +ENCA_SURFACE_EOL_CR +End-of-lines are represented with CR's. + + + +ENCA_SURFACE_EOL_LF +End-of-lines are represented with LF's. + + + +ENCA_SURFACE_EOL_CRLF +End-of-lines are represented with CRLF's. + + + +ENCA_SURFACE_EOL_MIX +Several end-of-line types, mixed. + + + +ENCA_SURFACE_EOL_BIN +End-of-line concept not applicable (binary data). + + + +ENCA_SURFACE_MASK_EOL +Mask for end-of-line surfaces. + + + +ENCA_SURFACE_PERM_21 +Odd and even bytes swapped. + + + +ENCA_SURFACE_PERM_4321 +Reversed byte sequence in 4byte words. + + + +ENCA_SURFACE_PERM_MIX +Chunks with both endianess, concatenated. + + + +ENCA_SURFACE_MASK_PERM +Mask for permutation surfaces. + + + +ENCA_SURFACE_QP +Quoted printables. + + + +ENCA_SURFACE_REMOVE +Recode `remove' surface. + + + +ENCA_SURFACE_UNKNOWN +Unknown surface. + + + +ENCA_SURFACE_MASK_ALL +Mask for all bits, withnout ENCA_SURFACE_UNKNOWN. + + + + + + +enum EncaCharsetFlags +EncaCharsetFlags +Charset properties. +Flags ENCA_CHARSET_7BIT, ENCA_CHARSET_8BIT, ENCA_CHARSET_16BIT, +ENCA_CHARSET_32BIT tell how many bits a `fundamental piece' consists of. +This is different from bits per character; r.g. UTF-8 consists of 8bit +pieces (bytes), but character can be composed from 1 to 6 of them. + +Members + + + + + + +ENCA_CHARSET_7BIT +Characters are represented with 7bit characters. + + + +ENCA_CHARSET_8BIT +Characters are represented with bytes. + + + +ENCA_CHARSET_16BIT +Characters are represented with 2byte words. + + + +ENCA_CHARSET_32BIT +Characters are represented with 4byte words. + + + +ENCA_CHARSET_FIXED +One characters consists of one fundamental piece. + + + +ENCA_CHARSET_VARIABLE +One character consists of variable number of +fundamental pieces. + + + +ENCA_CHARSET_BINARY +Charset is binary from ASCII viewpoint. + + + +ENCA_CHARSET_REGULAR +Language dependent (8bit) charset. + + + +ENCA_CHARSET_MULTIBYTE +Multibyte charset. + + + + + + +enum EncaNameStyle +EncaNameStyle +Charset naming styles and conventions. + +Members + + + + + + +ENCA_NAME_STYLE_ENCA +Default, implicit charset name in Enca. + + + +ENCA_NAME_STYLE_RFC1345 +RFC 1345 or otherwise canonical charset name. + + + +ENCA_NAME_STYLE_CSTOCS +Cstocs charset name (may not exist). + + + +ENCA_NAME_STYLE_ICONV +Iconv charset name (may not exist). + + + +ENCA_NAME_STYLE_HUMAN +Human comprehensible description. + + + +ENCA_NAME_STYLE_MIME +Preferred MIME name (may not exist). + + + + + + +enum EncaErrno +EncaErrno +Error codes. + +Members + + + + + + +ENCA_EOK +OK. + + + +ENCA_EINVALUE +Invalid value (usually of an option). + + + +ENCA_EEMPTY +Sample is empty. + + + +ENCA_EFILTERED +After filtering, (almost) nothing remained. + + + +ENCA_ENOCS8 +Mulitibyte tests failed and language contains no 8bit charsets. + + + +ENCA_ESIGNIF +Too few significant characters. + + + +ENCA_EWINNER +No clear winner. + + + +ENCA_EGARBAGE +Sample is garbage. + + + + + + +ENCA_NOT_A_CHAR +ENCA_NOT_A_CHAR +#define ENCA_NOT_A_CHAR 0xffff + +Not-a-character in unicode tables. + + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/internal.xml b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/internal.xml new file mode 100644 index 0000000..37d711f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/devel-docs/xml/internal.xml @@ -0,0 +1,1603 @@ + + + + +internal +3 +LIBENCA Library + + +internal + +internal functions + + + + +Functions + + + + + +int +(*EncaHookFunc) () +int +(*EncaGuessFunc) () +#defineELEMENTS() +#defineMAKE_HOOK_LINE() +#defineLF +#defineCR +void * +enca_malloc () +void * +enca_realloc () +#defineenca_free() +#defineNEW() +#defineRENEW() +char * +enca_strdup () +const char * +enca_strstr () +char * +enca_stpcpy () +char * +enca_strconcat () +char * +enca_strappend () +#defineenca_csname() +int +enca_name_to_charset () +EncaSurface +enca_name_to_surface () +int +enca_language_init () +void +enca_language_destroy () +double * +enca_get_charset_similarity_matrix () +int +enca_charsets_subset_identical () +size_t +enca_filter_boxdraw () +int +enca_language_hook_ncs () +int +enca_language_hook_eol () +void +enca_guess_init () +void +enca_guess_destroy () +EncaSurface +enca_eol_surface () +void +enca_find_max_sec () +void +enca_double_utf8_init () +void +enca_double_utf8_destroy () +void +enca_pair_init () +void +enca_pair_destroy () +int +enca_pair_analyse () + + + + + + +Types and Values + + + + + +structEncaAnalyserOptions +structEncaAnalyserState +structEncaCharsetInfo +structEncaLanguageInfo +structEncaLanguageHookData1CS +structEncaLanguageHookDataEOL +structEncaUTFCheckData +#defineEPSILON +#defineFILL_NONLETTER +extern const EncaLanguageInfo ENCA_LANGUAGE_BE +extern const EncaLanguageInfo ENCA_LANGUAGE_BG +extern const EncaLanguageInfo ENCA_LANGUAGE_CS +extern const EncaLanguageInfo ENCA_LANGUAGE_ET +extern const EncaLanguageInfo ENCA_LANGUAGE_HR +extern const EncaLanguageInfo ENCA_LANGUAGE_HU +extern const EncaLanguageInfo ENCA_LANGUAGE_LT +extern const EncaLanguageInfo ENCA_LANGUAGE_LV +extern const EncaLanguageInfo ENCA_LANGUAGE_PL +extern const EncaLanguageInfo ENCA_LANGUAGE_RU +extern const EncaLanguageInfo ENCA_LANGUAGE_SK +extern const EncaLanguageInfo ENCA_LANGUAGE_SL +extern const EncaLanguageInfo ENCA_LANGUAGE_UK +extern const EncaLanguageInfo ENCA_LANGUAGE_ZH + + + + + + + + +Description + +Do not use outside Enca library. + + + + +Functions + +EncaHookFunc () +EncaHookFunc +int +(*EncaHookFunc) (EncaAnalyserState *analyser); +Language hook function type. +Launches language specific hooks for a particular language. + +Parameters + + + + + + +analyser +Analyser state whose charset ratings are to be modified. + + + +Returns + Nonzero if charset ratigns have been actually modified, zero +otherwise. + + +EncaGuessFunc () +EncaGuessFunc +int +(*EncaGuessFunc) (EncaAnalyserState *analyser); +Special (multibyte) encoding check function type. + +Parameters + + + + + + +analyser +Analyser state whose buffer should be checked. + + + +Returns + Nonzero if analyser->result has been set, zero otherwise. + + +ELEMENTS() +ELEMENTS +#define ELEMENTS(array) (sizeof(array)/sizeof((array)[0])) + +Compute the number of elements of a static array. + +Parameters + + + + + + +array +An array whose size is to be computed. + + + +Returns + the number of elements. + + +MAKE_HOOK_LINE() +MAKE_HOOK_LINE +#define MAKE_HOOK_LINE(name) +Ugly code `beautifier' macro for language hooks. + +Parameters + + + + + + +name +A charset name in C-style identifier suitable form. + + + + +LF +LF +#define LF ((unsigned char)'\n') + +Line feed character (End-of-line on Unix). + + +CR +CR +#define CR ((unsigned char)'\r') + +Carriage return character (End-of-line on Macintosh). + + +enca_malloc () +enca_malloc +void * +enca_malloc (size_t size); +Allocates memory, always successfully (when fails, aborts program). + +Parameters + + + + + + +size +The number of bytes to allocate. + + + +Returns + Pointer to the newly allocated memory. + + +enca_realloc () +enca_realloc +void * +enca_realloc (void *ptr, + size_t size); +Reallocates memory, always successfully (when fails, aborts program). + +Parameters + + + + + + +ptr +Pointer to block of previously allocated memory. + +size +The number of bytes to resize the block. + + + +Returns + Pointer to the newly allocated memory, NULL when size +is zero. + + +enca_free() +enca_free +#define enca_free(ptr) +Frees memory pointed by ptr + with free() hack and assigns it a safe value, +thus may be called more than once. +ptr + MUST be l-value. + +Parameters + + + + + + +ptr +Pointer to memory to free. + + + + +NEW() +NEW +#define NEW(type,n) ((type*)enca_malloc((n)*sizeof(type))) + +An enca_malloc() wrapper. + +Parameters + + + + + + +type +Data type to allocate. + +n +Number of elements to allocate. + + + +Returns + Pointer to the newly allocated memory. + + +RENEW() +RENEW +#define RENEW(ptr,type,n) ((type*)enca_realloc((ptr),(n)*sizeof(type))) + +An enca_realloc() wrapper. + +Parameters + + + + + + +ptr +Pointer to already allocate memory or NULL. + +type +Data type to allocate. + +n +Number of elements to resize the memory to. + + + +Returns + Pointer to the reallocated memory (or pointer safe to call free() +on when n +is zero). + + +enca_strdup () +enca_strdup +char * +enca_strdup (const char *s); +Duplicates string. +Will be defined as strdup() when system provides it. + +Parameters + + + + + + +s +A string. + + + +Returns + The newly allocated string copy. + + +enca_strstr () +enca_strstr +const char * +enca_strstr (const char *haystack, + const char *needle); +Finds occurence of a substring in a string. +Will be defined as strstr() when system provides it. + +Parameters + + + + + + +haystack +A string where to search. + +needle +A string to find. + + + +Returns + Pointer to the first occurence of needle +in haystack +; NULL if +not found. + + +enca_stpcpy () +enca_stpcpy +char * +enca_stpcpy (char *dest, + const char *src); +Appends a string to the end of another strings, returning pointer to +the terminating zero byte. +Will be defined as stpcpy() when system provides it. +Caller is responisble for providing dest + long enough to hold the result. + +Parameters + + + + + + +dest +A string. + +src +A string to append. + + + +Returns + Pointer to the terminating zero byte of resulting string. + + +enca_strconcat () +enca_strconcat +char * +enca_strconcat (const char *str, + ...); +Concatenates arbitrary (but at least one) number of strings. + +Parameters + + + + + + +str +A string. + +... +A NULL-terminated list of string to append. + + + +Returns + All the strings concatenated together. + + +enca_strappend () +enca_strappend +char * +enca_strappend (char *str, + ...); +Appends arbitrary number of strings to a string. +The string str + is destroyed (reallocated), the others are kept. + +Parameters + + + + + + +str +A string. + +... +A NULL-terminated list of string to append. + + + +Returns + All the strings concatenated together. + + +enca_csname() +enca_csname +#define enca_csname(cs) enca_charset_name((cs), ENCA_NAME_STYLE_ENCA) + +A shorthand for printing names with ENCA_NAME_STYLE_ENCA. + +Parameters + + + + + + +cs +A charset id. + + + + +enca_name_to_charset () +enca_name_to_charset +int +enca_name_to_charset (const char *csname); +Transforms charset name to numeric charset id. + +Parameters + + + + + + +csname +The charset name. + + + +Returns + The charset id; ENCA_CS_UNKNOWN when the name is not recognized. + + +enca_name_to_surface () +enca_name_to_surface +EncaSurface +enca_name_to_surface (const char *sname); +Transforms surface name to numeric surface id. + +Parameters + + + + + + +sname +The surface name. + + + +Returns + The surface id; ENCA_SURFACE_UNKNOWN when the name is not +recognized. + + +enca_language_init () +enca_language_init +int +enca_language_init (EncaAnalyserState *analyser, + const char *langname); +Initializes analyser for language langname +. +Assumes analyser + is unitinialized, calling with an initialized analyser + +leads to memory leak. + +Parameters + + + + + + +analyser +Analyzer state to be initialized for this language. + +langname +Two-letter ISO-639 language code. + + + +Returns + Nonzero on success, zero otherwise. + + +enca_language_destroy () +enca_language_destroy +void +enca_language_destroy (EncaAnalyserState *analyser); +Destroys the language part of analyser state analyser +. + +Parameters + + + + + + +analyser +Analyzer state whose language part should be destroyed. + + + + +enca_get_charset_similarity_matrix () +enca_get_charset_similarity_matrix +double * +enca_get_charset_similarity_matrix (const EncaLanguageInfo *lang); +Computes character weight similarity matrix for language lang +. +sim[i,j] is normalized to sim[i,i] thus: + +a row i contains ,probabilities` different languages will look like the +i-th one + +a column i contains ,probabilities` the i-th language will look like +the other languages. + + +For all practical applications, the higher one of sim[i,j] and sim[j,i] +is important. +Note: this is not used anywhere, only by simtable. + +Parameters + + + + + + +lang +A language. + + + +Returns + The matrix, its size is determined by lang->ncharsets +; NULL +for language with no charsets. + + +enca_charsets_subset_identical () +enca_charsets_subset_identical +int +enca_charsets_subset_identical (int charset1, + int charset2, + const size_t *counts); +Checks whether all characters with nonzero count have the same meaning +in both charsets. +In other words, it checks whether conversion of sample containing only +these characters from charset1 + to charset2 + would be identity. + +Parameters + + + + + + +charset1 +A charset. + +charset2 +Another charset. + +counts +An array of size 0x100 containing character counts. + + + +Returns + Nonzero if charsets are identical on the subset, zero otherwise. + + +enca_filter_boxdraw () +enca_filter_boxdraw +size_t +enca_filter_boxdraw (EncaAnalyserState *analyser, + unsigned char fill_char); +Runs boxdrawing characters filter on buffer + for each charset in language +. + +Parameters + + + + + + +analyser +Analyser whose charsets should be considered for filtration. + +fill_char +Replacement character for filtered bytes. + + + +Returns + Number of characters filtered out. + + +enca_language_hook_ncs () +enca_language_hook_ncs +int +enca_language_hook_ncs (EncaAnalyserState *analyser, + size_t ncs, + EncaLanguageHookData1CS *hookdata); +Decide between two charsets differing only in a few characters. +If the two most probable charsets correspond to hookdata + charsets, +give the characters they differ half the weight of all other characters +together, thus allowing to decide between the two very similar charsets. +It also recomputes order + when something changes. + +Parameters + + + + + + +analyser +Analyser whose charset ratings are to be modified. + +ncs +The number of charsets. + +hookdata +What characters of which charsets should be given the extra +weight. + + + +Returns + Nonzero when ratings +were actually modified, nonzero otherwise. + + +enca_language_hook_eol () +enca_language_hook_eol +int +enca_language_hook_eol (EncaAnalyserState *analyser, + size_t ncs, + EncaLanguageHookDataEOL *hookdata); +Decide between two charsets differing only in EOL type or other surface. +The (surface mask, charset) pairs are scanned in order. If a matching +surface is found, ratings of all other charsets in the list are zeroed. +So you can place a surface mask of all 1s at the end to match when nothing +else matches. +All the charsets have to have the same rating, or nothing happens. +It also recomputes order + when something changes. + +Parameters + + + + + + +analyser +Analyser whose charset ratings are to be modified. + +ncs +The number of charsets. + +hookdata +What characters of which charsets should be decided with based +on the EOL type. + + + +Returns + Nonzero when ratings +were actually modified, nonzero otherwise. + + +enca_guess_init () +enca_guess_init +void +enca_guess_init (EncaAnalyserState *analyser); +Allocates and initializes analyser state, sets options to defaults. +Assumes analyser + is unitinialized, calling with an initialized analyser + +leads to memory leak, but analyser->lang + must be already initialized. + +Parameters + + + + + + +analyser +Analyser to initialize. + + + + +enca_guess_destroy () +enca_guess_destroy +void +enca_guess_destroy (EncaAnalyserState *analyser); +Frees memory owned by analyser state. + +Parameters + + + + + + +analyser +Analyser to destroy. + + + + +enca_eol_surface () +enca_eol_surface +EncaSurface +enca_eol_surface (const unsigned char *buffer, + size_t size, + const size_t *counts); +Find EOL type of sample in buffer +. + +Parameters + + + + + + +buffer +A buffer whose EOL type is to be detected. + +size +Size of buffer +. + +counts +Character counts. + + + +Returns + The EOL surface flags. + + +enca_find_max_sec () +enca_find_max_sec +void +enca_find_max_sec (EncaAnalyserState *analyser); +Updates analyser->order + according to charset ratings +. +XXX: This should be stable sort. The ordering is defined by +data/<lang>/<lang>.h header file which is in turn defined by odering in +the appropriate script (doit.sh). Silly. +Must not be called with analyser + with no regular charsets. + +Parameters + + + + + + +analyser +An analyser. + + + + +enca_double_utf8_init () +enca_double_utf8_init +void +enca_double_utf8_init (EncaAnalyserState *analyser); +Initializes double-UTF-8 check. +In fact it initializes the fields to NULL's, they are actually initialized +only when needed. + +Parameters + + + + + + +analyser +Analyzer state to be initialized. + + + + +enca_double_utf8_destroy () +enca_double_utf8_destroy +void +enca_double_utf8_destroy (EncaAnalyserState *analyser); +Destroys the double-UTF-8 check part of analyser state analyser +. + +Parameters + + + + + + +analyser +Analyzer state whose double-UTF-8 check part should be destroyed. + + + + +enca_pair_init () +enca_pair_init +void +enca_pair_init (EncaAnalyserState *analyser); +Initializes pair statistics data. +In fact it just sets everything to NULL, to be initialized when needed. + +Parameters + + + + + + +analyser +Analyzer state to be initialized. + + + + +enca_pair_destroy () +enca_pair_destroy +void +enca_pair_destroy (EncaAnalyserState *analyser); +Destroys the pair statistics part of analyser state analyser +. + +Parameters + + + + + + +analyser +Analyzer state whose pair statistics part should be destroyed. + + + + +enca_pair_analyse () +enca_pair_analyse +int +enca_pair_analyse (EncaAnalyserState *analyser); +Performs pair-frequency based analysis, provided that the language supports +it (does nothing otherwise). + +Parameters + + + + + + +analyser +Analysed containing the sample for pair frequency analysis. + + + +Returns + Nonzero when the character set was succesfully determined, +analyser +->result +.charset +is then directly modified. + + + + +Types and Values + +struct EncaAnalyserOptions +EncaAnalyserOptions +struct EncaAnalyserOptions { + int const_buffer; + size_t min_chars; + double threshold; + int multibyte_enabled; + int interpreted_surfaces; + int ambiguous_mode; + int filtering; + int test_garbageness; + int termination_strictness; +}; + +Analyser options, a part of analyser state. + +Members + + + + + + +int const_buffer; +Treat buffer as const? Otherwise its content can be, +and probably will be, modified. + + +size_t min_chars; +Minimal number significant characters. + + +double threshold; +Minimal ratio between winner and the second. + + +int multibyte_enabled; +Check for multibyte encodings? + + +int interpreted_surfaces; +Allow surfaces causing fundamental reinterpretation? + + +int ambiguous_mode; +Ambiguous mode? + + +int filtering; +Allow binary and box-drawing filters? + + +int test_garbageness; +Do test garbageness? + + +int termination_strictness; +Disallow broken multibyte sequences at buffer end? + + + + + + +struct EncaAnalyserState +EncaAnalyserState +struct EncaAnalyserState { + /* Language data. */ + const EncaLanguageInfo *lang; + size_t ncharsets; + int *charsets; + /* Analyser state. */ + EncaErrno gerrno; + size_t size; + unsigned char *buffer; + EncaEncoding result; + size_t *counts; + size_t bin; + size_t up; + double *ratings; + size_t *order; + size_t size2; + unsigned char *buffer2; + /* Double-UTF-8 data. */ + EncaUTFCheckData *utfch; + int *utfbuf; + /* Pair frequency data */ + unsigned char *pair2bits; + size_t *bitcounts; + size_t *pairratings; + /* LCUC data XXX: unused (yet) */ + size_t *lcbits; + size_t *ucbits; + /* Options. */ + EncaAnalyserOptions options; +}; + +The internal analyser state. +Passed as an opaque object (`this') to analyser calls. + +Members + + + + + + +const EncaLanguageInfo *lang; +Language informations. + + +size_t ncharsets; +Number of 8bit charsets in this language. +(Equal to lang->ncharsets +.) + + +int *charsets; +8bit charset id's [ncharsets +]. + + +EncaErrno gerrno; +Guessing gerrno. + + +size_t size; +Size of buffer. + + +unsigned char *buffer; +Buffer whose encoding is to be detected [size +]. +(Owned by outer world.) + + +EncaEncoding result; +Result returned to caller. + + +size_t *counts; +Character counts [0x100]. + + +size_t bin; +Number of `binary' characters. + + +size_t up; +Number of 8bit characters. + + +double *ratings; +8bit charset ratings [ncharsets +]. + + +size_t *order; +Charset indices (not id's) sorted by ratings in descending order +[ncharsets]. + + +size_t size2; +Size of buffer2. + + +unsigned char *buffer2; +A temporary secondary buffer [size2 +]. + + +EncaUTFCheckData *utfch; +Double-UTF-8 test data [ncharsets +]. + + +int *utfbuf; +Double-UTF-8 buffer for various UCS-2 character counting [0x10000]. +(Magic: see mark_scratch_buffer() for description.) + + +unsigned char *pair2bits; +Character pair map to charsets [0x100000] (indexed +0x100*first + second). Each bit corresponds to one charset, +when set, the pair is `good' for the given charset. The +type is char, so it breaks for ncharsets +> 8, but it should +not be accessed from outer world, so it can be easily enlarged +to more bits. + + +size_t *bitcounts; +Counts for each possible bit combinations in pair2bits +[0x1 << ncharsets]. + + +size_t *pairratings; +Counts of `good' pairs per charset [ncharsets +]. + + +size_t *lcbits; +If a character is lowercase in some charset, correspinding bit +is set [0x100]. + + +size_t *ucbits; +If a character is uppercase in some charset, correspinding bit +is set [0x100]. + + +EncaAnalyserOptions options; +Analyser options. + + + + + + +struct EncaCharsetInfo +EncaCharsetInfo +struct EncaCharsetInfo { + int enca; + int rfc1345; + int cstocs; + int iconv; + int mime; + const char *human; + unsigned int flags; + unsigned int nsurface; +}; + +General charset informnations. +All the int fields are indices in ALIAS_LIST[]. + +Members + + + + + + +int enca; +Default, implicit name in enca. + + +int rfc1345; +RFC1345 charset name. +(For charsets not in RFC1345, some canonical name is invented.) + + +int cstocs; +Cstocs charset name or -1. + + +int iconv; +Iconv charset name or -1. + + +int mime; +Preferred MIME charset name or -1. + + +const char *human; +Human comprehensible description. + + +unsigned int flags; +Charset properties (7bit, 8bit, multibyte, ...). + + +unsigned int nsurface; +Natural surface (`implied' in recode). + + + + + + +struct EncaLanguageInfo +EncaLanguageInfo +struct EncaLanguageInfo { + const char *name; + const char *humanname; + size_t ncharsets; + const char *const *csnames; + const unsigned short int *const *weights; + const unsigned short int *significant; + const unsigned char *const *letters; + const unsigned char **const *pairs; + long int weight_sum; + EncaHookFunc hook; + EncaHookFunc eolhook; + EncaHookFunc lcuchook; + EncaHookFunc ratinghook; +}; + +Language specific data. + +Members + + + + + + +const char *name; +Language name, or more precisely, locale name. + + +const char *humanname; +Normal human-readable [English] language name. + + +size_t ncharsets; +Number of charsets in this language. + + +const char *const  *csnames; +Charset names [ncharsets +]. + + +long int weight_sum; +Sum of all weights +(is the same for all charsets). + + +EncaHookFunc hook; +Hook function (deciding hard cases). + + +EncaHookFunc eolhook; +EOL hook function (deciding ambiguous cases based on EOL type). + + +EncaHookFunc lcuchook; + + + +EncaHookFunc ratinghook; +Helper to calculate ratings for weightingless languages. + + + + + + +struct EncaLanguageHookData1CS +EncaLanguageHookData1CS +struct EncaLanguageHookData1CS { + const char *name; + size_t size; + const unsigned char *list; + size_t cs; +}; + +Cointainer for data needed by enca_language_hook_ncs(). + +Members + + + + + + +const char *name; +Charset name. + + +size_t size; +Number of characters in list +. + + +size_t cs; +Charset number. This is an index in analyser +arrays (like charsets +), +NOT a charset id. + + + + + + +struct EncaLanguageHookDataEOL +EncaLanguageHookDataEOL +struct EncaLanguageHookDataEOL { + const char *name; + EncaSurface eol; + size_t cs; +}; + +Cointainer for data needed by enca_language_hook_eol(). + +Members + + + + + + +const char *name; +Charset name. + + +EncaSurface eol; +The corresponding EncaSurface bit. + + +size_t cs; +Charset number. This is an index in analyser +arrays (like charsets +), +NOT a charset id. + + + + + + +struct EncaUTFCheckData +EncaUTFCheckData +struct EncaUTFCheckData { + double rating; + size_t size; + int result; + int *ucs2; + int *weights; +}; + +Data needed by double-UTF-8 check, per language charset. + +Members + + + + + + +double rating; +Total rating for this charset. + + +size_t size; +Number of UCS-2 characters. + + +int result; +Nonzero when the sample is probably Doubly-UTF-8 encoded from +this charset. + + +int *ucs2; +List of significant UCS-2 characters, in order [size +]. + + +int *weights; +Weights for double-UTF-8 check [size +]. Positive means normal +UTF-8, negative doubly-encoded. + + + + + + +EPSILON +EPSILON +#define EPSILON 0.000001 + +`Zero' for float comparsion (and to prevent division by zero, etc.). + + +FILL_NONLETTER +FILL_NONLETTER +#define FILL_NONLETTER '.' + +Replacement character for non-letters in pair frequencies. + + +ENCA_LANGUAGE_BE +ENCA_LANGUAGE_BE +extern const EncaLanguageInfo ENCA_LANGUAGE_BE; + +Belarusian language. +Everything the world out there needs to know about this language. + + +ENCA_LANGUAGE_BG +ENCA_LANGUAGE_BG +extern const EncaLanguageInfo ENCA_LANGUAGE_BG; + +Bulgarian language. +Everything the world out there needs to know about this language. + + +ENCA_LANGUAGE_CS +ENCA_LANGUAGE_CS +extern const EncaLanguageInfo ENCA_LANGUAGE_CS; + +Czech language. +Everything the world out there needs to know about this language. + + +ENCA_LANGUAGE_ET +ENCA_LANGUAGE_ET +extern const EncaLanguageInfo ENCA_LANGUAGE_ET; + +Estonian language. +Everything the world out there needs to know about this language. + + +ENCA_LANGUAGE_HR +ENCA_LANGUAGE_HR +extern const EncaLanguageInfo ENCA_LANGUAGE_HR; + +Croatian language. +Everything the world out there needs to know about this language. + + +ENCA_LANGUAGE_HU +ENCA_LANGUAGE_HU +extern const EncaLanguageInfo ENCA_LANGUAGE_HU; + +Hungarian language. +Everything the world out there needs to know about this language. + + +ENCA_LANGUAGE_LT +ENCA_LANGUAGE_LT +extern const EncaLanguageInfo ENCA_LANGUAGE_LT; + +Lithuanian language. +Everything the world out there needs to know about this language. + + +ENCA_LANGUAGE_LV +ENCA_LANGUAGE_LV +extern const EncaLanguageInfo ENCA_LANGUAGE_LV; + +Latvian language. +Everything the world out there needs to know about this language. + + +ENCA_LANGUAGE_PL +ENCA_LANGUAGE_PL +extern const EncaLanguageInfo ENCA_LANGUAGE_PL; + +Polish language. +Everything the world out there needs to know about this language. + + +ENCA_LANGUAGE_RU +ENCA_LANGUAGE_RU +extern const EncaLanguageInfo ENCA_LANGUAGE_RU; + +Russian language. +Everything the world out there needs to know about this language. + + +ENCA_LANGUAGE_SK +ENCA_LANGUAGE_SK +extern const EncaLanguageInfo ENCA_LANGUAGE_SK; + +Slovak language. +Everything the world out there needs to know about this language. + + +ENCA_LANGUAGE_SL +ENCA_LANGUAGE_SL +extern const EncaLanguageInfo ENCA_LANGUAGE_SL; + +Slovene language. +Everything the world out there needs to know about this language. + + +ENCA_LANGUAGE_UK +ENCA_LANGUAGE_UK +extern const EncaLanguageInfo ENCA_LANGUAGE_UK; + +Ukrainian language. +Everything the world out there needs to know about this language. + + +ENCA_LANGUAGE_ZH +ENCA_LANGUAGE_ZH +extern const EncaLanguageInfo ENCA_LANGUAGE_ZH; + +Chinese language. +Everything the world out there needs to know about this language. + + + + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/enca.pc b/wlx/wayland_qt_base/build/enca-1.19/enca.pc new file mode 100644 index 0000000..0470dbc --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/enca.pc @@ -0,0 +1,13 @@ +prefix=/usr/local +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include +libexecdir=${exec_prefix}/libexec + +encaextconvdir=${libexecdir}/enca/extconv + +Name: Enca +Description: Extermely Naive Charset Analyser library +Version: 1.19 +Libs: -L${libdir} -lenca -lm +Cflags: -I${includedir} diff --git a/wlx/wayland_qt_base/build/enca-1.19/enca.pc.in b/wlx/wayland_qt_base/build/enca-1.19/enca.pc.in new file mode 100644 index 0000000..2f7a38e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/enca.pc.in @@ -0,0 +1,13 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ +libexecdir=@libexecdir@ + +encaextconvdir=${libexecdir}/enca/extconv + +Name: Enca +Description: Extermely Naive Charset Analyser library +Version: @VERSION@ +Libs: -L${libdir} -lenca @LIBM@ +Cflags: -I${includedir} diff --git a/wlx/wayland_qt_base/build/enca-1.19/enca.spec b/wlx/wayland_qt_base/build/enca-1.19/enca.spec new file mode 100644 index 0000000..9552a6c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/enca.spec @@ -0,0 +1,208 @@ +# RPM package for Enca, an Extremely Naive Charset Analyser. +# +# This RPM package suports conditional builds. Components can be +# enabled/disabled in rpmbuild via --with/--without. Default is: +# +# rpmbuild -ba --without htmldocs --with static +# +# Check http://www.rpm.org/wiki/PackagerDocs/ConditionalBuilds for more info. + +# add --with htmldocs option, i.e. disable generation of HTML documentation by +# default +%bcond_with htmldocs + +# add --without static, i.e. enable generation of static libraries by +# default +%bcond_without static + +Summary: Detect encoding of text files and convert to other encodings. +Name: enca +Version: 1.19 +Release: 1%{?dist} +License: GPLv2 +Group: Applications/Text +Source: http://dl.cihar.com/enca/enca-1.19.tar.gz +URL: https://github.com/nijel/enca +Prefix: %{_prefix} +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +%description +Enca is an Extremely Naive Charset Analyser. + +It detects character set and encoding of text files and can also convert them +to other encodings using either a built-in converter or external libraries and +tools like GNU recode (librecode), UNIX98 iconv (libiconv), perl Unicode::Map +and cstocs. + +Currently, it has support for Belarusian, Bulgarian, Croatian, Czech, +Estonian, Latvian, Lithuanian, Polish, Russian, Slovak, Slovene, Ukrainian, +Chinese, and some multibyte encodings (mostly variants of Unicode) independent +on the language. + +This package contains enca, a command line frontend, as well as the shared +Enca libraries other programs can make use of. + +Install enca if you need to cope with text files of dubious origin and unknown +encoding and convert them to some reasonable encoding. + +%package devel +Summary: Header files and libraries for Enca development. +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig + +%description devel +The %{name}-devel package contains the static libraries, header files and +documentation for writing programs using Enca, the Extremely Naive Charset +Analyser. + +Install %{name}-devel if you are going to create applications using the Enca +library. + +%prep +%setup -q + +%build +%configure \ + --disable-dependency-tracking \ + --without-librecode \ + %{?_without_htmldocs:--disable-gtk-doc} \ + %{?_without_static:--disable-static} + +%__make %{?_smp_mflags} + +%check +#make check + +%install +[ "%{buildroot}" != "/" ] && %__rm -rf %{buildroot} +%make_install + +%__mv %{buildroot}/%{_datadir}/gtk-doc/ gtk-doc + +%if %{without static} +%__rm -f %{buildroot}/%{_libdir}/libenca.a +%__rm -f %{buildroot}/%{_libdir}/libenca.la +%endif + +%clean +[ "%{buildroot}" != "/" ] && %__rm -rf %{buildroot} + +%files +%defattr(755,root,root) +%{_bindir}/enca +%{_bindir}/enconv +%{_libdir}/libenca.so* + +# external converters +%{_libexecdir}/%{name}/extconv/* +%dir %{_libexecdir}/%{name}/extconv +%dir %{_libexecdir}/%{name} + +# docs and man pages +%defattr(644,root,root) +%doc AUTHORS ChangeLog COPYING FAQ README THANKS TODO +%doc %{_mandir}/man1/enca.1* +%doc %{_mandir}/man1/enconv.1* + +%files devel +%defattr(-,root,root) +%{_includedir}/enca.h +%{_libdir}/pkgconfig/enca.pc + +# static libs +%if %{with static} +%{_libdir}/libenca.a +%{_libdir}/libenca.la +%endif + +# README and HTML docs +%doc DEVELOP.md +%if %{with htmldocs} +%doc gtk-doc/html +%endif + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%changelog +* Sat Jan 10 2015 Victor Foitzik (vifo) +- updated spec to match information on Github and + align with recent packaging guidelines from Fedora +- added conditional builds for HTML documentation and + static libraries +* Sun Dec 18 2005 David Necas (Yeti) +- fixed 0644 permissions on doc directory +* Mon May 17 2004 David Necas (Yeti) +- doubled percents in changelog +* Mon Dec 22 2003 David Necas (Yeti) +- moved wrappers to libexec +* Thu Nov 6 2003 David Necas (Yeti) +- added b-piconv +- fixed HTML doc install paths +* Tue Oct 14 2003 David Necas (Yeti) +- testing whether $RPM_BUILD_ROOT is not / +- updated for new HTML doc location +- changed make -> %%__make, rm -> %%__rm +* Sat Aug 2 2003 David Necas (Yeti) +- cleaning $RPM_BUILD_ROOT in %%install +* Sat Jun 28 2003 David Necas (Yeti) +- removed --disable-gtk-doc, no longer needed +* Fri Jun 20 2003 David Necas (Yeti) +- added enca.pc to devel package +* Sat Jun 14 2003 David Necas (Yeti) +- updated description +- added --disable-gtk-doc +* Mon Dec 23 2002 David Necas (Yeti) +- added libenca.so +* Fri Dec 20 2002 David Necas (Yeti) +- fixed URL and Source to trific.ath.cx +* Mon Oct 21 2002 David Necas (Yeti) +- added FAQ to docs +* Thu Oct 10 2002 David Necas (Yeti) +- removed twice-listed %%{docdir}/html +* Sat Sep 21 2002 David Necas (Yeti) +- added b-umap +* Sun Sep 15 2002 David Necas (Yeti) +- added enconv +* Thu Aug 29 2002 David Necas (Yeti) +- removed bzip2-devel buildprereq +* Sat Aug 24 2002 David Necas (Yeti) +- added postinstall and postuninstall scriptlets +* Wed Aug 21 2002 David Necas (Yeti) +- updated to enca-0.10.0-pre2 +- added libenca +- split into enca and enca-devel +- removed cache +- fixed HTML_DIR +* Tue Jul 10 2001 David Necas (Yeti) +- changed rpm macros in Source and URL to autoconf macros to ease debian/ + stuff generation +* Sun May 20 2001 David Necas (Yeti) +- added BuildPrereq: bzip2-devel +* Wed May 2 2001 David Necas (Yeti) +- changed group to standard (but much less appropriate) Applications/Text +- rpm macros are used instead of autoconf macros (after the first definition) +* Sun Mar 11 2001 David Necas (Yeti) +- added defattr, doc attributes +- uses global configure cache +- heavy use of predefined directories +- configure moved to build section as is usual +* Sun Feb 25 2001 David Necas (Yeti) +- updated to enca-0.9.0pre4 (including files and descriptions) +- added sed dependency +* Sun Oct 25 2000 David Necas (Yeti) +- updated to enca-0.7.5 +* Sun Oct 11 2000 David Necas (Yeti) +- removed redundant Provides: enca +* Sun Oct 1 2000 David Necas (Yeti) +- updated to enca-0.7.1 +- man page forced to be intstalled to ${prefix}/share/man +* Tue Sep 26 2000 David Necas (Yeti) +- updated to enca-0.7.0 +- spec autogenerated by configure +* Tue Sep 19 2000 David Necas (Yeti) +- fixed not installing bcstocs +* Wed Sep 13 2000 David Necas (Yeti) +- first packaged (0.6.2) diff --git a/wlx/wayland_qt_base/build/enca-1.19/enca.spec.in b/wlx/wayland_qt_base/build/enca-1.19/enca.spec.in new file mode 100644 index 0000000..df9ff77 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/enca.spec.in @@ -0,0 +1,208 @@ +# RPM package for Enca, an Extremely Naive Charset Analyser. +# +# This RPM package suports conditional builds. Components can be +# enabled/disabled in rpmbuild via --with/--without. Default is: +# +# rpmbuild -ba --without htmldocs --with static +# +# Check http://www.rpm.org/wiki/PackagerDocs/ConditionalBuilds for more info. + +# add --with htmldocs option, i.e. disable generation of HTML documentation by +# default +%bcond_with htmldocs + +# add --without static, i.e. enable generation of static libraries by +# default +%bcond_without static + +Summary: Detect encoding of text files and convert to other encodings. +Name: @PACKAGE_TARNAME@ +Version: @PACKAGE_VERSION@ +Release: @RELEASE@%{?dist} +License: GPLv2 +Group: Applications/Text +Source: http://dl.cihar.com/enca/@PACKAGE_TARNAME@-@PACKAGE_VERSION@.tar.gz +URL: https://github.com/nijel/@PACKAGE_TARNAME@ +Prefix: %{_prefix} +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +%description +Enca is an Extremely Naive Charset Analyser. + +It detects character set and encoding of text files and can also convert them +to other encodings using either a built-in converter or external libraries and +tools like GNU recode (librecode), UNIX98 iconv (libiconv), perl Unicode::Map +and cstocs. + +Currently, it has support for Belarusian, Bulgarian, Croatian, Czech, +Estonian, Latvian, Lithuanian, Polish, Russian, Slovak, Slovene, Ukrainian, +Chinese, and some multibyte encodings (mostly variants of Unicode) independent +on the language. + +This package contains enca, a command line frontend, as well as the shared +Enca libraries other programs can make use of. + +Install enca if you need to cope with text files of dubious origin and unknown +encoding and convert them to some reasonable encoding. + +%package devel +Summary: Header files and libraries for Enca development. +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig + +%description devel +The %{name}-devel package contains the static libraries, header files and +documentation for writing programs using Enca, the Extremely Naive Charset +Analyser. + +Install %{name}-devel if you are going to create applications using the Enca +library. + +%prep +%setup -q + +%build +%configure \ + --disable-dependency-tracking \ + --without-librecode \ + %{?_without_htmldocs:--disable-gtk-doc} \ + %{?_without_static:--disable-static} + +%__make %{?_smp_mflags} + +%check +#make check + +%install +[ "%{buildroot}" != "/" ] && %__rm -rf %{buildroot} +%make_install + +%__mv %{buildroot}/%{_datadir}/gtk-doc/ gtk-doc + +%if %{without static} +%__rm -f %{buildroot}/%{_libdir}/libenca.a +%__rm -f %{buildroot}/%{_libdir}/libenca.la +%endif + +%clean +[ "%{buildroot}" != "/" ] && %__rm -rf %{buildroot} + +%files +%defattr(755,root,root) +%{_bindir}/enca +%{_bindir}/enconv +%{_libdir}/libenca.so* + +# external converters +%{_libexecdir}/%{name}/extconv/* +%dir %{_libexecdir}/%{name}/extconv +%dir %{_libexecdir}/%{name} + +# docs and man pages +%defattr(644,root,root) +%doc AUTHORS ChangeLog COPYING FAQ README THANKS TODO +%doc %{_mandir}/man1/enca.1* +%doc %{_mandir}/man1/enconv.1* + +%files devel +%defattr(-,root,root) +%{_includedir}/enca.h +%{_libdir}/pkgconfig/enca.pc + +# static libs +%if %{with static} +%{_libdir}/libenca.a +%{_libdir}/libenca.la +%endif + +# README and HTML docs +%doc DEVELOP.md +%if %{with htmldocs} +%doc gtk-doc/html +%endif + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%changelog +* Sat Jan 10 2015 Victor Foitzik (vifo) +- updated spec to match information on Github and + align with recent packaging guidelines from Fedora +- added conditional builds for HTML documentation and + static libraries +* Sun Dec 18 2005 David Necas (Yeti) +- fixed 0644 permissions on doc directory +* Mon May 17 2004 David Necas (Yeti) +- doubled percents in changelog +* Mon Dec 22 2003 David Necas (Yeti) +- moved wrappers to libexec +* Thu Nov 6 2003 David Necas (Yeti) +- added b-piconv +- fixed HTML doc install paths +* Tue Oct 14 2003 David Necas (Yeti) +- testing whether $RPM_BUILD_ROOT is not / +- updated for new HTML doc location +- changed make -> %%__make, rm -> %%__rm +* Sat Aug 2 2003 David Necas (Yeti) +- cleaning $RPM_BUILD_ROOT in %%install +* Sat Jun 28 2003 David Necas (Yeti) +- removed --disable-gtk-doc, no longer needed +* Fri Jun 20 2003 David Necas (Yeti) +- added enca.pc to devel package +* Sat Jun 14 2003 David Necas (Yeti) +- updated description +- added --disable-gtk-doc +* Mon Dec 23 2002 David Necas (Yeti) +- added libenca.so +* Fri Dec 20 2002 David Necas (Yeti) +- fixed URL and Source to trific.ath.cx +* Mon Oct 21 2002 David Necas (Yeti) +- added FAQ to docs +* Thu Oct 10 2002 David Necas (Yeti) +- removed twice-listed %%{docdir}/html +* Sat Sep 21 2002 David Necas (Yeti) +- added b-umap +* Sun Sep 15 2002 David Necas (Yeti) +- added enconv +* Thu Aug 29 2002 David Necas (Yeti) +- removed bzip2-devel buildprereq +* Sat Aug 24 2002 David Necas (Yeti) +- added postinstall and postuninstall scriptlets +* Wed Aug 21 2002 David Necas (Yeti) +- updated to enca-0.10.0-pre2 +- added libenca +- split into enca and enca-devel +- removed cache +- fixed HTML_DIR +* Tue Jul 10 2001 David Necas (Yeti) +- changed rpm macros in Source and URL to autoconf macros to ease debian/ + stuff generation +* Sun May 20 2001 David Necas (Yeti) +- added BuildPrereq: bzip2-devel +* Wed May 2 2001 David Necas (Yeti) +- changed group to standard (but much less appropriate) Applications/Text +- rpm macros are used instead of autoconf macros (after the first definition) +* Sun Mar 11 2001 David Necas (Yeti) +- added defattr, doc attributes +- uses global configure cache +- heavy use of predefined directories +- configure moved to build section as is usual +* Sun Feb 25 2001 David Necas (Yeti) +- updated to enca-0.9.0pre4 (including files and descriptions) +- added sed dependency +* Sun Oct 25 2000 David Necas (Yeti) +- updated to enca-0.7.5 +* Sun Oct 11 2000 David Necas (Yeti) +- removed redundant Provides: enca +* Sun Oct 1 2000 David Necas (Yeti) +- updated to enca-0.7.1 +- man page forced to be intstalled to ${prefix}/share/man +* Tue Sep 26 2000 David Necas (Yeti) +- updated to enca-0.7.0 +- spec autogenerated by configure +* Tue Sep 19 2000 David Necas (Yeti) +- fixed not installing bcstocs +* Wed Sep 13 2000 David Necas (Yeti) +- first packaged (0.6.2) diff --git a/wlx/wayland_qt_base/build/enca-1.19/iconvcap b/wlx/wayland_qt_base/build/enca-1.19/iconvcap new file mode 100755 index 0000000..6777b00 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/iconvcap differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/iconvcap.c b/wlx/wayland_qt_base/build/enca-1.19/iconvcap.c new file mode 100644 index 0000000..f3c44a6 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/iconvcap.c @@ -0,0 +1,400 @@ +/* + * iconv capability checker by David Necas (Yeti). + * This program is in the public domain. + * + * iconvcap has two modes of operation: + * + * 1. No command line argumets are given. + * Iconvcap tries to find what charsets of interest iconv knows and under + * what names. It prints #defines directly includable to C source for + * any successfully detected charset (and #defines to NULL for the others). + * It also prints some info to stderr, which then goes to config.log. It + * returns success (0) iff following conditions are satified + * -- iconv is able to convert ISO-8859-1 to some tested variant of Unicode + * (see below)---so it's usable at all, and + * -- iconv is able convert at least two of the other charsets of interest to + * the same variant of Unicode (we then hope conversion in the opposite + * direction will work too) + * Otherwise, failure (1) is returned and the output should be ignored, if + * any. + * + * 2. A file name is given on command line. + * Iconvcap reads given file (should contain the just generated #define list) + * and chcecks if conversion from any to any encoding is possible. If it is + * OK it returns success (0), otherwise, it fails returning 1. + * + */ +#include +#include +#include +/* string.h or strings.h? That's a question! + * Don't use const, the compiler may not like it. */ +int strncmp(char *s1, char *s2, size_t n); +char* strchr(char *s, int c); +char* strrchr(char *s, int c); +char* strncpy(char *dest, char *src, size_t n); + +#define DPREFIX "ICONV_NAME_" + +#define TEST_ENC_TO_UNICODE(x) \ + fprintf(stderr, "iconvcap: checking for %s -> Unicode... ", #x); \ + if (iconv_check(VARIANT_##x, unicode) == 0) { \ + printf("#define "DPREFIX"%s \"%s\"\n", #x, FROM); \ + ok++; \ + } else printf("#define "DPREFIX"%s NULL\n", #x); + +/* ANY variant of unicode is good enough here + particular surfaces are defined below */ +char* VARIANT_UNICODE[] = { + "UCS2", "UCS-2", "ISO10646/UCS2", "ISO-10646/UCS2", "ISO_10646/UCS2", + "UNICODE", "ISO-10646", "ISO_10646", "ISO10646", + "UCS4", "UCS-4", "ISO10646/UCS4", "ISO-10646/UCS4", "ISO_10646/UCS4", + "UTF8", "UTF-8", "ISO10646/UTF8", "ISO-10646/UTF8", "ISO_10646/UTF8", + "CSUCS2", "CSUCS4", NULL +}; + +char* VARIANT_ASCII[] = { + "ASCII", "CSASCII", "US-ASCII", "ISO646-US", "ISO_646.IRV:1991", "CP367", + "IBM367", "CP367", "CSPC367", NULL +}; + +char* VARIANT_ISO88591[] = { + "ISO-8859-1", "ISO8859-1", "8859_1", "ISO_8859-1", "LATIN1", "ISOLATIN1", + "CSLATIN1", "CSISOLATIN1", NULL +}; + +char* VARIANT_ISO88592[] = { + "ISO-8859-2", "ISO8859-2", "8859_2", "ISO_8859-2", "LATIN2", "ISOLATIN2", + "CSLATIN2", "CSISOLATIN2", "ISO-IR-101", NULL +}; + +char* VARIANT_ISO88594[] = { + "ISO-8859-4", "ISO8859-4", "8859_4", "ISO_8859-4", "LATIN4", "ISOLATIN4", + "CSLATIN4", "CSISOLATIN4", "ISO-IR-110", NULL +}; + +char* VARIANT_ISO88595[] = { + "ISO-8859-5", "ISO8859-5", "8859_5", "ISO_8859-5", "ISOCYRILLIC", + "CSISOCYRILLIC", "ISO-IR-144", NULL +}; + +char* VARIANT_ISO885913[] = { + "ISO-8859-13", "ISO8859-13", "8859_13", "ISO_8859-13", "LATIN7", "ISOLATIN7", + "CSLATIN7", "CSISOLATIN7", "ISO-IR-179A", "ISOBALTIC", "CSISOBALTIC", + "CSISOLATINBALTIC", NULL +}; + +char* VARIANT_ISO885916[] = { + "ISO-8859-16", "ISO8859-16", "8859_16", "ISO_8859-16", "ISO-IR-226", + "LATIN10", "ISOLATIN10", "CSLATIN10", "CSISOLATIN10", NULL +}; + +char* VARIANT_BALTIC[] = { + "BALTIC", "CSBALTIC", "ISO-IR-179", NULL +}; + +char* VARIANT_IBM852[] = { + "IBM852", "CP852", "CP-852", "CP_852", "852", "IBM-852", "IBM_852", + "PC852", "CSPC852", "CSPCP852", NULL +}; + +char* VARIANT_IBM855[] = { + "IBM855", "CP855", "CP-855", "CP_855", "855", "IBM-855", "IBM_855", + "PC855", "CSPC855", "CSPCP855", NULL +}; + +char* VARIANT_IBM775[] = { + "IBM775", "CP775", "CP-775", "CP_775", "775", "IBM-775", "IBM_775", + "PC775", "CSPC775", "CSPCP775", NULL +}; + +char* VARIANT_IBM866[] = { + "IBM866", "CP866", "CP-866", "CP_866", "866", "IBM-866", "IBM_866", + "PC866", "CSPC866", "CSPCP866", NULL +}; + +char* VARIANT_CP1125[] = { + "CP1125", "1125", "CP-1125", "CP_1125", "MS1125", "MS-1125", + "WINDOWS-1125", NULL +}; + +char* VARIANT_CP1250[] = { + "CP1250", "1250", "CP-1250", "CP_1250", "MS-EE", "MS1250", "MS-1250", + "WINDOWS-1250", NULL +}; + +char* VARIANT_CP1251[] = { + "CP1251", "1251", "CP-1251", "CP_1251", "MS-CYRL", "MS1251", "MS-1251", + "WINDOWS-1251", NULL +}; + +char* VARIANT_CP1257[] = { + "CP1257", "1257", "CP-1257", "CP_1257", "MS-BALT", "MS1257", "MS-1257", + "WINDOWS-1257", "WinBaltRim", NULL +}; + +char* VARIANT_MACCE[] = { + "MACCE", "MAC-CE", "MAC_CE", "MACINTOSH-CE", "MACEE", "MAC-EE", "MAC_EE", + "MACINTOSH-EE", NULL +}; + +char* VARIANT_MACCYR[] = { + "MACCYR", "MAC-CYR", "MAC_CYR", "MACINTOSH-CYR", "MACCYRILLIC", + "MAC-CYRILLIC", "MACINTOSH-CYRILLIC", NULL +}; + +char* VARIANT_KOI8CS2[] = { + "KOI8-CS2", "KOI8CS2", "KOI8_CS2", "KOI-8_CS2", "KOI8CS", "KOI8_CS", + "KOI8-CS", "KOI-8-CS", "KOI_8-CS", "CSKOI8CS2", NULL +}; + +char* VARIANT_KOI8R[] = { + "KOI8-R", "KOI8_R", "KOI-8_R", "KOI8R", "KOI8_R", "CSKOI8R", NULL +}; + +char* VARIANT_KOI8U[] = { + "KOI8-U", "KOI8_U", "KOI-8_U", "KOI8U", "KOI8_U", "CSKOI8U", NULL +}; + +char* VARIANT_KOI8UNI[] = { + "KOI8-UNI", "KOI8_UNI", "KOI-8_UNI", "KOI8UNI", "KOI8_UNI", "CSKOI8UNI", + NULL +}; + +char* VARIANT_ECMA113[] = { + "ECMA-113", "ECMA-cyrillic", "ECMA-113:1986", "ISO-IR-111", NULL +}; + +char* VARIANT_KEYBCS2[] = { + "KEYBCS2", "KEYBCS-2", "KAM", "KAMENICKY", "CP895", "895", "PC895", + "csPC895", NULL +}; + +char* VARIANT_LATEX[] = { + "TEX", "LATEX", "LTEX", NULL +}; + +char* VARIANT_UCS2[] = { + "UCS-2", "UCS-2BE", "UCS2", "ISO10646/UCS2", "ISO-10646/UCS2", + "ISO_10646/UCS2", "CSUCS2", NULL +}; + +char* VARIANT_UCS4[] = { + "UCS-4", "UCS-4BE", "UCS4", "ISO10646/UCS4", "ISO-10646/UCS4", + "ISO_10646/UCS4", "CSUCS4", NULL +}; + +char* VARIANT_UTF7[] = { + "UTF-7", "UTF7", "ISO10646/UTF7", "ISO-10646/UTF7", "ISO_10646/UTF7", + "UNICODE/UTF7", "CSUTF7", NULL +}; + +char* VARIANT_UTF8[] = { + "UTF-8", "UTF8", "ISO10646/UTF8", "ISO-10646/UTF8", "ISO_10646/UTF8", + "UNICODE/UTF8", "CSUTF8", NULL +}; + +char* VARIANT_CORK[] = { + "CORK", "T1", NULL +}; + +char* VARIANT_GBK[] = { + "GBK", "GB18030", "GB2312", "CP936", NULL +}; + +char* VARIANT_BIG5[] = { + "BIG5", "CP950", NULL +}; + +char* VARIANT_HZ[] = { + "HZ", "HZ-GB-2312", "GB18030", "GB2312", NULL +}; + +typedef struct S_EncList { + char *enc; + struct S_EncList *next; +} T_EncList, *P_EncList; + +/* for the case we would be linked with braindead librecode */ +char *program_name = "iconvcap"; + +char *FROM, *TO; + +/* Local protoypes. */ +static int iconv_check (char **fromlist, + char **tolist); +static int iconv_check_one (char *from, + char *to); +static int check_transitivity (char *fname); + +/* main() */ +int +main(int argc, char *argv[]) +{ + int ok; + char *unicode[] = { NULL, NULL }; + + /* when we are called with some argument, run transitivity test and exit */ + if (argc > 1) return check_transitivity(argv[1]); + + /* check for conversion ISO-8859-1 -> Unicode */ + fprintf(stderr, "iconvcap: checking for ISO8859-1 -> Unicode... "); + if ((ok = iconv_check(VARIANT_ISO88591, VARIANT_UNICODE)) == 0) { + unicode[0] = TO; + printf("#define "DPREFIX"UNICODE \"%s\"\n", unicode[0]); + } else { + fprintf(stderr, "iconvcap: iconv seems to be broken. aborting.\n"); + exit(1); + } + + /* create table of charset names how iconv uses them */ + ok = 0; + TEST_ENC_TO_UNICODE(ASCII); + TEST_ENC_TO_UNICODE(BALTIC); + TEST_ENC_TO_UNICODE(CP1125); + TEST_ENC_TO_UNICODE(CP1250); + TEST_ENC_TO_UNICODE(CP1251); + TEST_ENC_TO_UNICODE(CP1257); + TEST_ENC_TO_UNICODE(ECMA113); + TEST_ENC_TO_UNICODE(IBM852); + TEST_ENC_TO_UNICODE(IBM855); + TEST_ENC_TO_UNICODE(IBM775); + TEST_ENC_TO_UNICODE(IBM866); + TEST_ENC_TO_UNICODE(ISO88592); + TEST_ENC_TO_UNICODE(ISO88594); + TEST_ENC_TO_UNICODE(ISO88595); + TEST_ENC_TO_UNICODE(ISO885913); + TEST_ENC_TO_UNICODE(ISO885916); + TEST_ENC_TO_UNICODE(KEYBCS2); + TEST_ENC_TO_UNICODE(KOI8CS2); + TEST_ENC_TO_UNICODE(KOI8R); + TEST_ENC_TO_UNICODE(KOI8U); + TEST_ENC_TO_UNICODE(KOI8UNI); + TEST_ENC_TO_UNICODE(MACCE); + TEST_ENC_TO_UNICODE(MACCYR); + TEST_ENC_TO_UNICODE(LATEX); + TEST_ENC_TO_UNICODE(UCS2); + TEST_ENC_TO_UNICODE(UCS4); + TEST_ENC_TO_UNICODE(UTF7); + TEST_ENC_TO_UNICODE(UTF8); + TEST_ENC_TO_UNICODE(CORK); + TEST_ENC_TO_UNICODE(GBK); + TEST_ENC_TO_UNICODE(BIG5); + TEST_ENC_TO_UNICODE(HZ); + + if (ok >= 2) exit(0); + else exit(1); +} + +/* return 0 if conversion from any charset from fromlist to any charset from + tolist is possible and set FROM and TO (globals) to appropriate names + (it's assumed fromlist and tolist are lists of charset aliases) */ +static int +iconv_check(char **fromlist, char **tolist) +{ + char **from, **to; + + for (from = fromlist; *from != NULL; from++) { + for (to = tolist; *to != NULL; to++) { + if (iconv_check_one(*from, *to) == 0) { + fprintf(stderr, "found %s -> %s\n", *from, *to); + FROM = *from; + TO = *to; + return 0; + } + } + } + fprintf(stderr, "failed.\n"); + FROM = NULL; + TO = NULL; + return 1; +} + +/* check if conversion from any encoding not defined as NULL in file fname + to any other defined there is possible, in other words check transitivity + condition for all defined encodings (we then hope this condition holds + also for encodings we don't know anything about) + returns 0 on success 1 on failure */ +static int +check_transitivity(char *fname) +{ + char *s, *sb, *se; + FILE *f; + P_EncList enclist = NULL; + P_EncList p_e; + + + s = (char*)malloc(1024); + if ((f = fopen(fname, "r")) == NULL) { + fprintf(stderr, "iconvcap: cannot open %s\n", fname); + free(s); + return 1; + } + + while (fgets(s, 1024, f) != NULL) { + p_e = (P_EncList)malloc(sizeof(T_EncList)); + if (strncmp(s, "#define", 7) != 0) { + fprintf(stderr, "iconvcap: malformed input line: %s", s); + fclose(f); + free(s); + free(p_e); + return 1; + } + if ((sb = strchr(s, '"')) != NULL) { + if ((se = strrchr(s, '"')) == sb) { + fprintf(stderr, "iconvcap: malformed input line: %s", s); + fclose(f); + free(s); + free(p_e); + return 1; + } + + p_e->enc = strncpy((char*)malloc(se-sb), sb+1, se-sb-1); + p_e->enc[se-sb-1] = '\0'; + p_e->next = enclist; + enclist = p_e; + } + } + fclose(f); + + if (enclist == NULL) { + fprintf(stderr, "no valid encodings\n"); + free(s); + return 1; + } + + while (enclist != NULL) { + for (p_e = enclist->next; p_e != NULL; p_e = p_e->next) { + if (iconv_check_one(enclist->enc, p_e->enc) != 0) { + fprintf(stderr, "iconvap: iconv_open(%s, %s) failed\n", + enclist->enc, p_e->enc); + free(s); + return 1; + } + if (iconv_check_one(p_e->enc, enclist->enc) != 0) { + fprintf(stderr, "iconvcap: iconv_open(%s, %s) failed\n", + p_e->enc, enclist->enc); + free(s); + return 1; + } + } + enclist = enclist->next; + } + + fprintf(stderr, "iconvcap: transitivity OK\n"); + free(s); + return 0; +} + +/* check whether conversion from `from' to `to' is possible */ +static int +iconv_check_one(char *from, char *to) +{ + iconv_t id; + + id = iconv_open(from, to); + if (id == (iconv_t)(-1)) return 1; + iconv_close(id); + return 0; +} + diff --git a/wlx/wayland_qt_base/build/enca-1.19/iconvenc.h b/wlx/wayland_qt_base/build/enca-1.19/iconvenc.h new file mode 100644 index 0000000..bdf40d2 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/iconvenc.h @@ -0,0 +1,33 @@ +#define ICONV_NAME_UNICODE "UCS2" +#define ICONV_NAME_ASCII "ASCII" +#define ICONV_NAME_BALTIC "BALTIC" +#define ICONV_NAME_CP1125 "CP1125" +#define ICONV_NAME_CP1250 "CP1250" +#define ICONV_NAME_CP1251 "CP1251" +#define ICONV_NAME_CP1257 "CP1257" +#define ICONV_NAME_ECMA113 "ECMA-cyrillic" +#define ICONV_NAME_IBM852 "IBM852" +#define ICONV_NAME_IBM855 "IBM855" +#define ICONV_NAME_IBM775 "IBM775" +#define ICONV_NAME_IBM866 "IBM866" +#define ICONV_NAME_ISO88592 "ISO-8859-2" +#define ICONV_NAME_ISO88594 "ISO-8859-4" +#define ICONV_NAME_ISO88595 "ISO-8859-5" +#define ICONV_NAME_ISO885913 "ISO-8859-13" +#define ICONV_NAME_ISO885916 "ISO-8859-16" +#define ICONV_NAME_KEYBCS2 NULL +#define ICONV_NAME_KOI8CS2 NULL +#define ICONV_NAME_KOI8R "KOI8-R" +#define ICONV_NAME_KOI8U "KOI8-U" +#define ICONV_NAME_KOI8UNI NULL +#define ICONV_NAME_MACCE NULL +#define ICONV_NAME_MACCYR "MACCYRILLIC" +#define ICONV_NAME_LATEX NULL +#define ICONV_NAME_UCS2 "UCS-2" +#define ICONV_NAME_UCS4 "UCS-4" +#define ICONV_NAME_UTF7 "UTF-7" +#define ICONV_NAME_UTF8 "UTF-8" +#define ICONV_NAME_CORK NULL +#define ICONV_NAME_GBK "GBK" +#define ICONV_NAME_BIG5 "BIG5" +#define ICONV_NAME_HZ "GB18030" diff --git a/wlx/wayland_qt_base/build/enca-1.19/install-sh b/wlx/wayland_qt_base/build/enca-1.19/install-sh new file mode 100755 index 0000000..59990a1 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/install-sh @@ -0,0 +1,508 @@ +#!/bin/sh +# install - install a program, script, or datafile + +scriptversion=2014-09-12.12; # UTC + +# This originates from X11R5 (mit/util/scripts/install.sh), which was +# later released in X11R6 (xc/config/util/install.sh) with the +# following copyright and license. +# +# Copyright (C) 1994 X Consortium +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- +# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name of the X Consortium shall not +# be used in advertising or otherwise to promote the sale, use or other deal- +# ings in this Software without prior written authorization from the X Consor- +# tium. +# +# +# FSF changes to this file are in the public domain. +# +# Calling this script install-sh is preferred over install.sh, to prevent +# 'make' implicit rules from creating a file called install from it +# when there is no Makefile. +# +# This script is compatible with the BSD install script, but was written +# from scratch. + +tab=' ' +nl=' +' +IFS=" $tab$nl" + +# Set DOITPROG to "echo" to test this script. + +doit=${DOITPROG-} +doit_exec=${doit:-exec} + +# Put in absolute file names if you don't have them in your path; +# or use environment vars. + +chgrpprog=${CHGRPPROG-chgrp} +chmodprog=${CHMODPROG-chmod} +chownprog=${CHOWNPROG-chown} +cmpprog=${CMPPROG-cmp} +cpprog=${CPPROG-cp} +mkdirprog=${MKDIRPROG-mkdir} +mvprog=${MVPROG-mv} +rmprog=${RMPROG-rm} +stripprog=${STRIPPROG-strip} + +posix_mkdir= + +# Desired mode of installed file. +mode=0755 + +chgrpcmd= +chmodcmd=$chmodprog +chowncmd= +mvcmd=$mvprog +rmcmd="$rmprog -f" +stripcmd= + +src= +dst= +dir_arg= +dst_arg= + +copy_on_change=false +is_target_a_directory=possibly + +usage="\ +Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE + or: $0 [OPTION]... SRCFILES... DIRECTORY + or: $0 [OPTION]... -t DIRECTORY SRCFILES... + or: $0 [OPTION]... -d DIRECTORIES... + +In the 1st form, copy SRCFILE to DSTFILE. +In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. +In the 4th, create DIRECTORIES. + +Options: + --help display this help and exit. + --version display version info and exit. + + -c (ignored) + -C install only if different (preserve the last data modification time) + -d create directories instead of installing files. + -g GROUP $chgrpprog installed files to GROUP. + -m MODE $chmodprog installed files to MODE. + -o USER $chownprog installed files to USER. + -s $stripprog installed files. + -t DIRECTORY install into DIRECTORY. + -T report an error if DSTFILE is a directory. + +Environment variables override the default commands: + CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG + RMPROG STRIPPROG +" + +while test $# -ne 0; do + case $1 in + -c) ;; + + -C) copy_on_change=true;; + + -d) dir_arg=true;; + + -g) chgrpcmd="$chgrpprog $2" + shift;; + + --help) echo "$usage"; exit $?;; + + -m) mode=$2 + case $mode in + *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) + echo "$0: invalid mode: $mode" >&2 + exit 1;; + esac + shift;; + + -o) chowncmd="$chownprog $2" + shift;; + + -s) stripcmd=$stripprog;; + + -t) + is_target_a_directory=always + dst_arg=$2 + # Protect names problematic for 'test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + shift;; + + -T) is_target_a_directory=never;; + + --version) echo "$0 $scriptversion"; exit $?;; + + --) shift + break;; + + -*) echo "$0: invalid option: $1" >&2 + exit 1;; + + *) break;; + esac + shift +done + +# We allow the use of options -d and -T together, by making -d +# take the precedence; this is for compatibility with GNU install. + +if test -n "$dir_arg"; then + if test -n "$dst_arg"; then + echo "$0: target directory not allowed when installing a directory." >&2 + exit 1 + fi +fi + +if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then + # When -d is used, all remaining arguments are directories to create. + # When -t is used, the destination is already specified. + # Otherwise, the last argument is the destination. Remove it from $@. + for arg + do + if test -n "$dst_arg"; then + # $@ is not empty: it contains at least $arg. + set fnord "$@" "$dst_arg" + shift # fnord + fi + shift # arg + dst_arg=$arg + # Protect names problematic for 'test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + done +fi + +if test $# -eq 0; then + if test -z "$dir_arg"; then + echo "$0: no input file specified." >&2 + exit 1 + fi + # It's OK to call 'install-sh -d' without argument. + # This can happen when creating conditional directories. + exit 0 +fi + +if test -z "$dir_arg"; then + if test $# -gt 1 || test "$is_target_a_directory" = always; then + if test ! -d "$dst_arg"; then + echo "$0: $dst_arg: Is not a directory." >&2 + exit 1 + fi + fi +fi + +if test -z "$dir_arg"; then + do_exit='(exit $ret); exit $ret' + trap "ret=129; $do_exit" 1 + trap "ret=130; $do_exit" 2 + trap "ret=141; $do_exit" 13 + trap "ret=143; $do_exit" 15 + + # Set umask so as not to create temps with too-generous modes. + # However, 'strip' requires both read and write access to temps. + case $mode in + # Optimize common cases. + *644) cp_umask=133;; + *755) cp_umask=22;; + + *[0-7]) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw='% 200' + fi + cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; + *) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw=,u+rw + fi + cp_umask=$mode$u_plus_rw;; + esac +fi + +for src +do + # Protect names problematic for 'test' and other utilities. + case $src in + -* | [=\(\)!]) src=./$src;; + esac + + if test -n "$dir_arg"; then + dst=$src + dstdir=$dst + test -d "$dstdir" + dstdir_status=$? + else + + # Waiting for this to be detected by the "$cpprog $src $dsttmp" command + # might cause directories to be created, which would be especially bad + # if $src (and thus $dsttmp) contains '*'. + if test ! -f "$src" && test ! -d "$src"; then + echo "$0: $src does not exist." >&2 + exit 1 + fi + + if test -z "$dst_arg"; then + echo "$0: no destination specified." >&2 + exit 1 + fi + dst=$dst_arg + + # If destination is a directory, append the input filename; won't work + # if double slashes aren't ignored. + if test -d "$dst"; then + if test "$is_target_a_directory" = never; then + echo "$0: $dst_arg: Is a directory" >&2 + exit 1 + fi + dstdir=$dst + dst=$dstdir/`basename "$src"` + dstdir_status=0 + else + dstdir=`dirname "$dst"` + test -d "$dstdir" + dstdir_status=$? + fi + fi + + obsolete_mkdir_used=false + + if test $dstdir_status != 0; then + case $posix_mkdir in + '') + # Create intermediate dirs using mode 755 as modified by the umask. + # This is like FreeBSD 'install' as of 1997-10-28. + umask=`umask` + case $stripcmd.$umask in + # Optimize common cases. + *[2367][2367]) mkdir_umask=$umask;; + .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; + + *[0-7]) + mkdir_umask=`expr $umask + 22 \ + - $umask % 100 % 40 + $umask % 20 \ + - $umask % 10 % 4 + $umask % 2 + `;; + *) mkdir_umask=$umask,go-w;; + esac + + # With -d, create the new directory with the user-specified mode. + # Otherwise, rely on $mkdir_umask. + if test -n "$dir_arg"; then + mkdir_mode=-m$mode + else + mkdir_mode= + fi + + posix_mkdir=false + case $umask in + *[123567][0-7][0-7]) + # POSIX mkdir -p sets u+wx bits regardless of umask, which + # is incompatible with FreeBSD 'install' when (umask & 300) != 0. + ;; + *) + # $RANDOM is not portable (e.g. dash); use it when possible to + # lower collision chance + tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ + trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 + + # As "mkdir -p" follows symlinks and we work in /tmp possibly; so + # create the $tmpdir first (and fail if unsuccessful) to make sure + # that nobody tries to guess the $tmpdir name. + if (umask $mkdir_umask && + $mkdirprog $mkdir_mode "$tmpdir" && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 + then + if test -z "$dir_arg" || { + # Check for POSIX incompatibilities with -m. + # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or + # other-writable bit of parent directory when it shouldn't. + # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. + test_tmpdir="$tmpdir/a" + ls_ld_tmpdir=`ls -ld "$test_tmpdir"` + case $ls_ld_tmpdir in + d????-?r-*) different_mode=700;; + d????-?--*) different_mode=755;; + *) false;; + esac && + $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` + test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" + } + } + then posix_mkdir=: + fi + rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" + else + # Remove any dirs left behind by ancient mkdir implementations. + rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null + fi + trap '' 0;; + esac;; + esac + + if + $posix_mkdir && ( + umask $mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" + ) + then : + else + + # The umask is ridiculous, or mkdir does not conform to POSIX, + # or it failed possibly due to a race condition. Create the + # directory the slow way, step by step, checking for races as we go. + + case $dstdir in + /*) prefix='/';; + [-=\(\)!]*) prefix='./';; + *) prefix='';; + esac + + oIFS=$IFS + IFS=/ + set -f + set fnord $dstdir + shift + set +f + IFS=$oIFS + + prefixes= + + for d + do + test X"$d" = X && continue + + prefix=$prefix$d + if test -d "$prefix"; then + prefixes= + else + if $posix_mkdir; then + (umask=$mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break + # Don't fail if two instances are running concurrently. + test -d "$prefix" || exit 1 + else + case $prefix in + *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; + *) qprefix=$prefix;; + esac + prefixes="$prefixes '$qprefix'" + fi + fi + prefix=$prefix/ + done + + if test -n "$prefixes"; then + # Don't fail if two instances are running concurrently. + (umask $mkdir_umask && + eval "\$doit_exec \$mkdirprog $prefixes") || + test -d "$dstdir" || exit 1 + obsolete_mkdir_used=true + fi + fi + fi + + if test -n "$dir_arg"; then + { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && + { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || + test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 + else + + # Make a couple of temp file names in the proper directory. + dsttmp=$dstdir/_inst.$$_ + rmtmp=$dstdir/_rm.$$_ + + # Trap to clean up those temp files at exit. + trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 + + # Copy the file name to the temp name. + (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && + + # and set any options; do chmod last to preserve setuid bits. + # + # If any of these fail, we abort the whole thing. If we want to + # ignore errors from any of these, just make sure not to ignore + # errors from the above "$doit $cpprog $src $dsttmp" command. + # + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && + { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && + { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && + + # If -C, don't bother to copy if it wouldn't change the file. + if $copy_on_change && + old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && + new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && + set -f && + set X $old && old=:$2:$4:$5:$6 && + set X $new && new=:$2:$4:$5:$6 && + set +f && + test "$old" = "$new" && + $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 + then + rm -f "$dsttmp" + else + # Rename the file to the real destination. + $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || + + # The rename failed, perhaps because mv can't rename something else + # to itself, or perhaps because mv is so ancient that it does not + # support -f. + { + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + test ! -f "$dst" || + $doit $rmcmd -f "$dst" 2>/dev/null || + { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && + { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + } || + { echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dst" + } + fi || exit 1 + + trap '' 0 + fi +done + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/common.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/common.Plo new file mode 100644 index 0000000..c384035 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/common.Plo @@ -0,0 +1,85 @@ +common.lo: common.c /usr/include/stdc-predef.h ../config.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h +/usr/include/stdc-predef.h: +../config.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/ctype.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/ctype.Plo new file mode 100644 index 0000000..a3a9a09 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/ctype.Plo @@ -0,0 +1,84 @@ +ctype.lo: ctype.c /usr/include/stdc-predef.h ../config.h internal.h \ + /usr/include/assert.h /usr/include/features.h \ + /usr/include/features-time64.h /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h enca.h /usr/include/stdlib.h \ + /usr/include/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/memory.h +/usr/include/stdc-predef.h: +../config.h: +internal.h: +/usr/include/assert.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/enca.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/enca.Plo new file mode 100644 index 0000000..f37739c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/enca.Plo @@ -0,0 +1,83 @@ +enca.lo: enca.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/encnames.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/encnames.Plo new file mode 100644 index 0000000..66bd0fb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/encnames.Plo @@ -0,0 +1,85 @@ +encnames.lo: encnames.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../tools/encodings.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../tools/encodings.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/filters.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/filters.Plo new file mode 100644 index 0000000..2cda983 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/filters.Plo @@ -0,0 +1,100 @@ +filters.lo: filters.c /usr/include/stdc-predef.h ../config.h \ + /usr/include/math.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h enca.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h +/usr/include/stdc-predef.h: +../config.h: +/usr/include/math.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/include/bits/math-vector.h: +/usr/include/bits/libm-simd-decl-stubs.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/flt-eval-method.h: +/usr/include/bits/fp-logb.h: +/usr/include/bits/fp-fast.h: +/usr/include/bits/mathcalls-macros.h: +/usr/include/bits/mathcalls-helper-functions.h: +/usr/include/bits/mathcalls.h: +/usr/include/bits/mathcalls-narrow.h: +/usr/include/bits/iscanonical.h: +enca.h: +/usr/include/stdlib.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/guess.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/guess.Plo new file mode 100644 index 0000000..8c875dc --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/guess.Plo @@ -0,0 +1,100 @@ +guess.lo: guess.c /usr/include/stdc-predef.h ../config.h \ + /usr/include/math.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h enca.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h +/usr/include/stdc-predef.h: +../config.h: +/usr/include/math.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/include/bits/math-vector.h: +/usr/include/bits/libm-simd-decl-stubs.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/flt-eval-method.h: +/usr/include/bits/fp-logb.h: +/usr/include/bits/fp-fast.h: +/usr/include/bits/mathcalls-macros.h: +/usr/include/bits/mathcalls-helper-functions.h: +/usr/include/bits/mathcalls.h: +/usr/include/bits/mathcalls-narrow.h: +/usr/include/bits/iscanonical.h: +enca.h: +/usr/include/stdlib.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang.Plo new file mode 100644 index 0000000..8b07090 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang.Plo @@ -0,0 +1,83 @@ +lang.lo: lang.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_be.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_be.Plo new file mode 100644 index 0000000..38d27a7 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_be.Plo @@ -0,0 +1,85 @@ +lang_be.lo: lang_be.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/belarusian/belarusian.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/belarusian/belarusian.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_bg.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_bg.Plo new file mode 100644 index 0000000..2b01078 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_bg.Plo @@ -0,0 +1,85 @@ +lang_bg.lo: lang_bg.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/bulgarian/bulgarian.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/bulgarian/bulgarian.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_cs.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_cs.Plo new file mode 100644 index 0000000..fccc23b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_cs.Plo @@ -0,0 +1,85 @@ +lang_cs.lo: lang_cs.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/czech/czech.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/czech/czech.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_et.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_et.Plo new file mode 100644 index 0000000..70eec16 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_et.Plo @@ -0,0 +1,85 @@ +lang_et.lo: lang_et.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/estonian/estonian.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/estonian/estonian.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_hr.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_hr.Plo new file mode 100644 index 0000000..8eb0257 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_hr.Plo @@ -0,0 +1,85 @@ +lang_hr.lo: lang_hr.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/croatian/croatian.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/croatian/croatian.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_hu.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_hu.Plo new file mode 100644 index 0000000..3356029 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_hu.Plo @@ -0,0 +1,85 @@ +lang_hu.lo: lang_hu.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/hungarian/hungarian.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/hungarian/hungarian.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_lt.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_lt.Plo new file mode 100644 index 0000000..878cf19 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_lt.Plo @@ -0,0 +1,85 @@ +lang_lt.lo: lang_lt.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/lithuanian/lithuanian.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/lithuanian/lithuanian.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_lv.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_lv.Plo new file mode 100644 index 0000000..d8f66aa --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_lv.Plo @@ -0,0 +1,85 @@ +lang_lv.lo: lang_lv.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/latvian/latvian.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/latvian/latvian.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_pl.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_pl.Plo new file mode 100644 index 0000000..8a8fca0 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_pl.Plo @@ -0,0 +1,85 @@ +lang_pl.lo: lang_pl.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/polish/polish.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/polish/polish.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_ru.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_ru.Plo new file mode 100644 index 0000000..cdde0be --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_ru.Plo @@ -0,0 +1,85 @@ +lang_ru.lo: lang_ru.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/russian/russian.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/russian/russian.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_sk.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_sk.Plo new file mode 100644 index 0000000..5381637 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_sk.Plo @@ -0,0 +1,85 @@ +lang_sk.lo: lang_sk.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/slovak/slovak.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/slovak/slovak.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_sl.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_sl.Plo new file mode 100644 index 0000000..3f67617 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_sl.Plo @@ -0,0 +1,85 @@ +lang_sl.lo: lang_sl.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/slovene/slovene.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/slovene/slovene.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_uk.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_uk.Plo new file mode 100644 index 0000000..3caa258 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_uk.Plo @@ -0,0 +1,85 @@ +lang_uk.lo: lang_uk.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/ukrainian/ukrainian.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/ukrainian/ukrainian.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_zh.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_zh.Plo new file mode 100644 index 0000000..0abc006 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/lang_zh.Plo @@ -0,0 +1,88 @@ +lang_zh.lo: lang_zh.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + ../data/chinese/chinese.h ../data/chinese/zh_weight_gbk.h \ + ../data/chinese/zh_weight_big5.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +../data/chinese/chinese.h: +../data/chinese/zh_weight_gbk.h: +../data/chinese/zh_weight_big5.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/multibyte.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/multibyte.Plo new file mode 100644 index 0000000..313cc4b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/multibyte.Plo @@ -0,0 +1,100 @@ +multibyte.lo: multibyte.c /usr/include/stdc-predef.h ../config.h \ + /usr/include/math.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h enca.h /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h +/usr/include/stdc-predef.h: +../config.h: +/usr/include/math.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/include/bits/math-vector.h: +/usr/include/bits/libm-simd-decl-stubs.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/flt-eval-method.h: +/usr/include/bits/fp-logb.h: +/usr/include/bits/fp-fast.h: +/usr/include/bits/mathcalls-macros.h: +/usr/include/bits/mathcalls-helper-functions.h: +/usr/include/bits/mathcalls.h: +/usr/include/bits/mathcalls-narrow.h: +/usr/include/bits/iscanonical.h: +enca.h: +/usr/include/stdlib.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/pair.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/pair.Plo new file mode 100644 index 0000000..a5144fd --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/pair.Plo @@ -0,0 +1,100 @@ +pair.lo: pair.c /usr/include/stdc-predef.h ../config.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h enca.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h +/usr/include/stdc-predef.h: +../config.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/math.h: +/usr/include/bits/math-vector.h: +/usr/include/bits/libm-simd-decl-stubs.h: +/usr/include/bits/flt-eval-method.h: +/usr/include/bits/fp-logb.h: +/usr/include/bits/fp-fast.h: +/usr/include/bits/mathcalls-macros.h: +/usr/include/bits/mathcalls-helper-functions.h: +/usr/include/bits/mathcalls.h: +/usr/include/bits/mathcalls-narrow.h: +/usr/include/bits/iscanonical.h: +enca.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/unicodemap.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/unicodemap.Plo new file mode 100644 index 0000000..45f08be --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/unicodemap.Plo @@ -0,0 +1,83 @@ +unicodemap.lo: unicodemap.c /usr/include/stdc-predef.h ../config.h enca.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h +/usr/include/stdc-predef.h: +../config.h: +enca.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/utf8_double.Plo b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/utf8_double.Plo new file mode 100644 index 0000000..ea066e3 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.deps/utf8_double.Plo @@ -0,0 +1,100 @@ +utf8_double.lo: utf8_double.c /usr/include/stdc-predef.h ../config.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/math.h \ + /usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \ + /usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \ + /usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h enca.h internal.h /usr/include/assert.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h +/usr/include/stdc-predef.h: +../config.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/math.h: +/usr/include/bits/math-vector.h: +/usr/include/bits/libm-simd-decl-stubs.h: +/usr/include/bits/flt-eval-method.h: +/usr/include/bits/fp-logb.h: +/usr/include/bits/fp-fast.h: +/usr/include/bits/mathcalls-macros.h: +/usr/include/bits/mathcalls-helper-functions.h: +/usr/include/bits/mathcalls.h: +/usr/include/bits/mathcalls-narrow.h: +/usr/include/bits/iscanonical.h: +enca.h: +internal.h: +/usr/include/assert.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.libs/libenca.a b/wlx/wayland_qt_base/build/enca-1.19/lib/.libs/libenca.a new file mode 100644 index 0000000..19c6c8e Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/.libs/libenca.a differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.libs/libenca.la b/wlx/wayland_qt_base/build/enca-1.19/lib/.libs/libenca.la new file mode 120000 index 0000000..2bd1f60 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.libs/libenca.la @@ -0,0 +1 @@ +../libenca.la \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/.libs/libenca.lai b/wlx/wayland_qt_base/build/enca-1.19/lib/.libs/libenca.lai new file mode 100644 index 0000000..1ce49ed --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/.libs/libenca.lai @@ -0,0 +1,41 @@ +# libenca.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libenca.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' -lm' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libenca. +current=5 +age=5 +revision=1 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/usr/local/lib' diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/Makefile b/wlx/wayland_qt_base/build/enca-1.19/lib/Makefile new file mode 100644 index 0000000..fe31d9f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/Makefile @@ -0,0 +1,764 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# lib/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + + + +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/enca +pkgincludedir = $(includedir)/enca +pkglibdir = $(libdir)/enca +pkglibexecdir = $(libexecdir)/enca +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-pc-linux-gnu +host_triplet = x86_64-pc-linux-gnu +subdir = lib +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(include_HEADERS) \ + $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libenca_la_LIBADD = +am_libenca_la_OBJECTS = common.lo ctype.lo enca.lo encnames.lo \ + filters.lo guess.lo lang.lo lang_be.lo lang_bg.lo lang_cs.lo \ + lang_et.lo lang_hr.lo lang_hu.lo lang_lt.lo lang_lv.lo \ + lang_pl.lo lang_ru.lo lang_sk.lo lang_sl.lo lang_uk.lo \ + lang_zh.lo multibyte.lo pair.lo unicodemap.lo utf8_double.lo +libenca_la_OBJECTS = $(am_libenca_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libenca_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libenca_la_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libenca_la_SOURCES) +DIST_SOURCES = $(libenca_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +HEADERS = $(include_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ + $(top_srcdir)/mkinstalldirs +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing aclocal-1.15 -I m4 +AMTAR = $${TAR-tar} +AM_DEFAULT_VERBOSITY = 1 +AR = ar +AUTOCONF = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoconf +AUTOHEADER = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoheader +AUTOMAKE = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing automake-1.15 +AWK = gawk +CC = /usr/bin/cc +CCDEPMODE = depmode=gcc3 +CFLAGS = -Wall -Wextra -W -pedantic -g -O2 +CONVERTER_LIBS = +CPP = /usr/bin/cc -E +CPPFLAGS = +CSTOCS_PROG = +CYGPATH_W = echo +DEFAULT_CONVERTER_LIST = built-in,iconv +DEFAULT_EXTERNAL_CONVERTER = recode +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +FGREP = /usr/bin/grep -F +GCOV = /usr/bin/gcov +GCOV_CPPFLAGS = +GCOV_FLAGS = +GCOV_LDFLAGS = +GREP = /usr/bin/grep +GTKDOC = false +HTML_DIR = ${datarootdir}/gtk-doc/html +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBICONV = +LIBM = -lm +LIBOBJS = +LIBS = -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LN_S = ln -s +LTLIBICONV = +LTLIBOBJS = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing makeinfo +MANIFEST_TOOL = : +MAP_PROG = +MKDIR_P = /usr/bin/mkdir -p +MKTEMP_PROG = /usr/bin/mktemp +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = enca +PACKAGE_BUGREPORT = https://github.com/nijel/enca/issues +PACKAGE_NAME = Enca +PACKAGE_STRING = Enca 1.19 +PACKAGE_TARNAME = enca +PACKAGE_URL = +PACKAGE_VERSION = 1.19 +PATH_SEPARATOR = : +PICONV_PROG = /usr/bin/core_perl/piconv +RANLIB = ranlib +RECODE_PROG = /usr/bin/recode +RELEASE = 1 +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SHELL_RANDOM_FILENAME = `/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` +STRIP = strip +UMAP_PROG = +VERSION = 1.19 +abs_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/lib +abs_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/lib +abs_top_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +abs_top_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +ac_ct_AR = ar +ac_ct_CC = /usr/bin/cc +ac_ct_DUMPBIN = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-pc-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = pc +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} +dvidir = ${docdir} +exec_prefix = ${prefix} +host = x86_64-pc-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = pc +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /usr/local +program_transform_name = s,x,x, +psdir = ${docdir} +runstatedir = ${localstatedir}/run +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = . +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = .. +include_HEADERS = enca.h +lib_LTLIBRARIES = libenca.la + +# In following order do: +# Any code change C: R++: A +# Any iface change C++: 0: A +# Adding ifaces C: R: A++ +# Changing ifaces C: R: 0 +libenca_la_LDFLAGS = -version-info 5:1:5 +libenca_la_SOURCES = \ + common.c \ + ctype.c \ + enca.c \ + enca.h \ + encnames.c \ + filters.c \ + guess.c \ + internal.h \ + lang.c \ + lang_be.c \ + lang_bg.c \ + lang_cs.c \ + lang_et.c \ + lang_hr.c \ + lang_hu.c \ + lang_lt.c \ + lang_lv.c \ + lang_pl.c \ + lang_ru.c \ + lang_sk.c \ + lang_sl.c \ + lang_uk.c \ + lang_zh.c \ + multibyte.c \ + pair.c \ + unicodemap.c \ + utf8_double.c + +AM_CPPFLAGS = -I$(top_srcdir) $(GCOV_CPPFLAGS) +AM_LDFLAGS = $(GCOV_LDFLAGS) +AM_CFLAGS = $(GCOV_FLAGS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits lib/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits lib/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libenca.la: $(libenca_la_OBJECTS) $(libenca_la_DEPENDENCIES) $(EXTRA_libenca_la_DEPENDENCIES) + $(AM_V_CCLD)$(libenca_la_LINK) -rpath $(libdir) $(libenca_la_OBJECTS) $(libenca_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/common.Plo +include ./$(DEPDIR)/ctype.Plo +include ./$(DEPDIR)/enca.Plo +include ./$(DEPDIR)/encnames.Plo +include ./$(DEPDIR)/filters.Plo +include ./$(DEPDIR)/guess.Plo +include ./$(DEPDIR)/lang.Plo +include ./$(DEPDIR)/lang_be.Plo +include ./$(DEPDIR)/lang_bg.Plo +include ./$(DEPDIR)/lang_cs.Plo +include ./$(DEPDIR)/lang_et.Plo +include ./$(DEPDIR)/lang_hr.Plo +include ./$(DEPDIR)/lang_hu.Plo +include ./$(DEPDIR)/lang_lt.Plo +include ./$(DEPDIR)/lang_lv.Plo +include ./$(DEPDIR)/lang_pl.Plo +include ./$(DEPDIR)/lang_ru.Plo +include ./$(DEPDIR)/lang_sk.Plo +include ./$(DEPDIR)/lang_sl.Plo +include ./$(DEPDIR)/lang_uk.Plo +include ./$(DEPDIR)/lang_zh.Plo +include ./$(DEPDIR)/multibyte.Plo +include ./$(DEPDIR)/pair.Plo +include ./$(DEPDIR)/unicodemap.Plo +include ./$(DEPDIR)/utf8_double.Plo + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-includeHEADERS: $(include_HEADERS) + @$(NORMAL_INSTALL) + @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \ + done + +uninstall-includeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir) + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) $(HEADERS) +installdirs: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool clean-local \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-includeHEADERS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ + clean-libLTLIBRARIES clean-libtool clean-local cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am \ + install-includeHEADERS install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am uninstall-includeHEADERS \ + uninstall-libLTLIBRARIES + +.PRECIOUS: Makefile + + +clean-local: + rm -f core.* *~ + rm -f *.gc* + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/Makefile.am b/wlx/wayland_qt_base/build/enca-1.19/lib/Makefile.am new file mode 100644 index 0000000..9771adb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/Makefile.am @@ -0,0 +1,45 @@ +include_HEADERS = enca.h +lib_LTLIBRARIES = libenca.la + +# In following order do: +# Any code change C: R++: A +# Any iface change C++: 0: A +# Adding ifaces C: R: A++ +# Changing ifaces C: R: 0 +libenca_la_LDFLAGS = -version-info 5:1:5 +libenca_la_SOURCES = \ + common.c \ + ctype.c \ + enca.c \ + enca.h \ + encnames.c \ + filters.c \ + guess.c \ + internal.h \ + lang.c \ + lang_be.c \ + lang_bg.c \ + lang_cs.c \ + lang_et.c \ + lang_hr.c \ + lang_hu.c \ + lang_lt.c \ + lang_lv.c \ + lang_pl.c \ + lang_ru.c \ + lang_sk.c \ + lang_sl.c \ + lang_uk.c \ + lang_zh.c \ + multibyte.c \ + pair.c \ + unicodemap.c \ + utf8_double.c + +AM_CPPFLAGS = -I$(top_srcdir) $(GCOV_CPPFLAGS) +AM_LDFLAGS = $(GCOV_LDFLAGS) +AM_CFLAGS = $(GCOV_FLAGS) + +clean-local: + rm -f core.* *~ + rm -f *.gc* diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/Makefile.in b/wlx/wayland_qt_base/build/enca-1.19/lib/Makefile.in new file mode 100644 index 0000000..dd340e9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/Makefile.in @@ -0,0 +1,764 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = lib +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(include_HEADERS) \ + $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +libenca_la_LIBADD = +am_libenca_la_OBJECTS = common.lo ctype.lo enca.lo encnames.lo \ + filters.lo guess.lo lang.lo lang_be.lo lang_bg.lo lang_cs.lo \ + lang_et.lo lang_hr.lo lang_hu.lo lang_lt.lo lang_lv.lo \ + lang_pl.lo lang_ru.lo lang_sk.lo lang_sl.lo lang_uk.lo \ + lang_zh.lo multibyte.lo pair.lo unicodemap.lo utf8_double.lo +libenca_la_OBJECTS = $(am_libenca_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +libenca_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libenca_la_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libenca_la_SOURCES) +DIST_SOURCES = $(libenca_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +HEADERS = $(include_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ + $(top_srcdir)/mkinstalldirs +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERTER_LIBS = @CONVERTER_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CSTOCS_PROG = @CSTOCS_PROG@ +CYGPATH_W = @CYGPATH_W@ +DEFAULT_CONVERTER_LIST = @DEFAULT_CONVERTER_LIST@ +DEFAULT_EXTERNAL_CONVERTER = @DEFAULT_EXTERNAL_CONVERTER@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCOV = @GCOV@ +GCOV_CPPFLAGS = @GCOV_CPPFLAGS@ +GCOV_FLAGS = @GCOV_FLAGS@ +GCOV_LDFLAGS = @GCOV_LDFLAGS@ +GREP = @GREP@ +GTKDOC = @GTKDOC@ +HTML_DIR = @HTML_DIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBM = @LIBM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MAP_PROG = @MAP_PROG@ +MKDIR_P = @MKDIR_P@ +MKTEMP_PROG = @MKTEMP_PROG@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PICONV_PROG = @PICONV_PROG@ +RANLIB = @RANLIB@ +RECODE_PROG = @RECODE_PROG@ +RELEASE = @RELEASE@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SHELL_RANDOM_FILENAME = @SHELL_RANDOM_FILENAME@ +STRIP = @STRIP@ +UMAP_PROG = @UMAP_PROG@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +include_HEADERS = enca.h +lib_LTLIBRARIES = libenca.la + +# In following order do: +# Any code change C: R++: A +# Any iface change C++: 0: A +# Adding ifaces C: R: A++ +# Changing ifaces C: R: 0 +libenca_la_LDFLAGS = -version-info 5:1:5 +libenca_la_SOURCES = \ + common.c \ + ctype.c \ + enca.c \ + enca.h \ + encnames.c \ + filters.c \ + guess.c \ + internal.h \ + lang.c \ + lang_be.c \ + lang_bg.c \ + lang_cs.c \ + lang_et.c \ + lang_hr.c \ + lang_hu.c \ + lang_lt.c \ + lang_lv.c \ + lang_pl.c \ + lang_ru.c \ + lang_sk.c \ + lang_sl.c \ + lang_uk.c \ + lang_zh.c \ + multibyte.c \ + pair.c \ + unicodemap.c \ + utf8_double.c + +AM_CPPFLAGS = -I$(top_srcdir) $(GCOV_CPPFLAGS) +AM_LDFLAGS = $(GCOV_LDFLAGS) +AM_CFLAGS = $(GCOV_FLAGS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits lib/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits lib/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libenca.la: $(libenca_la_OBJECTS) $(libenca_la_DEPENDENCIES) $(EXTRA_libenca_la_DEPENDENCIES) + $(AM_V_CCLD)$(libenca_la_LINK) -rpath $(libdir) $(libenca_la_OBJECTS) $(libenca_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/common.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ctype.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enca.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/encnames.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/filters.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/guess.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_be.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_bg.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_cs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_et.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_hr.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_hu.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_lt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_lv.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_pl.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_ru.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_sk.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_sl.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_uk.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lang_zh.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multibyte.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pair.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unicodemap.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utf8_double.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-includeHEADERS: $(include_HEADERS) + @$(NORMAL_INSTALL) + @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \ + done + +uninstall-includeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir) + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) $(HEADERS) +installdirs: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool clean-local \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-includeHEADERS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ + clean-libLTLIBRARIES clean-libtool clean-local cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am \ + install-includeHEADERS install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am uninstall-includeHEADERS \ + uninstall-libLTLIBRARIES + +.PRECIOUS: Makefile + + +clean-local: + rm -f core.* *~ + rm -f *.gc* + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/common.c b/wlx/wayland_qt_base/build/enca-1.19/lib/common.c new file mode 100644 index 0000000..774abe3 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/common.c @@ -0,0 +1,235 @@ +/* + memory and string operations and some more common stuff + + Copyright (C) 2000-2002 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include + +#include "enca.h" +#include "internal.h" + +/** + * enca_malloc: + * @size: The number of bytes to allocate. + * + * Allocates memory, always successfully (when fails, aborts program). + * + * Returns: Pointer to the newly allocated memory. + **/ +void* +enca_malloc(size_t size) +{ + void *ptr; + + if (size == 0) + size = 1; + ptr = malloc(size); + assert(ptr != NULL); + + return ptr; +} + +/** + * enca_realloc: + * @ptr: Pointer to block of previously allocated memory. + * @size: The number of bytes to resize the block. + * + * Reallocates memory, always successfully (when fails, aborts program). + * + * Returns: Pointer to the newly allocated memory, #NULL when @size is zero. + **/ +void* +enca_realloc(void *ptr, size_t size) +{ + if (size == 0) { + free(ptr); + return NULL; + } + + ptr = realloc(ptr, size); + assert(ptr != NULL); + + return ptr; +} + +/** + * enca_strdup: + * @s: A string. + * + * Duplicates string. + * + * Will be defined as strdup() when system provides it. + * + * Returns: The newly allocated string copy. + **/ +char* +enca_strdup(const char *s) { + if (s == NULL) + return NULL; + else + return strcpy(enca_malloc(strlen(s) + 1), s); +} + +#ifndef HAVE_STRSTR +/** + * enca_strstr: + * @haystack: A string where to search. + * @needle: A string to find. + * + * Finds occurence of a substring in a string. + * + * Will be defined as strstr() when system provides it. + * + * Returns: Pointer to the first occurence of @needle in @haystack; #NULL if + * not found. + **/ +const char* +enca_strstr(const char *haystack, + const char *needle) +{ + char c; + size_t n; + + /* handle singularities */ + if (needle == NULL) + return haystack; + if ((n = strlen(needle)) == 0) + return haystack; + + /* search */ + c = needle[0]; + while ((haystack = strchr(haystack, c)) != NULL) { + if (strncmp(haystack, needle, n) == 0) + return haystack; + } + + return NULL; +} +#endif + +#ifndef HAVE_STPCPY +/** + * enca_stpcpy: + * @dest: A string. + * @src: A string to append. + * + * Appends a string to the end of another strings, returning pointer to + * the terminating zero byte. + * + * Will be defined as stpcpy() when system provides it. + * + * Caller is responisble for providing @dest long enough to hold the result. + * + * Returns: Pointer to the terminating zero byte of resulting string. + **/ +char* +enca_stpcpy(char *dest, + const char *src) +{ + const char *p = src; + + if (src == NULL) + return dest; + + while (*p != '\0') + *dest++ = *p++; + + *dest = '\0'; + return dest; +} +#endif + +/** + * enca_strconcat: + * @str: A string. + * @...: A #NULL-terminated list of string to append. + * + * Concatenates arbitrary (but at least one) number of strings. + * + * Returns: All the strings concatenated together. + **/ +char* +enca_strconcat(const char *str, + ...) +{ + va_list ap; + char *result = NULL; + size_t n; + const char *s; + char *r; + + /* compute size of resulting string */ + n = 1; + va_start(ap, str); + for (s = str; s != NULL; s = va_arg(ap, const char*)) + n += strlen(s); + va_end(ap); + + /* and construct it using the smart stpcpy() function */ + r = result = (char*)enca_malloc(n); + va_start(ap, str); + for (s = str; s != NULL; s = va_arg(ap, const char*)) + r = enca_stpcpy(r, s); + va_end(ap); + + return result; +} + +/** + * enca_strappend: + * @str: A string. + * @...: A #NULL-terminated list of string to append. + * + * Appends arbitrary number of strings to a string. + * + * The string @str is destroyed (reallocated), the others are kept. + * + * Returns: All the strings concatenated together. + **/ +char* +enca_strappend(char *str, + ...) +{ + va_list ap; + size_t n, n1; + const char *s; + char *r; + + /* compute size of resulting string */ + n1 = strlen(str); + n = 1 + n1; + va_start(ap, str); + for (s = va_arg(ap, const char*); s != NULL; s = va_arg(ap, const char*)) + n += strlen(s); + va_end(ap); + + /* and construct it using the smart stpcpy() function */ + str = (char*)enca_realloc(str, n); + r = str + n1; + va_start(ap, str); + for (s = va_arg(ap, const char*); s != NULL; s = va_arg(ap, const char*)) + r = enca_stpcpy(r, s); + va_end(ap); + + return str; +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/common.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/common.lo new file mode 100644 index 0000000..72736ef --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/common.lo @@ -0,0 +1,12 @@ +# common.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='common.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/common.o b/wlx/wayland_qt_base/build/enca-1.19/lib/common.o new file mode 100644 index 0000000..e2d3d70 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/common.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/ctype.c b/wlx/wayland_qt_base/build/enca-1.19/lib/ctype.c new file mode 100644 index 0000000..2f687b6 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/ctype.c @@ -0,0 +1,64 @@ +/* + convert charset and surface names to internal representation and back + + Copyright (C) 2000-2003 David Necas (Yeti) + Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald + and the GLib team. + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ + +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "internal.h" + +/* Basically taken from GLib, some more flags were added. + * Note glibc says isspace('\v'), GLib says it is not. */ +const short int enca_ctype_data[0x100] = { + 0x1004, 0x1004, 0x1004, 0x1004, 0x1004, 0x1004, 0x1004, 0x1004, /* 0x00 */ + 0x1004, 0x0104, 0x0104, 0x1004, 0x0104, 0x0104, 0x1004, 0x1004, /* 0x08 */ + 0x1004, 0x1004, 0x1004, 0x1004, 0x1004, 0x1004, 0x1004, 0x1004, /* 0x10 */ + 0x1004, 0x1004, 0x1004, 0x1004, 0x1004, 0x1004, 0x1004, 0x1004, /* 0x18 */ + 0x0140, 0x00d0, 0x00d0, 0x00d0, 0x00d0, 0x00d0, 0x00d0, 0x00d0, /* 0x20 */ + 0x00d0, 0x00d0, 0x00d0, 0x00d0, 0x00d0, 0x08d0, 0x08d0, 0x08d0, /* 0x28 */ + 0x0c59, 0x0c59, 0x0c59, 0x0c59, 0x0c59, 0x0c59, 0x0c59, 0x0c59, /* 0x30 */ + 0x0c59, 0x0c59, 0x08d0, 0x00d0, 0x00d0, 0x00d0, 0x00d0, 0x00d0, /* 0x38 */ + 0x00d0, 0x2e53, 0x2e53, 0x2e53, 0x2e53, 0x2e53, 0x2e53, 0x2a53, /* 0x40 */ + 0x2a53, 0x2a53, 0x2a53, 0x2a53, 0x2a53, 0x2a53, 0x2a53, 0x2a53, /* 0x48 */ + 0x2a53, 0x2a53, 0x2a53, 0x2a53, 0x2a53, 0x2a53, 0x2a53, 0x2a53, /* 0x50 */ + 0x2a53, 0x2a53, 0x2a53, 0x00d0, 0x00d0, 0x00d0, 0x00d0, 0x08d0, /* 0x58 */ + 0x00d0, 0x2c73, 0x2c73, 0x2c73, 0x2c73, 0x2c73, 0x2c73, 0x2873, /* 0x60 */ + 0x2873, 0x2873, 0x2873, 0x2873, 0x2873, 0x2873, 0x2873, 0x2873, /* 0x68 */ + 0x2873, 0x2873, 0x2873, 0x2873, 0x2873, 0x2873, 0x2873, 0x2873, /* 0x70 */ + 0x2873, 0x2873, 0x2873, 0x00d0, 0x00d0, 0x00d0, 0x00d0, 0x1004, /* 0x78 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0x80 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0x88 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0x90 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0x98 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0xa0 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0xa8 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0xb0 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0xb8 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0xc0 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0xc8 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0xd0 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0xd8 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0xe0 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0xe8 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0xf0 */ + 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, 0x2000, /* 0xf8 */ +}; + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/ctype.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/ctype.lo new file mode 100644 index 0000000..ba5b055 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/ctype.lo @@ -0,0 +1,12 @@ +# ctype.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='ctype.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/ctype.o b/wlx/wayland_qt_base/build/enca-1.19/lib/ctype.o new file mode 100644 index 0000000..5613ff7 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/ctype.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/enca.c b/wlx/wayland_qt_base/build/enca-1.19/lib/enca.c new file mode 100644 index 0000000..5cbc7b9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/enca.c @@ -0,0 +1,162 @@ +/* + encoding-guessing libary; the high-level analyser interface + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" + +/** + * enca_analyser_alloc: + * @langname: Language for which the analyser should be initialized. + * + * Allocates an analyser and initializes it for language @language. + * + * The analyser, once crerated, can be used only for language for which it + * was initialized. If you need to detect encodings of texts in more than one + * language, you must allocate an analyser for each one. Note however, an + * analyser may occupy a considerable amount of memory (a few hundreds of kB), + * so it's generally not a good idea to have several hundreds of them floating + * around. + * + * @langname is two-letter ISO 639:1989 language code. Locale names in form + * language_territory and ISO-639 English language names also may be accepted + * in the future. To be on the safe side, use only names returned by + * enca_get_languages(). + * + * Returns: The newly created #EncaAnalyser on success, #NULL on failure + * (namely when @langname is unknown or otherwise invalid). + **/ +EncaAnalyser +enca_analyser_alloc(const char *langname) +{ + EncaAnalyserState *analyser; + + if (langname == NULL) + return NULL; + + analyser = NEW(EncaAnalyserState, 1); + if (!enca_language_init(analyser, langname)) { + enca_free(analyser); + return NULL; + } + + enca_guess_init(analyser); + enca_double_utf8_init(analyser); + enca_pair_init(analyser); + + return analyser; +} + +/** + * enca_analyser_free: + * @analyser: An analyser to be destroyed. + * + * Frees memory used by #EncaAnalyser @analyser. + **/ +void +enca_analyser_free(EncaAnalyser analyser) +{ + assert(analyser != NULL); + + enca_pair_destroy(analyser); + enca_double_utf8_destroy(analyser); + enca_guess_destroy(analyser); + enca_language_destroy(analyser); + enca_free(analyser); +} + +/** + * enca_errno: + * @analyser: An analyser. + * + * Returns analyser error code. + * + * The error code is not modified. However, any other analyser call i.e. + * call to a function taking @analyser as parameter can change the error code. + * + * Returns: Error code of reason why last analyser call failed. + **/ +int +enca_errno(EncaAnalyser analyser) +{ + assert(analyser != NULL); + + return analyser->gerrno; +} + +/** + * enca_strerror: + * @analyser: An analyser. + * @errnum: An analyser error code. + * + * Returns string describing the error code. + * + * The returned string must be considered constant and must NOT be freed. + * It is however gauranteed not to be modified on invalidated by subsequent + * calls to any libenca functions, including enca_strerror(). + * + * The analyser error code is not changed for a successful call, and it set + * to #ENCA_EINVALUE upon error. + * + * Returns: String describing the error code. + **/ +const char* +enca_strerror(EncaAnalyser analyser, + int errnum) +{ + static const char *const DESCRIPTION_LIST[] = { + "OK", + "Invalid value", + "Sample is empty", + "After filtering, (almost) nothing remained", + "Multibyte tests failed, language contains no 8bit charsets", + "Not enough significant characters", + "No clear winner", + "Sample is just garbage" + }; + + if ((size_t)errnum >= ELEMENTS(DESCRIPTION_LIST)) { + analyser->gerrno = ENCA_EINVALUE; + return "Unknown error! (FIXME!)"; + } + + return DESCRIPTION_LIST[errnum]; +} + +/***** Documentation *********************************************************/ + +/** + * EncaErrno: + * @ENCA_EOK: OK. + * @ENCA_EINVALUE: Invalid value (usually of an option). + * @ENCA_EEMPTY: Sample is empty. + * @ENCA_EFILTERED: After filtering, (almost) nothing remained. + * @ENCA_ENOCS8: Mulitibyte tests failed and language contains no 8bit charsets. + * @ENCA_ESIGNIF: Too few significant characters. + * @ENCA_EWINNER: No clear winner. + * @ENCA_EGARBAGE: Sample is garbage. + * + * Error codes. + **/ + +/* vim: ts=2 sw=2 et + */ + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/enca.h b/wlx/wayland_qt_base/build/enca-1.19/lib/enca.h new file mode 100644 index 0000000..c81303a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/enca.h @@ -0,0 +1,174 @@ +/* This header file is in the public domain. */ +#ifndef ENCA_H +#define ENCA_H + +#include +/* According to autoconf stdlib may not be enough for size_t */ +#include + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/* Enumerated types */ + +typedef enum { /*< flags >*/ + ENCA_SURFACE_EOL_CR = 1 << 0, + ENCA_SURFACE_EOL_LF = 1 << 1, + ENCA_SURFACE_EOL_CRLF = 1 << 2, + ENCA_SURFACE_EOL_MIX = 1 << 3, + ENCA_SURFACE_EOL_BIN = 1 << 4, + ENCA_SURFACE_MASK_EOL = (ENCA_SURFACE_EOL_CR + | ENCA_SURFACE_EOL_LF + | ENCA_SURFACE_EOL_CRLF + | ENCA_SURFACE_EOL_MIX + | ENCA_SURFACE_EOL_BIN), + ENCA_SURFACE_PERM_21 = 1 << 5, + ENCA_SURFACE_PERM_4321 = 1 << 6, + ENCA_SURFACE_PERM_MIX = 1 << 7, + ENCA_SURFACE_MASK_PERM = (ENCA_SURFACE_PERM_21 + | ENCA_SURFACE_PERM_4321 + | ENCA_SURFACE_PERM_MIX), + ENCA_SURFACE_QP = 1 << 8, + ENCA_SURFACE_REMOVE = 1 << 13, + ENCA_SURFACE_UNKNOWN = 1 << 14, + ENCA_SURFACE_MASK_ALL = (ENCA_SURFACE_MASK_EOL + | ENCA_SURFACE_MASK_PERM + | ENCA_SURFACE_QP + | ENCA_SURFACE_REMOVE) +} EncaSurface; + +typedef enum { + ENCA_NAME_STYLE_ENCA, + ENCA_NAME_STYLE_RFC1345, + ENCA_NAME_STYLE_CSTOCS, + ENCA_NAME_STYLE_ICONV, + ENCA_NAME_STYLE_HUMAN, + ENCA_NAME_STYLE_MIME +} EncaNameStyle; + +typedef enum { /*< flags >*/ + ENCA_CHARSET_7BIT = 1 << 0, + ENCA_CHARSET_8BIT = 1 << 1, + ENCA_CHARSET_16BIT = 1 << 2, + ENCA_CHARSET_32BIT = 1 << 3, + ENCA_CHARSET_FIXED = 1 << 4, + ENCA_CHARSET_VARIABLE = 1 << 5, + ENCA_CHARSET_BINARY = 1 << 6, + ENCA_CHARSET_REGULAR = 1 << 7, + ENCA_CHARSET_MULTIBYTE = 1 << 8 +} EncaCharsetFlags; + +typedef enum { + ENCA_EOK = 0, + ENCA_EINVALUE, + ENCA_EEMPTY, + ENCA_EFILTERED, + ENCA_ENOCS8, + ENCA_ESIGNIF, + ENCA_EWINNER, + ENCA_EGARBAGE +} EncaErrno; + +#define ENCA_CS_UNKNOWN (-1) + +#define ENCA_NOT_A_CHAR 0xffff + +/* Published (opaque) typedefs */ +typedef struct _EncaAnalyserState *EncaAnalyser; + +/* Public (transparent) typedefs */ +typedef struct _EncaEncoding EncaEncoding; + +struct _EncaEncoding { int charset; EncaSurface surface; }; + +/* Basic interface. */ +EncaAnalyser enca_analyser_alloc (const char *langname); +void enca_analyser_free (EncaAnalyser analyser); +EncaEncoding enca_analyse (EncaAnalyser analyser, + unsigned char *buffer, + size_t size); +EncaEncoding enca_analyse_const (EncaAnalyser analyser, + const unsigned char *buffer, + size_t size); +int enca_double_utf8_check (EncaAnalyser analyser, + const unsigned char *buffer, + size_t size); +int* enca_double_utf8_get_candidates (EncaAnalyser analyser); +int enca_errno (EncaAnalyser analyser); +const char* enca_strerror (EncaAnalyser analyser, + int errnum); + +/* Options. */ +void enca_set_multibyte (EncaAnalyser analyser, + int multibyte); +int enca_get_multibyte (EncaAnalyser analyser); +void enca_set_interpreted_surfaces (EncaAnalyser analyser, + int interpreted_surfaces); +int enca_get_interpreted_surfaces (EncaAnalyser analyser); +void enca_set_ambiguity (EncaAnalyser analyser, + int ambiguity); +int enca_get_ambiguity (EncaAnalyser analyser); +void enca_set_filtering (EncaAnalyser analyser, + int filtering); +int enca_get_filtering (EncaAnalyser analyser); +void enca_set_garbage_test (EncaAnalyser analyser, + int garabage_test); +int enca_get_garbage_test (EncaAnalyser analyser); +void enca_set_termination_strictness (EncaAnalyser analyser, + int termination_strictness); +int enca_get_termination_strictness (EncaAnalyser analyser); +int enca_set_significant (EncaAnalyser analyser, + size_t significant); +size_t enca_get_significant (EncaAnalyser analyser); +int enca_set_threshold (EncaAnalyser analyser, + double threshold); +double enca_get_threshold (EncaAnalyser analyser); + +/* Names and properties. */ +const char* enca_charset_name (int charset, + EncaNameStyle whatname); +const char** enca_get_charset_aliases (int charset, + size_t *n); +char* enca_get_surface_name (EncaSurface surface, + EncaNameStyle whatname); +EncaEncoding enca_parse_encoding_name (const char *name); +EncaSurface enca_charset_natural_surface (int charset); +EncaCharsetFlags enca_charset_properties (int charset); + +#define enca_charset_is_known(cs) \ + ((cs) != ENCA_CS_UNKNOWN) +#define enca_charset_is_7bit(cs) \ + (enca_charset_properties(cs) & ENCA_CHARSET_7BIT) +#define enca_charset_is_8bit(cs) \ + (enca_charset_properties(cs) & ENCA_CHARSET_8BIT) +#define enca_charset_is_16bit(cs) \ + (enca_charset_properties(cs) & ENCA_CHARSET_16BIT) +#define enca_charset_is_32bit(cs) \ + (enca_charset_properties(cs) & ENCA_CHARSET_32BIT) +#define enca_charset_is_fixed(cs) \ + (enca_charset_properties(cs) & ENCA_CHARSET_FIXED) +#define enca_charset_is_variable(cs) \ + (enca_charset_properties(cs) & ENCA_CHARSET_VARIABLE) +#define enca_charset_is_binary(cs) \ + (enca_charset_properties(cs) & ENCA_CHARSET_BINARY) +#define enca_charset_is_regular(cs) \ + (enca_charset_properties(cs) & ENCA_CHARSET_REGULAR) +#define enca_charset_is_multibyte(cs) \ + (enca_charset_properties(cs) & ENCA_CHARSET_MULTIBYTE) + +/* Auxiliary functions. */ +int enca_charset_has_ucs2_map (int charset); +int enca_charset_ucs2_map (int charset, + unsigned int *buffer); +size_t enca_number_of_charsets (void); +const char* enca_analyser_language (EncaAnalyser analyser); +const char* enca_language_english_name (const char *lang); +const char** enca_get_languages (size_t *n); +int* enca_get_language_charsets (const char *langname, + size_t *n); +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/enca.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/enca.lo new file mode 100644 index 0000000..72949d5 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/enca.lo @@ -0,0 +1,12 @@ +# enca.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='enca.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/enca.o b/wlx/wayland_qt_base/build/enca-1.19/lib/enca.o new file mode 100644 index 0000000..c599e2a Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/enca.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/encnames.c b/wlx/wayland_qt_base/build/enca-1.19/lib/encnames.c new file mode 100644 index 0000000..cf2664c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/encnames.c @@ -0,0 +1,771 @@ +/* + convert charset and surface names to internal representation and back + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "tools/encodings.h" + +#define NCHARSETS (ELEMENTS(CHARSET_INFO)) +#define NALIASES (ELEMENTS(ALIAS_LIST)) +#define NSURFACES (ELEMENTS(SURFACE_INFO)) + +#define ENCODING_UNKNOWN { ENCA_CS_UNKNOWN, 0 } + +/* tolower() and toupper() which never fail. */ +#define enca_tolower(c) (enca_isupper(c) ? (c) + ('a' - 'A') : (c)) +#define enca_toupper(c) (enca_islower(c) ? (c) - ('a' - 'A') : (c)) + +static const char *UNKNOWN_CHARSET_NAME = "unknown"; +static const char *UNKNOWN_CHARSET_HUMAN = "Unrecognized encoding"; +static const char *UNKNOWN_CHARSET_SYM = "???"; + +/* Surface separator (sometimes we need a character, sometimes a string). */ +#define SURF_SEPARATOR '/' +#define SURF_SEPARATOR_STR "/" + +/** + * EncaSurfaceInfo: + * @enca: Canonical identifier (#NULL when not applicable). + * @human: Human readable name. + * @bit: Appropriate ENCA_SURFACE_. + * + * Surface information. + **/ +struct _EncaSurfaceInfo { + const char *enca; + const char *human; + EncaSurface bit; +}; + +typedef struct _EncaSurfaceInfo EncaSurfaceInfo; + +/* Local prototypes. */ +static int squeeze_compare(const char *x, + const char *y); +static int alias_search(const char *const *alist, + int n, + const char *s); +static int check_surface_consistency(EncaSurface surface); +static int count_bits(unsigned long int x); +static int check_encoding_name(const char *name); + +/* Surface information. */ +static const EncaSurfaceInfo SURFACE_INFO[] = { + { + "CR", + "CR line terminators", + ENCA_SURFACE_EOL_CR + }, + { + "LF", + "LF line terminators", + ENCA_SURFACE_EOL_LF + }, + { + "CRLF", + "CRLF line terminators", + ENCA_SURFACE_EOL_CRLF + }, + { + NULL, + "Mixed line terminators", + ENCA_SURFACE_EOL_MIX + }, + { + NULL, + "Surrounded by/intermixed with non-text data", + ENCA_SURFACE_EOL_BIN + }, + { + "21", + "Byte order reversed in pairs (1,2 -> 2,1)", + ENCA_SURFACE_PERM_21 + }, + { + "4321", + "Byte order reversed in quadruples (1,2,3,4 -> 4,3,2,1)", + ENCA_SURFACE_PERM_4321 + }, + { + NULL, + "Both little and big endian chunks, concatenated", + ENCA_SURFACE_PERM_MIX + }, + { + "qp", + "Quoted-printable encoded", + ENCA_SURFACE_QP + }, + { + "", + "", + ENCA_SURFACE_REMOVE + }, +}; + +/** + * enca_charset_name: + * @charset: A charset id. + * @whatname: Teh type of name you request. + * + * Translates numeric charset id @charset to some kind of name. + * + * Returns: The requested charset name; #NULL for invalid @whatname or + * @charset, or when @whatname name doesn't exist for charset @charset + * (#ENCA_CS_UNKNOWN is OK). + **/ +const char* +enca_charset_name(int charset, + EncaNameStyle whatname) +{ + const EncaCharsetInfo *cs; + + if (charset == ENCA_CS_UNKNOWN) { + switch (whatname) { + case ENCA_NAME_STYLE_RFC1345: + case ENCA_NAME_STYLE_ENCA: + case ENCA_NAME_STYLE_MIME: + return UNKNOWN_CHARSET_NAME; + + case ENCA_NAME_STYLE_HUMAN: + return UNKNOWN_CHARSET_HUMAN; + + case ENCA_NAME_STYLE_CSTOCS: + case ENCA_NAME_STYLE_ICONV: + return UNKNOWN_CHARSET_SYM; + + default: + return NULL; + } + } + if ((size_t)charset >= NCHARSETS) + return NULL; + + cs = CHARSET_INFO + charset; + switch (whatname) { + case ENCA_NAME_STYLE_RFC1345: + return ALIAS_LIST[cs->rfc1345]; + + case ENCA_NAME_STYLE_HUMAN: + return cs->human; + + case ENCA_NAME_STYLE_ENCA: + return ALIAS_LIST[cs->enca]; + + case ENCA_NAME_STYLE_CSTOCS: + return cs->cstocs < 0 ? NULL : ALIAS_LIST[cs->cstocs]; + + case ENCA_NAME_STYLE_ICONV: + return cs->iconv < 0 ? NULL : ALIAS_LIST[cs->iconv]; + + case ENCA_NAME_STYLE_MIME: + return cs->mime < 0 ? NULL : ALIAS_LIST[cs->mime]; + + default: + return NULL; + } + + /* just to placate gcc */ + return NULL; +} + +/** + * enca_get_charset_aliases: + * @charset: A charset id. + * @n: The number of aliases will be stored here. + * + * Returns list of accepted aliases for charset @charset. + * + * The list of aliases has to be freed by caller; the strings themselves + * must be considered constant and must NOT be freed. + * + * Returns: The list of aliases, storing their number into *@n; #NULL for + * invalid @charset (*@n is zero then). + **/ +const char** +enca_get_charset_aliases(int charset, + size_t *n) +{ + const char **aliases; + size_t i, j; + + /* Compute total length. + * FIXME: The list is known at compile time. */ + for (i = *n = 0; i < NALIASES; i++) + if (INDEX_LIST[i] == charset) (*n)++; + + /* Create the list. */ + aliases = NEW(const char*, *n); + for (i = j = 0; i < NALIASES; i++) + if (INDEX_LIST[i] == charset) + aliases[j++] = ALIAS_LIST[i]; + + return aliases; +} + +/** + * enca_get_surface_name: + * @surface: A surface. + * @whatname: The type of name you request. + * + * Constructs surface name from surface flags @surface. + * + * Returns: The requested surface name; #NULL for invalid @whatname; empty + * string for naming style not supporting surfaces. In all cases, the + * returned string must be freed by caller when no longer used. + **/ +char* +enca_get_surface_name(EncaSurface surface, + EncaNameStyle whatname) +{ + char *s; + size_t i; + + switch (whatname) { + /* these don't know/define surfaces so forget it */ + case ENCA_NAME_STYLE_CSTOCS: + case ENCA_NAME_STYLE_RFC1345: + case ENCA_NAME_STYLE_ICONV: + case ENCA_NAME_STYLE_MIME: + s = enca_strdup(""); + break; + + /* human readable name (each on separate line) */ + case ENCA_NAME_STYLE_HUMAN: + s = enca_strdup(""); + for (i = 0; i < NSURFACES; i++) { + if (SURFACE_INFO[i].bit & surface) { + s = enca_strappend(s, SURFACE_INFO[i].human, "\n", NULL); + } + } + break; + + /* canonical name (/recode style) */ + case ENCA_NAME_STYLE_ENCA: + s = enca_strdup(""); + for (i = 0; i < NSURFACES; i++) { + if ((SURFACE_INFO[i].bit & surface) && SURFACE_INFO[i].enca != NULL) { + s = enca_strappend(s, SURF_SEPARATOR_STR, SURFACE_INFO[i].enca, NULL); + } + } + break; + + default: + s = NULL; + break; + } + + return s; +} + +/** + * enca_charset_properties: + * @charset: A charset. + * + * Returns charset properties. + * + * Returns: The requested charset properties; zero for invalid @charset. + **/ +EncaCharsetFlags +enca_charset_properties(int charset) +{ + if ((size_t)charset >= NCHARSETS) + return 0; + return CHARSET_INFO[charset].flags; +} + +/** + * enca_charset_natural_surface: + * @charset: A charset. + * + * Returns natural surface of a charset. + * + * Returns: The requested charset natural surface (called `implied' in recode), + * zero for invalid @charset or for charsets with no natural surface. + * + * Natrual surface is the surface one expects for a given charset -- + * e.g. CRLF EOLs for IBM/Microsoft charsets, CR EOLs for Macintosh + * charsets and LF EOLs for ISO/Unix charsets. + **/ +EncaSurface +enca_charset_natural_surface(int charset) +{ + if ((size_t)charset >= NCHARSETS) + return 0; + else + return CHARSET_INFO[charset].nsurface; +} + +/** + * enca_number_of_charsets: + * + * Returns number of known charsets. + * + * Charsets idetifiers are assigned successively starting from zero, so last + * charset has identifier enca_number_of_charsets() - 1. + * + * Returns: The number of charsets. + **/ +size_t +enca_number_of_charsets(void) +{ + return NCHARSETS; +} + +/** + * enca_parse_encoding_name: + * @name: An encoding specification. + * + * Transofrms encoding specification charset/surface into numeric #EncaEncoding. + * + * When the charset name is not recognized, surfaces are not parsed at all and + * #ENCA_CS_UNKNOWN is returned as charset. However, unrecognized surfaces are + * considered only a minor problem causing %ENCA_SURFACE_UNKNOWN flag to be + * set in the result, beside recognized surface flags. + * + * Returns: The charset/surface pair. + **/ +EncaEncoding +enca_parse_encoding_name(const char *name) +{ + EncaEncoding enc = ENCODING_UNKNOWN; + char *p, *q; + + if (name == NULL) + return enc; + + p = enca_strdup(name); + /* separate pure charset name into p */ + q = strchr(p, SURF_SEPARATOR); + if (q != NULL) + *q++ = '\0'; + enc.charset = enca_name_to_charset(p); + /* surfaces, ony by one */ + while (q != NULL && enc.charset != ENCA_CS_UNKNOWN) { + unsigned int surface; + char *r = strchr(p, SURF_SEPARATOR); + + if (r != NULL) + *r++ = '\0'; + enc.surface |= surface = enca_name_to_surface(q); + q = r; + } + if (!check_surface_consistency(enc.surface)) + enc.surface |= ENCA_SURFACE_UNKNOWN; + free(p); + + return enc; +} + +/** + * squeeze_compare: + * @x: A string. + * @y: Another string. + * + * Compares two strings taking into account only alphanumeric characters. + * + * Returns: Less than zero, more than zero, or zero, when the first string is + * squeeze-alphabeticaly before, after, or equal to second string. + **/ +static int +squeeze_compare(const char *x, + const char *y) +{ + if (x == NULL || y == NULL) { + if (x == NULL && y == NULL) + return 0; + + if (x == NULL) + return -1; + else + return 1; + } + + while (*x != '\0' || *y != '\0') { + while (*x != '\0' && !enca_isalnum(*x)) + x++; + while (*y != '\0' && !enca_isalnum(*y)) + y++; + + if (enca_tolower(*x) != enca_tolower(*y)) + return (int)enca_tolower(*x) - (int)enca_tolower(*y); + + if (*x != '\0') + x++; + if (*y != '\0') + y++; + } + return 0; +} + +#if 0 +/** + * stable_compare: + * @x: A string. + * @y: Another string. + * + * Compares two strings taking into account only alphanumeric characters first. + * + * When the strings are equal, compares them normally, too. Zero is thus + * returned for really identical strings only. + * + * Returns: Less than zero, more than zero, or zero, when the first string is + * squeeze-alphabeticaly before, after, or equal to second string. + **/ +static int +stable_compare(const char *x, + const char *y) +{ + int i; + + i = squeeze_compare(x, y); + /* to stabilize the sort */ + if (i == 0) + return strcmp(x, y); + + return i; +} +#endif + +/** + * alias_search: + * @alist: Sorted array of strings. + * @n: Size of @alist. + * @s: String to find. + * + * Finds string @s in stable-sorted array of strings. + * + * Returns: Index of @s in @alist; -1 if not found. + **/ +static int +alias_search(const char *const *alist, + int n, + const char *s) +{ + int i1 = 0; + int i2 = n-1; + int i; + + i = squeeze_compare(s, alist[i1]); + if (i < 0) + return -1; + if (i == 0) + return i1; + + i = squeeze_compare(s, alist[i2]); + if (i > 0) + return -1; + if (i == 0) + return i2; + + while (i1+1 < i2) { + int im = (i1 + i2)/2; + + i = squeeze_compare(s, alist[im]); + if (i == 0) + return im; + + if (i > 0) + i1 = im; + else + i2 = im; + } + if (squeeze_compare(s, alist[i1+1]) == 0) + return i1+1; + + return -1; +} + +/** + * enca_name_to_charset: + * @csname: The charset name. + * + * Transforms charset name to numeric charset id. + * + * Returns: The charset id; #ENCA_CS_UNKNOWN when the name is not recognized. + **/ +int +enca_name_to_charset(const char *csname) +{ + int i; + + if (check_encoding_name(csname) <= 0) + return ENCA_CS_UNKNOWN; + + i = alias_search(ALIAS_LIST, NALIASES, csname); + return i < 0 ? ENCA_CS_UNKNOWN : INDEX_LIST[i]; +} + +/** + * enca_name_to_surface: + * @sname: The surface name. + * + * Transforms surface name to numeric surface id. + * + * Returns: The surface id; %ENCA_SURFACE_UNKNOWN when the name is not + * recognized. + **/ +EncaSurface +enca_name_to_surface(const char *sname) +{ + size_t i; + + if (sname == NULL) + return ENCA_SURFACE_UNKNOWN; + + for (i = 0; i < NSURFACES; i++) { + if (SURFACE_INFO[i].enca == NULL || *(SURFACE_INFO[i].enca) == '\0') + continue; + if (squeeze_compare(SURFACE_INFO[i].enca, sname)) + return SURFACE_INFO[i].bit; + } + return ENCA_SURFACE_UNKNOWN; +} + +/** + * check_surface_consistency: + * @surface: The surface. + * + * Checks whether the specified surface makes sense. Unlike recode we don't + * consider /cr/cr/crlf/cr/lf/lf/crlf a reasonable surface. + * + * Returns: Nonzero when the surface is OK, zero othewise. + **/ +static int +check_surface_consistency(EncaSurface surface) +{ + return count_bits((unsigned long int)surface & ENCA_SURFACE_MASK_EOL) <= 1 + && count_bits((unsigned long int)surface & ENCA_SURFACE_MASK_PERM) <= 1 + && (surface & ENCA_SURFACE_REMOVE) == 0 + && (surface & ENCA_SURFACE_UNKNOWN) == 0; +} + +/** + * count_bits: + * @x: A flag field. + * + * Returns: The number of bits set in @x. + **/ +static int +count_bits(unsigned long int x) +{ + int i = 0; + + while (x != 0) { + if (x & 1UL) + i++; + + x >>= 1; + } + + return i; +} + +/** + * check_encoding_name: + * @name: A charset/surface/encoding name. + * + * Checks whether @name contains only allowed characters and counts the + * number of alphanumeric characters in @name. + * + * Returns: The number of alphanumeric characters in @name; -1 when @name + * is invalid. + **/ +static int +check_encoding_name(const char *name) +{ + size_t i, n; + + if (name == NULL) + return -1; + + for (i = n = 0; name[i] != '\0'; i++) { + if (!enca_isname(name[i])) + return -1; + + if (enca_isalnum(name[i])) + n++; + } + + return n; +} + +/***** Documentation *********************************************************/ + +/** + * EncaSurface: + * @ENCA_SURFACE_EOL_CR: End-of-lines are represented with CR's. + * @ENCA_SURFACE_EOL_LF: End-of-lines are represented with LF's. + * @ENCA_SURFACE_EOL_CRLF: End-of-lines are represented with CRLF's. + * @ENCA_SURFACE_EOL_MIX: Several end-of-line types, mixed. + * @ENCA_SURFACE_EOL_BIN: End-of-line concept not applicable (binary data). + * @ENCA_SURFACE_MASK_EOL: Mask for end-of-line surfaces. + * @ENCA_SURFACE_PERM_21: Odd and even bytes swapped. + * @ENCA_SURFACE_PERM_4321: Reversed byte sequence in 4byte words. + * @ENCA_SURFACE_PERM_MIX: Chunks with both endianess, concatenated. + * @ENCA_SURFACE_MASK_PERM: Mask for permutation surfaces. + * @ENCA_SURFACE_QP: Quoted printables. + * @ENCA_SURFACE_HZ: HZ encoded. + * @ENCA_SURFACE_REMOVE: Recode `remove' surface. + * @ENCA_SURFACE_UNKNOWN: Unknown surface. + * @ENCA_SURFACE_MASK_ALL: Mask for all bits, withnout #ENCA_SURFACE_UNKNOWN. + * + * Surface flags. + **/ + +/** + * EncaNameStyle: + * @ENCA_NAME_STYLE_ENCA: Default, implicit charset name in Enca. + * @ENCA_NAME_STYLE_RFC1345: RFC 1345 or otherwise canonical charset name. + * @ENCA_NAME_STYLE_CSTOCS: Cstocs charset name (may not exist). + * @ENCA_NAME_STYLE_ICONV: Iconv charset name (may not exist). + * @ENCA_NAME_STYLE_HUMAN: Human comprehensible description. + * @ENCA_NAME_STYLE_MIME: Preferred MIME name (may not exist). + * + * Charset naming styles and conventions. + **/ + +/** + * EncaCharsetFlags: + * @ENCA_CHARSET_7BIT: Characters are represented with 7bit characters. + * @ENCA_CHARSET_8BIT: Characters are represented with bytes. + * @ENCA_CHARSET_16BIT: Characters are represented with 2byte words. + * @ENCA_CHARSET_32BIT: Characters are represented with 4byte words. + * @ENCA_CHARSET_FIXED: One characters consists of one fundamental piece. + * @ENCA_CHARSET_VARIABLE: One character consists of variable number of + * fundamental pieces. + * @ENCA_CHARSET_BINARY: Charset is binary from ASCII viewpoint. + * @ENCA_CHARSET_REGULAR: Language dependent (8bit) charset. + * @ENCA_CHARSET_MULTIBYTE: Multibyte charset. + * + * Charset properties. + * + * Flags %ENCA_CHARSET_7BIT, %ENCA_CHARSET_8BIT, %ENCA_CHARSET_16BIT, + * %ENCA_CHARSET_32BIT tell how many bits a `fundamental piece' consists of. + * This is different from bits per character; r.g. UTF-8 consists of 8bit + * pieces (bytes), but character can be composed from 1 to 6 of them. + **/ + +/** + * ENCA_CS_UNKNOWN: + * + * Unknown character set id. + * + * Use enca_charset_is_known() to check for unknown charset instead of direct + * comparsion. + **/ + +/** + * EncaEncoding: + * @charset: Numeric charset identifier. + * @surface: Surface flags. + * + * Encoding, i.e. charset and surface. + * + * This is what enca_analyse() and enca_analyse_const() return. + * + * The @charset field is an opaque numerical charset identifier, which has no + * meaning outside Enca library. + * You will probably want to use it only as enca_charset_name() argument. + * It is only guaranteed not to change meaning + * during program execution time; change of its interpretation (e.g. due to + * addition of new charsets) is not considered API change. + * + * The @surface field is a combination of #EncaSurface flags. You may want + * to ignore it completely; you should use enca_set_interpreted_surfaces() + * to disable weird surfaces then. + **/ + +/** + * enca_charset_is_known: + * @cs: Charset id. + * + * Expands to nonzero when the charset is known (i.e. it's not + * ENCA_CS_UNKNOWN). + **/ + +/** + * enca_charset_is_7bit: + * @cs: Charset id. + * + * Expands to nonzero when characters are represented with 7bit characters. + **/ + +/** + * enca_charset_is_8bit: + * @cs: Charset id. + * + * Expands to nonzero when characters are represented with bytes. + **/ + +/** + * enca_charset_is_16bit: + * @cs: Charset id. + * + * Expands to nonzero when characters are represented with 2byte words. + **/ + +/** + * enca_charset_is_32bit: + * @cs: Charset id. + * + * Expands to nonzero when characters are represented with 4byte words. + **/ + +/** + * enca_charset_is_fixed: + * @cs: Charset id. + * + * Expands to nonzero when one characters consists of one fundamental piece. + **/ + +/** + * enca_charset_is_variable: + * @cs: Charset id. + * + * Expands to nonzero when one character consists of variable number of + * fundamental pieces. + **/ + +/** + * enca_charset_is_binary: + * @cs: Charset id. + * + * Expands to nonzero when charset is binary from ASCII viewpoint. + **/ + +/** + * enca_charset_is_regular: + * @cs: Charset id. + * + * Expands to nonzero when charset is language dependent (8bit) charset. + **/ + +/** + * enca_charset_is_multibyte: + * @cs: Charset id. + * + * Expands to nonzero when charset is multibyte. + **/ + +/* vim: ts=2 sw=2 et + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/encnames.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/encnames.lo new file mode 100644 index 0000000..569ca44 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/encnames.lo @@ -0,0 +1,12 @@ +# encnames.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='encnames.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/encnames.o b/wlx/wayland_qt_base/build/enca-1.19/lib/encnames.o new file mode 100644 index 0000000..249452b Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/encnames.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/filters.c b/wlx/wayland_qt_base/build/enca-1.19/lib/filters.c new file mode 100644 index 0000000..1c756f9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/filters.c @@ -0,0 +1,507 @@ +/* + filters and hooks that various languages can use + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include + +#include "enca.h" +#include "internal.h" + +/** + * EncaBoxDraw: + * @csname: Charset name. + * @isvbox: All other box drawing characters. + * @h1: Horizontal line character (light). + * @h2: Horizontal line character (heavy). + * + * Information about box-drawing characters for a charset. + **/ +struct _EncaBoxDraw { + const char *csname; + const unsigned char *isvbox; + unsigned char h1; + unsigned char h2; +}; + +typedef struct _EncaBoxDraw EncaBoxDraw; + +/* THIS IS A GENERATED TABLE, see tools/expand_table.pl */ +static const unsigned char BOXVERT_IBM852[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, + 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +}; + +/* These are identical */ +#define BOXVERT_IBM775 BOXVERT_IBM852 + +/* THIS IS A GENERATED TABLE, see tools/expand_table.pl */ +static const unsigned char BOXVERT_KEYBCS2[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +}; + +/* These are identical */ +#define BOXVERT_IBM866 BOXVERT_KEYBCS2 +#define BOXVERT_CP1125 BOXVERT_KEYBCS2 + +/* THIS IS A GENERATED TABLE, see tools/expand_table.pl */ +static const unsigned char BOXVERT_KOI8R[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +}; + +#if 0 +/* UNUSED */ +/* THIS IS A GENERATED TABLE, see tools/expand_table.pl */ +static const unsigned char BOXVERT_KOI8RU[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, + 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +}; +#endif + +/* THIS IS A GENERATED TABLE, see tools/expand_table.pl */ +static const unsigned char BOXVERT_KOI8U[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, + 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +}; + +/* THIS IS A GENERATED TABLE, see tools/expand_table.pl */ +static const unsigned char BOXVERT_KOI8UNI[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +}; + +static const EncaBoxDraw BOXDRAW[] = { + { "cp1125", BOXVERT_CP1125, 196, 205 }, + { "ibm775", BOXVERT_IBM775, 196, 205 }, + { "ibm852", BOXVERT_IBM852, 196, 205 }, + { "ibm866", BOXVERT_IBM866, 196, 205 }, + { "keybcs2", BOXVERT_KEYBCS2, 196, 205 }, + { "koi8r", BOXVERT_KOI8R, 128, 160 }, + { "koi8u", BOXVERT_KOI8U, 128, 160 }, + { "koi8uni", BOXVERT_KOI8UNI, 128, 128 }, /* there's only one */ +#if 0 + { "koi8ru", BOXVERT_KOI8RU, 128, 160 }, +#endif +}; + +/* Local prototypes. */ +static size_t filter_boxdraw_out(int charset, + unsigned char *buffer, + size_t size, + unsigned char fill_char); + +/** + * enca_filter_boxdraw: + * @analyser: Analyser whose charsets should be considered for filtration. + * @fill_char: Replacement character for filtered bytes. + * + * Runs boxdrawing characters filter on @buffer for each charset in @language. + * + * Returns: Number of characters filtered out. + **/ +size_t +enca_filter_boxdraw(EncaAnalyserState *analyser, + unsigned char fill_char) +{ + size_t i; + size_t filtered = 0; + + for (i = 0; i < analyser->ncharsets; i++) { + filtered += filter_boxdraw_out(analyser->charsets[i], + analyser->buffer, analyser->size, + fill_char); + } + + return filtered; +} + +/** + * filter_boxdraw_out: + * @charset: Charset whose associated filter should be applied. + * @buffer: Buffer to be filtered. + * @size: Size of @buffer. + * @fill_char: Replacement character for filtered bytes. + * + * Replaces box-drawing characters in @buffer with @fill_char. + * + * Not all possibly box-drawing characters are replaced, only those meeting + * certain conditions to reduce false filtering. It's assumed + * isspace(@fill_char) is true (it aborts when it isn't). + * + * It's OK to call with @charset which has no filter associated, it just + * returns zero then. + * + * Returns: The number of characters filtered. + **/ +static size_t +filter_boxdraw_out(int charset, + unsigned char *buffer, + size_t size, + unsigned char fill_char) +{ + static int charset_id[ELEMENTS(BOXDRAW)]; + static int charset_id_initialized = 0; + const EncaBoxDraw *bd; + size_t i, n, xout; + + assert(enca_isspace(fill_char)); + + if (!charset_id_initialized) { + for (i = 0; i < ELEMENTS(BOXDRAW); i++) { + charset_id[i] = enca_name_to_charset(BOXDRAW[i].csname); + assert(charset_id[i] != ENCA_CS_UNKNOWN); + } + charset_id_initialized = 1; + } + + /* Find whether we have any filter associated with this charset. */ + bd = NULL; + for (i = 0; i < ELEMENTS(BOXDRAW); i++) { + if (charset_id[i] == charset) { + bd = BOXDRAW + i; + break; + } + } + if (bd == NULL) + return 0; + + xout = 0; + /* First stage: + * Horizontal lines, they must occur at least two in a row. */ + i = 0; + while (i < size-1) { + if (buffer[i] == bd->h1 || buffer[i] == bd->h2) { + for (n = i+1; buffer[n] == buffer[i] && n < size; n++) + ; + + if (n > i+1) { + memset(buffer + i, fill_char, n - i); + xout += n - i; + } + i = n; + } + else i++; + } + + /* Second stage: + * Vertical/mixed, they must occur separated by whitespace. + * We assume isspace(fill_char) is true. */ + if (size > 1 + && bd->isvbox[buffer[0]] + && enca_isspace(buffer[1])) { + buffer[0] = fill_char; + xout++; + } + + for (i = 1; i < size-1; i++) { + if (bd->isvbox[buffer[i]] + && enca_isspace(buffer[i-1]) + && enca_isspace(buffer[i+1])) { + buffer[i] = fill_char; + xout++; + } + } + + if (size > 1 + && bd->isvbox[buffer[size-1]] + && enca_isspace(buffer[size-2])) { + buffer[size-1] = fill_char; + xout++; + } + + return xout; +} + +/** + * enca_language_hook_ncs: + * @analyser: Analyser whose charset ratings are to be modified. + * @ncs: The number of charsets. + * @hookdata: What characters of which charsets should be given the extra + * weight. + * + * Decide between two charsets differing only in a few characters. + * + * If the two most probable charsets correspond to @hookdata charsets, + * give the characters they differ half the weight of all other characters + * together, thus allowing to decide between the two very similar charsets. + * + * It also recomputes @order when something changes. + * + * Returns: Nonzero when @ratings were actually modified, nonzero otherwise. + **/ +int +enca_language_hook_ncs(EncaAnalyserState *analyser, + size_t ncs, + EncaLanguageHookData1CS *hookdata) +{ + const int *const ids = analyser->charsets; + const size_t ncharsets = analyser->ncharsets; + const size_t *counts = analyser->counts; + const size_t *const order = analyser->order; + double *const ratings = analyser->ratings; + size_t maxcnt, j, k, m; + double q; + + assert(ncharsets > 0); + assert(ncs <= ncharsets); + if (ncs < 2) + return 0; + + /* + for (j = 0; j < ncharsets; j++) { + fprintf(stderr, "%s:\t%g\n", enca_csname(ids[order[j]]), ratings[order[j]]); + } + */ + + /* Find id's and check whether they are the first */ + for (j = 0; j < ncs; j++) { + EncaLanguageHookData1CS *h = hookdata + j; + + /* Find charset if unknown */ + if (h->cs == (size_t)-1) { + int id; + + id = enca_name_to_charset(h->name); + assert(id != ENCA_CS_UNKNOWN); + k = 0; + while (k < ncharsets && id != ids[k]) + k++; + assert(k < ncharsets); + h->cs = k; + } + + /* If any charset is not between the first ncs ones, do nothing. */ + k = 0; + while (k < ncs && order[k] != h->cs) + k++; + if (k == ncs) + return 0; + } + + /* Sum the extra-important characters and find maximum. */ + maxcnt = 0; + for (j = 0; j < ncs; j++) { + EncaLanguageHookData1CS const *h = hookdata + j; + + for (m = k = 0; k < h->size; k++) + m += counts[h->list[k]]; + if (m > maxcnt) + maxcnt = m; + } + if (maxcnt == 0) + return 0; + + /* Substract something from charsets that have less than maximum. */ + q = 0.5 * ratings[order[0]]/(maxcnt + EPSILON); + for (j = 0; j < ncs; j++) { + EncaLanguageHookData1CS const *h = hookdata + j; + + m = maxcnt; + for (k = 0; k < h->size; k++) + m -= counts[h->list[k]]; + ratings[h->cs] -= q*m; + } + + enca_find_max_sec(analyser); + + return 1; +} + +/** + * enca_language_hook_eol: + * @analyser: Analyser whose charset ratings are to be modified. + * @ncs: The number of charsets. + * @hookdata: What characters of which charsets should be decided with based + * on the EOL type. + * + * Decide between two charsets differing only in EOL type or other surface. + * + * The (surface mask, charset) pairs are scanned in order. If a matching + * surface is found, ratings of all other charsets in the list are zeroed. + * So you can place a surface mask of all 1s at the end to match when nothing + * else matches. + * + * All the charsets have to have the same rating, or nothing happens. + * + * It also recomputes @order when something changes. + * + * Returns: Nonzero when @ratings were actually modified, nonzero otherwise. + **/ +int +enca_language_hook_eol(EncaAnalyserState *analyser, + size_t ncs, + EncaLanguageHookDataEOL *hookdata) +{ + const int *const ids = analyser->charsets; + const size_t ncharsets = analyser->ncharsets; + const size_t *const order = analyser->order; + double *const ratings = analyser->ratings; + size_t j, k; + + assert(ncharsets > 0); + assert(ncs <= ncharsets); + if (ncs < 2) + return 0; + + /* Rating equality check. */ + for (j = 1; j < ncs; j++) { + if (fabs(ratings[order[j-1]] - ratings[order[j]]) > EPSILON) + return 0; + } + + /* Find id's and check whether they are the first */ + for (j = 0; j < ncs; j++) { + EncaLanguageHookDataEOL *h = hookdata + j; + + /* Find charset if unknown */ + if (h->cs == (size_t)-1) { + int id; + + id = enca_name_to_charset(h->name); + assert(id != ENCA_CS_UNKNOWN); + k = 0; + while (k < ncharsets && id != ids[k]) + k++; + assert(k < ncharsets); + h->cs = k; + } + + /* If any charset is not between the first ncs ones, do nothing. */ + k = 0; + while (k < ncs && order[k] != h->cs) + k++; + if (k == ncs) + return 0; + } + + /* Find first matching EOL type. */ + for (j = 0; j < ncs; j++) { + EncaLanguageHookDataEOL const *h = hookdata + j; + + if (h->eol & analyser->result.surface) { + int chg = 0; + + for (k = 0; k < ncs; k++) { + h = hookdata + k; + + if (k != j && ratings[h->cs] > 0.0) { + ratings[h->cs] = 0.0; + chg = 1; + } + } + if (chg) + enca_find_max_sec(analyser); + + return chg; + } + } + + return 0; +} + +/* vim: ts=2 + */ + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/filters.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/filters.lo new file mode 100644 index 0000000..133f28c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/filters.lo @@ -0,0 +1,12 @@ +# filters.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='filters.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/filters.o b/wlx/wayland_qt_base/build/enca-1.19/lib/filters.o new file mode 100644 index 0000000..91cc58a Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/filters.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/guess.c b/wlx/wayland_qt_base/build/enca-1.19/lib/guess.c new file mode 100644 index 0000000..2e8e4e8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/guess.c @@ -0,0 +1,1204 @@ +/* + encoding-guesing engine + + Copyright (C) 2000-2002 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include + +#include "enca.h" +#include "internal.h" + +/* Number of text character needed to switch to text mode in binary filter. */ +#define BIN_TEXT_CHAR_MIN 5 + +/** + * FILL_CHARACTER: + * + * Replacement character for binary, box-drawing, etc.filters. + * Note: enca_isspace(#FILL_CHARACTER) must be true. + **/ +#define FILL_CHARACTER ' ' + +static const EncaAnalyserOptions DEFAULTS = { + 1, /* const_buffer (always set per call) */ + 10, /* min_chars */ + 1.4142, /* threshold */ + 1, /* multibyte_enabled */ + 1, /* interpreted_surfaces */ + 0, /* ambiguous_mode */ + 1, /* filtering */ + 1, /* test_garbageness */ + 1, /* termination_strictness */ +}; + +static const EncaEncoding ENCODING_UNKNOWN = { ENCA_CS_UNKNOWN, 0 }; + +/* local prototypes */ +static EncaEncoding analyse (EncaAnalyserState *analyser, + unsigned char *buffer, + size_t size); +static EncaErrno make_guess (EncaAnalyserState *analyser); +static int try_test_list (EncaAnalyserState *analyser, + EncaGuessFunc *tests); +static size_t filter_binary (unsigned char *buffer, + size_t size, + unsigned char fill_char); +static int looks_like_qp (EncaAnalyserState *analyser); +static EncaErrno ambiguous_hook (EncaAnalyserState *analyser); +static void count_characters (EncaAnalyserState *analyser); +static int test_garbage (EncaAnalyserState *analyser); +static size_t check_significant (EncaAnalyserState *analyser); + +/** + * enca_guess_init: + * @analyser: Analyser to initialize. + * + * Allocates and initializes analyser state, sets options to defaults. + * + * Assumes @analyser is unitinialized, calling with an initialized @analyser + * leads to memory leak, but @analyser->lang must be already initialized. + **/ +void +enca_guess_init(EncaAnalyserState *analyser) +{ + assert(analyser->lang != NULL); + + analyser->counts = NEW(size_t, 0x100); + if (analyser->ncharsets == 0) { + analyser->ratings = NULL; + analyser->order = NULL; + } + else { + analyser->ratings = NEW(double, analyser->ncharsets); + analyser->order = NEW(size_t, analyser->ncharsets); + } + + analyser->options = DEFAULTS; + analyser->gerrno = 0; +} + +/** + * enca_guess_destroy: + * @analyser: Analyser to destroy. + * + * Frees memory owned by analyser state. + **/ +void +enca_guess_destroy(EncaAnalyserState *analyser) +{ + enca_free(analyser->counts); + enca_free(analyser->ratings); + enca_free(analyser->order); +} + +/** + * enca_analyse: + * @analyser: An analyser initialized for some language. + * @buffer: Buffer to be analysed. + * @size: Size of @buffer. + * + * Analyses @buffer and finds its encoding. + * + * The @buffer is checked for 8bit encodings of language for which @analyser + * was initialized and for multibyte encodings, mostly independent on language + * (unless disabled with enca_set_multibyte()). + * + * The contents of @buffer may be (and probably will be) modified during the + * analyse. Use enca_analyse_const() instead if this discomforts you. + * + * Returns: Encoding of @buffer. When charset part of return value is + * #ENCA_CS_UNKNOWN, encoding was not determined. Check + * enca_errno() for reason. + **/ +EncaEncoding +enca_analyse(EncaAnalyser analyser, + unsigned char *buffer, + size_t size) +{ + assert(analyser != NULL); + analyser->options.const_buffer = 0; + return analyse(analyser, buffer, size); +} + +/** + * enca_analyse_const: + * @analyser: An analyser initialized for some language. + * @buffer: Buffer to be analysed. + * @size: Size of @buffer. + * + * Analyses @buffer and finds its encoding. + * + * The @buffer is checked for 8bit encodings of language for which @analyser + * was initialized and for multibyte encodings, mostly independent on language + * (unless disabled with enca_set_multibyte()). + * + * This function never modifies @buffer (can be even used with string literal + * @buffer) at the expense it's generally slower than enca_analyse(). + * + * Returns: Encoding of @buffer. When charset part of return value is + * #ENCA_CS_UNKNOWN, encoding was not determined. Check + * enca_errno() for reason. + **/ +EncaEncoding +enca_analyse_const(EncaAnalyserState *analyser, + const unsigned char *buffer, + size_t size) +{ + assert(analyser != NULL); + analyser->options.const_buffer = 1; + return analyse(analyser, (unsigned char *)buffer, size); +} + +/** + * analyse: + * @analyser: An analyser initialized for some language. + * @buffer: Buffer to be analysed. + * @size: Size of @buffer. + * + * Analyses @buffer and finds its encoding. + * + * Returns: Encoding of @buffer. + **/ +static EncaEncoding +analyse(EncaAnalyserState *analyser, + unsigned char *buffer, + size_t size) +{ + analyser->result = ENCODING_UNKNOWN; + + /* Empty buffer? */ + if (size == 0) { + analyser->gerrno = ENCA_EEMPTY; + return analyser->result; + } + assert(buffer != NULL); + + /* Initialize stuff. */ + analyser->gerrno = 0; + + analyser->buffer = buffer; + analyser->size = size; + + analyser->buffer2 = NULL; + analyser->size2 = 0; + + analyser->gerrno = make_guess(analyser); + if (analyser->gerrno) + analyser->result = ENCODING_UNKNOWN; + + /* When buffer2 is not NULL, then it holds the original buffer, so we must + * free the copy (i.e. buffer, not buffer2!). */ + if (analyser->buffer2 != NULL) + enca_free(analyser->buffer); + + return analyser->result; +} + +/** + * make_guess: + * @analyser: An analyser whose buffer is to be analysed. + * + * Finds encoding of @buffer and stores it in @analyser->result. + * + * Returns: Zero on success, nonzero error code when the encoding was not + * determined. + **/ +static EncaErrno +make_guess(EncaAnalyserState *analyser) +{ + const unsigned short int *const *const weights = analyser->lang->weights; + const unsigned short int *const significant = analyser->lang->significant; + size_t *const counts = analyser->counts; + size_t *const order = analyser->order; + double *const ratings = analyser->ratings; + const EncaAnalyserOptions *const options = &(analyser->options); + unsigned char *buffer = analyser->buffer; + size_t size = analyser->size; + + static int ascii = ENCA_CS_UNKNOWN; /* ASCII charset id */ + + size_t fchars; /* characters filtered out */ + size_t i, cs; + + /* Initialize when we are called the first time. */ + if (ascii == ENCA_CS_UNKNOWN) { + ascii = enca_name_to_charset("ascii"); + assert(ascii != ENCA_CS_UNKNOWN); + } + + /* Count characters. */ + count_characters(analyser); + + /* Pure ascii file (but may be qp-encoded!). */ + if (!analyser->bin && !analyser->up) { + if (options->multibyte_enabled) { + if (try_test_list(analyser, ENCA_MULTIBYTE_TESTS_ASCII)) + return 0; + } + + if (options->interpreted_surfaces && looks_like_qp(analyser)) { + /* Quoted printables => recompute aliases and recount characters. */ + buffer = analyser->buffer; + size = analyser->size; + count_characters(analyser); + } + + if (!analyser->bin && !analyser->up) { + /* Plain ascii. */ + analyser->result.charset = ascii; + analyser->result.surface |= enca_eol_surface(buffer, size, + analyser->counts); + return 0; + } + } + + /* Binary encodings (binary noise is handled later). */ + if (analyser->bin && options->multibyte_enabled) { + if (try_test_list(analyser, ENCA_MULTIBYTE_TESTS_BINARY)) + return 0; + } + /* When interpreted surfaces are not allowed and sample contains binary data, + * we can give it up right here. */ + if (!options->interpreted_surfaces && analyser->bin) + return ENCA_EGARBAGE; + + /* Multibyte 8bit sample (utf-8), this has to be tested before + * filtering too -- no language independent multibyte encoding can be + * assumed to survive it. */ + if (!analyser->bin && analyser->up && options->multibyte_enabled) { + if (try_test_list(analyser, ENCA_MULTIBYTE_TESTS_8BIT)) + return 0; + } + + /* Now it can still be a regular 8bit charset (w/ or w/o noise), language + * dependent MBCS (w/ or w/o noise), ascii w/ noise or just garbage. */ + + /* When the buffer must be treated as const and filters are enabled + * (and we didn't created a copy earlier), create a copy and store + * original into buffer2 */ + if (options->const_buffer + && options->filtering + && analyser->buffer2 == NULL) { + analyser->buffer2 = buffer; + analyser->size2 = size; + analyser->buffer = memcpy(enca_malloc(size), buffer, size); + buffer = analyser->buffer; + } + + /* Filter out blocks of binary data and box-drawing characters. */ + fchars = 0; + if (options->filtering) { + if (analyser->bin) { + fchars = filter_binary(buffer, size, FILL_CHARACTER); + if (fchars) + analyser->result.surface |= ENCA_SURFACE_EOL_BIN; + } + fchars += enca_filter_boxdraw(analyser, FILL_CHARACTER); + } + + /* At least something should remain after filtering. */ + if (size - fchars < sqrt((double)size)) + return ENCA_EFILTERED; + + /* Detect surface. */ + analyser->result.surface |= enca_eol_surface(buffer, size, counts); + + /* When sample has been damaged by filters, recount characters. */ + if (fchars) { + count_characters(analyser); + + if (!analyser->up) { + analyser->result.charset = ascii; + /* FIXME: What if it's ASCII + box-drawing characters? */ + analyser->result.surface |= ENCA_SURFACE_EOL_BIN; + return 0; + } + } + + /* Check multibyte 8bit sample (utf-8) again. + * Chances are filtering helped it, even if it most probably destroyed it. */ + if (analyser->up && options->multibyte_enabled) { + if (try_test_list(analyser, ENCA_MULTIBYTE_TESTS_8BIT_TOLERANT)) + return 0; + } + + /* When no regular charsets are present (i.e. language is `none') + * nothing of the following procedure has sense so just quit. */ + if (analyser->ncharsets == 0) + return ENCA_ENOCS8; + + /* How many significant characters we caught? */ + if (!check_significant(analyser)) + return ENCA_ESIGNIF; + + /* Try pair analysis first. */ + if (enca_pair_analyse(analyser)) + return 0; + + /* Regular, language dependent 8bit charsets. + * + * When w_rs is relative occurence of character s in charset r we multiply + * count[s] with factor (the sum in denominator is so-called significancy) + * + * w + * rs + * ---------------- + * ___ + * \ + * eps + > w + * /___ rs + * r + */ + if (weights) { + for (cs = 0; cs < analyser->ncharsets; cs++) { + ratings[cs] = 0.0; + for (i = 0; i < 0x100; i++) { + ratings[cs] += weights[cs][i]/(significant[i] + EPSILON)*counts[i]; + } + } + } else { + assert(analyser->lang->ratinghook); + analyser->lang->ratinghook(analyser); + } + + /* Find winner and second best. */ + enca_find_max_sec(analyser); + + /* Run langauge specific hooks. */ + if (analyser->ncharsets > 1 && analyser->lang->hook) + analyser->lang->hook(analyser); + + /* Now we have found charset with the best relative ratings + but we need an absolute test to detect total garbage. */ + if (options->test_garbageness && weights + && test_garbage(analyser)) + return ENCA_EGARBAGE; + + /* Do we have a winner? */ + if (analyser->ncharsets == 1) { + analyser->result.charset = analyser->charsets[order[0]]; + return 0; + } + + if (ratings[order[0]]/(ratings[order[1]] + EPSILON) + < options->threshold + EPSILON) { + /* Unfortunately no, but in ambiguous mode have the last chance. */ + if (options->ambiguous_mode && weights) + return ambiguous_hook(analyser); + + return ENCA_EWINNER; + } + analyser->result.charset = analyser->charsets[order[0]]; + + return 0; +} + +/** + * filter_binary: + * @buffer: Buffer to be filtered. + * @size: Size of @buffer. + * @fill_char: Replacement character. + * + * Replace blocks of binary characters in @buffer with @fill_char. + * + * Returns: Number of characters filtered out. + **/ +static size_t +filter_binary(unsigned char *buffer, + size_t size, + unsigned char fill_char) +{ + int mode; /* Mode 0 == text; mode > 0 binary, contains number of character + remaining to switch to text mode. */ + size_t i, xout; + unsigned char old[BIN_TEXT_CHAR_MIN - 1]; /* saved maybe-text characters */ + + mode = 0; + xout = 0; + for (i = 0; i < size; i++) { + if (enca_isbinary(buffer[i])) + mode = BIN_TEXT_CHAR_MIN; + else { + if (mode > 0) { + if (enca_istext(buffer[i])) { + mode--; + if (mode == 0) { + /* Restore saved characters. */ + unsigned char *b = buffer + i+1 - BIN_TEXT_CHAR_MIN; + size_t j; + + for (j = 0; j < BIN_TEXT_CHAR_MIN-1; j++) + b[j] = old[j]; + xout -= BIN_TEXT_CHAR_MIN-1; + } + else + /* Save this text character. */ + old[BIN_TEXT_CHAR_MIN - mode - 1] = buffer[i]; + } + else mode = BIN_TEXT_CHAR_MIN; + } + } + /* Fill binary characters with FILL_CHARACTER */ + if (mode > 0) { + buffer[i] = fill_char; + xout++; + } + } + + /* Return number of characters filled with fill_char. */ + return xout; +} + +/** + * ambiguous_hook: + * @analyser: An analyser. + * + * Checks whether we can determine the charset, allowing the result to be + * ambiguous. + * + * I.e. checks wheter meaning of all present characters is the same in all + * charsets under threshold, and if so, set @analyser->result accordingly. + * + * Returns: Zero on success, #ENCA_EWINNER when result cannot be determined. + **/ +static EncaErrno +ambiguous_hook(EncaAnalyserState *analyser) +{ + const double *const ratings = analyser->ratings; + const size_t max = analyser->order[0]; + const int csmax = analyser->charsets[max]; + const double t = analyser->options.threshold; + size_t i; + + for (i = 0; i < analyser->ncharsets; i++) { + if (i != max + && ratings[max]/(ratings[i] + EPSILON) < t + EPSILON) { + if (!enca_charsets_subset_identical(csmax, analyser->charsets[i], + analyser->counts)) + return ENCA_EWINNER; + } + } + + if (analyser->lang->eolhook) + analyser->lang->eolhook(analyser); + + analyser->result.charset = analyser->charsets[analyser->order[0]]; + return 0; +} + +/** + * try_test_list: + * @analyser: An analyser. + * @tests: List of test functions, NULL-terminated. + * + * Sequentially try @tests until some succeed or the list is exhausted. + * + * Returns: Nonzero when some test succeeded (@analyser->result is then set + * accordingly), zero otherwise. + **/ +static int +try_test_list(EncaAnalyserState *analyser, + EncaGuessFunc *tests) +{ + int i; + + for (i = 0; tests[i] != NULL; i++) { + if (tests[i](analyser)) + return 1; + } + + return 0; +} + +/** + * looks_like_qp: + * @analyser: An analyser. + * + * Checks whether @analyser buffer is QP-encoded. + * + * If so, it sets ENCA_SURFACE_QP in result and removes this surface, saving + * original buffer in @analyser->buffer2 (if not saved yet). + * + * Must be called with buffer containing only 7bit characters! + * + * Returns: Nonzero when @analyser buffer is QP-encoded. + **/ +static int +looks_like_qp(EncaAnalyserState *analyser) +{ + /* QP escape character. */ + static const unsigned char QP_ESCAPE = '='; + + /* THIS IS A GENERATED TABLE, see tools/expand_table.pl */ + static const short int HEXDIGITS[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0, 0, 0, 0, 0, 0, + 0, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + }; + + unsigned char *buffer = analyser->buffer; + size_t size = analyser->size; + + size_t qpcount = 0; /* number of qp encoded characters */ + size_t reduce = 0; /* how shorter will be the buffer after removing /qp */ + unsigned char *buffer2; + unsigned char *p, *p2, *p0; + + /* When the file doesn't contain enough escape characters, + don't waste time scanning it. */ + if (analyser->counts[(int)QP_ESCAPE] < analyser->options.min_chars) + return 0; + + /* Count qp encoded characters. */ + p = memchr(buffer, QP_ESCAPE, size); + while (p != NULL && (size_t)(p-buffer) + 2 < size) { + if (*p == QP_ESCAPE) { + reduce++; + p++; + if (*p == CR || *p == LF) { + while ((size_t)(p-buffer) < size + && (*p == CR || *p == LF)) { + reduce++; + p++; + } + continue; + } + + if (HEXDIGITS[*p] && HEXDIGITS[*(p+1)]) { + qpcount++; + reduce++; + } + else + return 0; + + p += 2; + continue; + } + p = memchr(p, QP_ESCAPE, size - (p - buffer)); + } + + /* When we decide it is qp encoded text, extract the 8bit characters right + now. */ + if (qpcount < analyser->options.min_chars) + return 0; + + analyser->result.surface |= ENCA_SURFACE_QP; + /* When the buffer must be treated as const (and we didn't created a copy + * earlier), create a copy and store original into buffer2 */ + analyser->size -= reduce; + if (analyser->options.const_buffer + && analyser->buffer2 == NULL) { + analyser->buffer2 = buffer; + analyser->size2 = size; + analyser->buffer = enca_malloc(analyser->size); + buffer = analyser->buffer; + buffer2 = analyser->buffer2; + } + else + buffer2 = analyser->buffer; + + /* Don't mess with too much queer stuff, OTOH try to create something + strict UTF-8 parser can accept. */ + p2 = buffer2; + p0 = buffer; + p = memchr(buffer2, QP_ESCAPE, size); + while (p != NULL && (size_t)(p-buffer2) + 2 < size) { + memmove(p0, p2, p-p2); + p0 += p - p2; + p++; + if (*p == CR || *p == LF) { + while ((size_t)(p-buffer2) < size + && (*p == CR || *p == LF)) + p++; + } + else { + *p0++ = ((HEXDIGITS[*p]-1) << 4) + HEXDIGITS[*(p+1)]-1; + p += 2; + } + p2 = p; + p = memchr(p, QP_ESCAPE, size - (p - buffer2)); + } + memmove(p0, p2, size - (p2 - buffer2)); + + return 1; +} + +/** + * enca_eol_surface: + * @buffer: A buffer whose EOL type is to be detected. + * @size: Size of @buffer. + * @counts: Character counts. + * + * Find EOL type of sample in @buffer. + * + * Returns: The EOL surface flags. + **/ +EncaSurface +enca_eol_surface(const unsigned char *buffer, + size_t size, + const size_t *counts) +{ + unsigned char *p; + size_t i; + + /* Return BINARY when the sample contains some strange characters. + * Note this can happen only with filtering off. */ + for (i = 0; i < 0x20; i++) { + if (counts[i] && enca_isbinary(i)) + return ENCA_SURFACE_EOL_BIN; + } + /* Return LF (Unix) also when the sample doesn't contain any EOLs at all. */ + if (counts[CR] == 0) + return ENCA_SURFACE_EOL_LF; + /* But when it contain no LF's then it's Mac. */ + if (counts[LF] == 0) + return ENCA_SURFACE_EOL_CR; + /* Otherwise it's MS-DOG or garbage. */ + if (counts[CR] != counts[LF]) + return ENCA_SURFACE_EOL_MIX; + + /* MS-DOS */ + p = memchr(buffer+1, LF, size-1); + while (p != NULL) { + if (*(p-1) != CR) + return ENCA_SURFACE_EOL_MIX; + p++; + p = memchr(p, LF, size - (p - buffer)); + } + + return ENCA_SURFACE_EOL_CRLF; +} + +/** + * enca_find_max_sec: + * @analyser: An analyser. + * + * Updates @analyser->order according to charset @ratings. + * + * XXX: This should be stable sort. The ordering is defined by + * data//.h header file which is in turn defined by odering in + * the appropriate script (doit.sh). Silly. + * + * Must not be called with @analyser with no regular charsets. + **/ +void +enca_find_max_sec(EncaAnalyserState *analyser) +{ + double *const ratings = analyser->ratings; + size_t *const order = analyser->order; + size_t i, j; + + assert(analyser->ncharsets >= 1); + + /* Always start from 0, 1, 2, 3, ... */ + for (i = 0; i < analyser->ncharsets; i++) + order[i] = i; + + /* Sort it with stable sort */ + for (i = 0; i+1 < analyser->ncharsets; i++) { + double m = ratings[order[i]]; + + for (j = i+1; j < analyser->ncharsets; j++) { + if (m < ratings[order[j]]) { + size_t z = order[j]; + + order[j] = order[i]; + order[i] = z; + m = ratings[z]; + } + } + } +} + +/** + * count_characters: + * @analyser: An analyser. + * + * Recomputes occurence tables in @analyser, updating @analyser->bin and + * @analyser->up counts too. + **/ +static void +count_characters(EncaAnalyserState *analyser) +{ + const size_t size = analyser->size; + const unsigned char *const buffer = analyser->buffer; + size_t *const counts = analyser->counts; + size_t i; + + analyser->bin = 0; + analyser->up = 0; + + for (i = 0; i < 0x100; i++) + counts[i] = 0; + + for (i = 0; i < size; i++) + counts[buffer[i]]++; + + for (i = 0; i < 0x100; i++) { + if (enca_isbinary(i)) + analyser->bin += counts[i]; + } + + for (i = 0x080; i < 0x100; i++) + analyser->up += counts[i]; +} + +/** + * check_significant: + * @analyser: An analyser. + * + * Counts significant characters in sample. + * Currenly disabled for language depedent multibyte charsets. + * + * Returns: Nonzero when there are at least options.min_chars significant + * characters, zero otherwise. + **/ +static size_t +check_significant(EncaAnalyserState *analyser) +{ + const unsigned short int *const significant = analyser->lang->significant; + size_t *const counts = analyser->counts; + size_t i; + size_t sgnf = 0; + + if (!significant) + return 1; + + for (i = 0; i < 0x100; i++) { + if (significant[i]) + sgnf += counts[i]; + } + + return sgnf >= analyser->options.min_chars; +} + +/** + * test_garbage: + * @analyser: An analyser. + * + * Checks whether sample is just garbage (near white noise) or not. + * + * The theory behind this test is shomewhat speculative. + * + * Returns: Nonzero when sample is garbage, zero otherwise. + **/ +static int +test_garbage(EncaAnalyserState *analyser) +{ + const unsigned short int *const *const weights = analyser->lang->weights; + const unsigned short int *const w = weights[analyser->order[0]]; + size_t *const counts = analyser->counts; + double garbage, r; + size_t i; + + /* 8bit white noise. */ + r = analyser->lang->weight_sum/128.0*analyser->options.threshold; + garbage = 0.0; + for (i = 0x080; i < 0x100; i++) + garbage += (r - w[i])*counts[i]; + + garbage /= analyser->lang->weight_sum; + return garbage > 0.0; +} + +/** + * enca_set_multibyte: + * @analyser: An analyser. + * @multibyte: Whether multibyte encoding tests should be enabled (nonzero to + * enable, zero to disable). + * + * Enables or disables multibyte encoding tests for @analyser. + * + * This option is enabled by default. + * + * When multibyte encodings are disabled, only 8bit charsets are checked. + * Disabling them for language with no 8bit charsets leaves only one thing + * enca_analyse() could test: whether the sample is purely 7bit ASCII or not + * (the latter leading to analyser failure, of course). + * + * Multibyte encoding detection is also affected by + * enca_set_termination_strictness(). + **/ +void +enca_set_multibyte(EncaAnalyser analyser, + int multibyte) +{ + assert(analyser != NULL); + analyser->options.multibyte_enabled = (multibyte != 0); +} + +/** + * enca_get_multibyte: + * @analyser: An analyser. + * + * Returns whether @analyser can return multibyte encodings. + * + * See enca_set_multibyte() for more detailed description of multibyte + * encoding checking. + * + * Returns: Nonzero when multibyte encoding are possible, zero otherwise. + * + * Since: 1.3. + **/ +int +enca_get_multibyte(EncaAnalyser analyser) +{ + assert(analyser != NULL); + return analyser->options.multibyte_enabled; +} + +/** + * enca_set_interpreted_surfaces: + * @analyser: An analyser. + * @interpreted_surfaces: Whether interpreted surfaces tests should be enabled + * (nonzero to allow, zero to disallow). + * + * Enables or disables interpeted surfaces tests for @analyser. + * + * This option is enabled by default. + * + * To allow simple applications which care about charset only and don't want + * to wrestle with surfaces, neglecting surface information should not have + * serious consequences. While ignoring EOL type surface is feasible, and + * ignoring UCS byteorders may be acceptable in endian-homogenous environment; + * ignoring the fact file is Quoted-Printable encoded can have disasterous + * consequences. By disabling this option you can disable surfaces requiring + * fundamental reinterpretation of the content, namely %ENCA_SURFACE_QP + * and %ENCA_SURFACE_EOL_BIN (thus probably making enca_analyse() to fail on + * such samples). + **/ +void +enca_set_interpreted_surfaces(EncaAnalyser analyser, + int interpreted_surfaces) +{ + assert(analyser != NULL); + analyser->options.interpreted_surfaces = (interpreted_surfaces != 0); +} + +/** + * enca_get_interpreted_surfaces: + * @analyser: An analyser. + * + * Returns whether @analyser allows interpreted surfaces. + * + * See enca_set_interpreted_surfaces() for more detailed description of + * interpreted surfaces. + * + * Returns: Nonzero when interpreted surfaces are possible, zero otherwise. + * + * Since: 1.3. + **/ +int +enca_get_interpreted_surfaces(EncaAnalyser analyser) +{ + assert(analyser != NULL); + return analyser->options.interpreted_surfaces; +} + +/** + * enca_set_ambiguity: + * @analyser: An analyser. + * @ambiguity: Whether result can be ambiguous (nonzero to allow, zero to + * disallow). + * + * Enables or disables ambiguous mode for @analyser. + * + * This option is disabled by default. + * + * In ambiguous mode some result is returned even when the charset cannot be + * determined uniquely, provided that sample contains only characters which + * have the same meaning in all charsets under consideration. + **/ +void +enca_set_ambiguity(EncaAnalyser analyser, + int ambiguity) +{ + assert(analyser != NULL); + analyser->options.ambiguous_mode = (ambiguity != 0); +} + +/** + * enca_get_ambiguity: + * @analyser: An analyser. + * + * Returns whether @analyser can return ambiguous results. + * + * See enca_set_ambiguity() for more detailed description of ambiguous results. + * + * Returns: Nonzero when ambiguous results are allowed, zero otherwise. + * + * Since: 1.3. + **/ +int +enca_get_ambiguity(EncaAnalyser analyser) +{ + assert(analyser != NULL); + return analyser->options.ambiguous_mode; +} + +/** + * enca_set_filtering: + * @analyser: An analyser. + * @filtering: Whether filters should be enabled (nonzero to enable, zero to + * disable). + * + * Enables or disables filters for @analyser. + * + * This option is enabled by default. + * + * Various filters are used to filter out block of binary noise and box-drawing + * characters that could otherwise confuse enca. In cases this is unwanted, + * you can disable them by setting this option to zero. + **/ +void +enca_set_filtering(EncaAnalyser analyser, + int filtering) +{ + assert(analyser != NULL); + analyser->options.filtering = (filtering != 0); +} + +/** + * enca_get_filtering: + * @analyser: An analyser. + * + * Returns whether @analyser has filtering enabled. + * + * See enca_set_filtering() for more detailed description of filtering. + * + * Returns: Nonzero when filtering is enabled, zero otherwise. + * + * Since: 1.3. + **/ +int +enca_get_filtering(EncaAnalyser analyser) +{ + assert(analyser != NULL); + return analyser->options.filtering; +} + +/** + * enca_set_garbage_test: + * @analyser: An analyser. + * @garabage_test: Whether garbage test should be allowed (nonzero to enable, + * nzero to disable). + * + * Enables or disables garbage test for @analyser. + * + * This option is enabled by default. + * + * To prevent white noise (and almost-white noise) from being accidentally + * detected as some charset, a garbage test is used. In cases this is + * unwanted, you can disable is by setting this option to zero. + **/ +void +enca_set_garbage_test(EncaAnalyser analyser, + int garabage_test) +{ + assert(analyser != NULL); + analyser->options.test_garbageness = (garabage_test != 0); +} + +/** + * enca_get_garbage_test: + * @analyser: An analyser. + * + * Returns whether @analyser has garbage test enabled. + * + * See enca_set_garbage_test() for more detailed description of garbage test. + * + * Returns: Nonzero when garbage test is enabled, zero otherwise. + * + * Since: 1.3. + **/ +int +enca_get_garbage_test(EncaAnalyser analyser) +{ + assert(analyser != NULL); + return analyser->options.test_garbageness; +} + +/** + * enca_set_termination_strictness: + * @analyser: An analyser. + * @termination_strictness: Whether multibyte sequences are required to be + * terminated correctly at the end of sample + * (nonzero to require, zero to relax). + * + * Enables or disables requiring multibyte sequences to be terminated correctly + * at the end of sample. + * + * This option is enabled by default. + * + * The sample given to enca_analyse() generally may not be a complete text + * (e.g. for efficiency reasons). As a result, it may end in the middle of a + * multibyte sequence. In this case, you should disable this option to + * prevent rejecting some charset just because the sample don't terminate + * correctly. On the other hand, when given sample contains whole text, you + * should always enable this option to assure correctness of the result. + * + * Note this option does NOT affect fixed character size encodings, like UCS-2 + * and UCS-4; sample is never assumed to contain UCS-2 text when its size is + * not even (and similarly for UCS-4). + **/ +void +enca_set_termination_strictness(EncaAnalyser analyser, + int termination_strictness) +{ + assert(analyser != NULL); + analyser->options.termination_strictness = (termination_strictness != 0); +} + +/** + * enca_get_termination_strictness: + * @analyser: An analyser. + * + * Returns whether @analyser requires strict termination. + * + * See enca_set_termination_strictness() for more detailed description of + * termination strictness. + * + * Returns: Nonzero when strict termination is required, zero otherwise. + * + * Since: 1.3. + **/ +int +enca_get_termination_strictness(EncaAnalyser analyser) +{ + assert(analyser != NULL); + return analyser->options.termination_strictness; +} + +/** + * enca_set_significant: + * @analyser: An analyser. + * @significant: Minimal number of required significant characters. + * + * Sets the minimal number of required significant characters. + * + * The default value of this option is 10. + * + * enca_analyse() refuses to make a decision unles at least this number + * of significant characters is found in sample. You may want to lower this + * number for very short texts. + * + * Returns: Zero on success, nonzero on failure, i.e. when you passed zero + * as @significant. It sets analyser errno to ENCA_EINVALUE on + * failure. + **/ +int +enca_set_significant(EncaAnalyser analyser, + size_t significant) +{ + assert(analyser != NULL); + if (significant == 0) + return analyser->gerrno = ENCA_EINVALUE; + + analyser->options.min_chars = significant; + return 0; +} + +/** + * enca_get_significant: + * @analyser: An analyser. + * + * Returns the minimum number of significant characters required by @analyser. + * + * See enca_set_significant() for more detailed description of required + * significant characters. + * + * Returns: The minimum number of significant characters. + * + * Since: 1.3. + **/ +size_t +enca_get_significant(EncaAnalyser analyser) +{ + assert(analyser != NULL); + return analyser->options.min_chars; +} + +/** + * enca_set_threshold: + * @analyser: An analyser. + * @threshold: Minimal ratio between winner and second best guess. + * + * Sets the minimal ratio between the most probable and the second most + * probable charsets. + * + * The default value of this option is 1.4142. + * + * enca_analyse() consideres the result known only when there's a clear gap + * between the most probable and the second most probable charset + * proababilities. Lower @threshold values mean larger probability of a + * mistake and smaller probability of not recognizing a charset; higher + * @threshold values the contrary. Threshold value of 2 is almost infinity. + * + * Returns: Zero on success, nonzero on failure, i.e. when you passed value + * smaller than 1.0 as @threshold. It sets analyser errno to + * ENCA_EINVALUE on failure. + **/ +int +enca_set_threshold(EncaAnalyser analyser, + double threshold) +{ + assert(analyser != NULL); + if (threshold < 1.0) + return analyser->gerrno = ENCA_EINVALUE; + + analyser->options.threshold = threshold; + return 0; +} + +/** + * enca_get_threshold: + * @analyser: An analyser. + * + * Returns the threshold value used by @analyser. + * + * See enca_set_threshold() for more detailed threshold description. + * + * Returns: The threshold value. + * + * Since: 1.3. + **/ +double +enca_get_threshold(EncaAnalyser analyser) +{ + assert(analyser != NULL); + return analyser->options.threshold; +} + +/* vim: ts=2 sw=2 et + */ + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/guess.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/guess.lo new file mode 100644 index 0000000..4b31f7a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/guess.lo @@ -0,0 +1,12 @@ +# guess.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='guess.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/guess.o b/wlx/wayland_qt_base/build/enca-1.19/lib/guess.o new file mode 100644 index 0000000..c16631d Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/guess.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/internal.h b/wlx/wayland_qt_base/build/enca-1.19/lib/internal.h new file mode 100644 index 0000000..1330b9f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/internal.h @@ -0,0 +1,507 @@ +#ifndef LIBENCA_H +#define LIBENCA_H +/*************************************************************************** + * + * Do not use anything from this file in applications. + * Or else don't be surprised when they mysteriously crash. + * Changes in internal interfaces DON'T count as interface + * changes and DON'T cause library API version changes. + * + ***************************************************************************/ + +#include + +#include "enca.h" + +/* str- an mem- function, theoretically they are all in string.h */ +#ifdef HAVE_STRING_H +# include +#else /* HAVE_STRING_H */ +# ifdef HAVE_STRINGS_H +# include +# endif /* HAVE_STRINGS_H */ +#endif /* HAVE_STRING_H */ + +#ifdef HAVE_MEMORY_H +# include +#endif /* HAVE_MEMORY_H */ + +#ifdef DEBUG +# include +#endif /* DEBUG */ + +/* Flags for character type table. + * 0-10 are standard ones, 11-13 Enca-specific. */ +enum { + ENCA_CTYPE_ALNUM = 1 << 0, + ENCA_CTYPE_ALPHA = 1 << 1, + ENCA_CTYPE_CNTRL = 1 << 2, + ENCA_CTYPE_DIGIT = 1 << 3, + ENCA_CTYPE_GRAPH = 1 << 4, + ENCA_CTYPE_LOWER = 1 << 5, + ENCA_CTYPE_PRINT = 1 << 6, + ENCA_CTYPE_PUNCT = 1 << 7, + ENCA_CTYPE_SPACE = 1 << 8, + ENCA_CTYPE_UPPER = 1 << 9, + ENCA_CTYPE_XDIGIT = 1 << 10, + ENCA_CTYPE_NAME = 1 << 11, + ENCA_CTYPE_BINARY = 1 << 12, + ENCA_CTYPE_TEXT = 1 << 13 +}; + +/* Forward delcarations of structured Enca types */ +typedef struct _EncaAnalyserOptions EncaAnalyserOptions; +typedef struct _EncaAnalyserState EncaAnalyserState; +typedef struct _EncaCharsetInfo EncaCharsetInfo; +typedef struct _EncaLanguageInfo EncaLanguageInfo; +typedef struct _EncaLanguageHookData1CS EncaLanguageHookData1CS; +typedef struct _EncaLanguageHookDataEOL EncaLanguageHookDataEOL; +typedef struct _EncaUTFCheckData EncaUTFCheckData; + +/** + * EncaCharsetInfo: + * @enca: Default, implicit name in enca. + * @rfc1345: RFC1345 charset name. + * (For charsets not in RFC1345, some canonical name is invented.) + * @cstocs: Cstocs charset name or -1. + * @iconv: Iconv charset name or -1. + * @mime: Preferred MIME charset name or -1. + * @human: Human comprehensible description. + * @flags: Charset properties (7bit, 8bit, multibyte, ...). + * @nsurface: Natural surface (`implied' in recode). + * + * General charset informnations. + * + * All the #int fields are indices in #ALIAS_LIST[]. + **/ +struct _EncaCharsetInfo { + int enca; + int rfc1345; + int cstocs; + int iconv; + int mime; + const char *human; + unsigned int flags; + unsigned int nsurface; +}; + +/** + * EncaHookFunc: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Language hook function type. + * + * Launches language specific hooks for a particular language. + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +typedef int (* EncaHookFunc)(EncaAnalyserState *analyser); + +/** + * EncaGuessFunc: + * @analyser: Analyser state whose buffer should be checked. + * + * Special (multibyte) encoding check function type. + * + * Returns: Nonzero if analyser->result has been set, zero otherwise. + **/ +typedef int (* EncaGuessFunc)(EncaAnalyserState *analyser); + +/** + * EncaLanguageInfo: + * @name: Language name, or more precisely, locale name. + * @humanname: Normal human-readable [English] language name. + * @ncharsets: Number of charsets in this language. + * @csnames: Charset names [@ncharsets]. + * @weights: Character weights for charsets [@ncharsets][0x100]. + * @significant: Character significancy data [0x100]. + * @letters: Characters considered letters (255's have no entry in @pairs, + * zeroes are non-letters aka FILL_NONLETTERs) + * @pairs: Frequent pair table [max number in @letters]. + * @weight_sum: Sum of all @weights (is the same for all charsets). + * @hook: Hook function (deciding hard cases). + * @eolhook: EOL hook function (deciding ambiguous cases based on EOL type). + * @ratinghook: Helper to calculate ratings for weightingless languages. + * + * Language specific data. + **/ +struct _EncaLanguageInfo { + const char *name; + const char *humanname; + size_t ncharsets; + const char *const *csnames; + const unsigned short int *const *weights; + const unsigned short int *significant; + const unsigned char *const *letters; + const unsigned char **const *pairs; + long int weight_sum; + EncaHookFunc hook; + EncaHookFunc eolhook; + EncaHookFunc lcuchook; + EncaHookFunc ratinghook; +}; + +/** + * EncaAnalyserOptions: + * @const_buffer: Treat buffer as const? Otherwise its content can be, + * and probably will be, modified. + * @min_chars: Minimal number significant characters. + * @threshold: Minimal ratio between winner and the second. + * @multibyte_enabled: Check for multibyte encodings? + * @interpreted_surfaces: Allow surfaces causing fundamental reinterpretation? + * @ambiguous_mode: Ambiguous mode? + * @filtering: Allow binary and box-drawing filters? + * @test_garbageness: Do test garbageness? + * @termination_strictness: Disallow broken multibyte sequences at buffer end? + * + * Analyser options, a part of analyser state. + **/ +struct _EncaAnalyserOptions { + int const_buffer; + size_t min_chars; + double threshold; + int multibyte_enabled; + int interpreted_surfaces; + int ambiguous_mode; + int filtering; + int test_garbageness; + int termination_strictness; +}; + +/** + * EncaAnalyserState: + * @lang: Language informations. + * @ncharsets: Number of 8bit charsets in this language. + * (Equal to @lang->ncharsets.) + * @charsets: 8bit charset id's [@ncharsets]. + * @gerrno: Guessing gerrno. + * @size: Size of buffer. + * @buffer: Buffer whose encoding is to be detected [@size]. + * (Owned by outer world.) + * @result: Result returned to caller. + * @counts: Character counts [0x100]. + * @bin: Number of `binary' characters. + * @up: Number of 8bit characters. + * @ratings: 8bit charset ratings [@ncharsets]. + * @order: Charset indices (not id's) sorted by ratings in descending order + * [ncharsets]. + * @size2: Size of buffer2. + * @buffer2: A temporary secondary buffer [@size2]. + * @utfch: Double-UTF-8 test data [@ncharsets]. + * @utfbuf: Double-UTF-8 buffer for various UCS-2 character counting [0x10000]. + * (Magic: see mark_scratch_buffer() for description.) + * @pair2bits: Character pair map to charsets [0x100000] (indexed + * 0x100*first + second). Each bit corresponds to one charset, + * when set, the pair is `good' for the given charset. The + * type is char, so it breaks for @ncharsets > 8, but it should + * not be accessed from outer world, so it can be easily enlarged + * to more bits. + * @bitcounts: Counts for each possible bit combinations in @pair2bits + * [0x1 << ncharsets]. + * @pairratings: Counts of `good' pairs per charset [@ncharsets]. + * @lcbits: If a character is lowercase in some charset, correspinding bit + * is set [0x100]. + * @ucbits: If a character is uppercase in some charset, correspinding bit + * is set [0x100]. + * @options: Analyser options. + * + * The internal analyser state. + * + * Passed as an opaque object (`this') to analyser calls. + **/ +struct _EncaAnalyserState { + /* Language data. */ + const EncaLanguageInfo *lang; + size_t ncharsets; + int *charsets; + /* Analyser state. */ + EncaErrno gerrno; + size_t size; + unsigned char *buffer; + EncaEncoding result; + size_t *counts; + size_t bin; + size_t up; + double *ratings; + size_t *order; + size_t size2; + unsigned char *buffer2; + /* Double-UTF-8 data. */ + EncaUTFCheckData *utfch; + int *utfbuf; + /* Pair frequency data */ + unsigned char *pair2bits; + size_t *bitcounts; + size_t *pairratings; + /* LCUC data XXX: unused (yet) */ + size_t *lcbits; + size_t *ucbits; + /* Options. */ + EncaAnalyserOptions options; +}; + +/** + * EncaLanguageHookData1CS: + * @name: Charset name. + * @size: Number of characters in @list. + * @list: Extra-important character list for the charset. + * @cs: Charset number. This is an index in @analyser arrays (like @charsets), + * NOT a charset id. + * + * Cointainer for data needed by enca_language_hook_ncs(). + **/ +struct _EncaLanguageHookData1CS { + const char *name; + size_t size; + const unsigned char *list; + size_t cs; +}; + +/** + * EncaLanguageHookDataEOL: + * @name: Charset name. + * @eol: The corresponding #EncaSurface bit. + * @cs: Charset number. This is an index in @analyser arrays (like @charsets), + * NOT a charset id. + * + * Cointainer for data needed by enca_language_hook_eol(). + **/ +struct _EncaLanguageHookDataEOL { + const char *name; + EncaSurface eol; + size_t cs; +}; + +/** + * EncaUTFCheckData: + * @rating: Total rating for this charset. + * @size: Number of UCS-2 characters. + * @result: Nonzero when the sample is probably Doubly-UTF-8 encoded from + * this charset. + * @ucs2: List of significant UCS-2 characters, in order [@size]. + * @weights: Weights for double-UTF-8 check [@size]. Positive means normal + * UTF-8, negative doubly-encoded. + * + * Data needed by double-UTF-8 check, per language charset. + **/ +struct _EncaUTFCheckData { + double rating; + size_t size; + int result; + int *ucs2; + int *weights; +}; + +/** + * FILL_NONLETTER: + * + * Replacement character for non-letters in pair frequencies. + **/ +#define FILL_NONLETTER '.' + +/** + * EPSILON: + * + * `Zero' for float comparsion (and to prevent division by zero, etc.). + **/ +#define EPSILON 0.000001 + +/** + * LF: + * + * Line feed character (End-of-line on Unix). + **/ +#define LF ((unsigned char)'\n') + +/** + * CR: + * + * Carriage return character (End-of-line on Macintosh). + **/ +#define CR ((unsigned char)'\r') + +/* Character type macros. + * + * The `text' and `binary' flags mark characters that can cause switch to + * binary/text mode in filter_binary(). The view of what is text and what + * is binary is quite simplistic, as we don't know the charset... + * + * The `name' flag marks characters acceptable in charset identifiers. + **/ +#define enca_ctype_test(c, t) ((enca_ctype_data[(unsigned char)c] & t) != 0) + +#define enca_isalnum(c) enca_ctype_test((c), ENCA_CTYPE_ALNUM) +#define enca_isalpha(c) enca_ctype_test((c), ENCA_CTYPE_ALPHA) +#define enca_iscntrl(c) enca_ctype_test((c), ENCA_CTYPE_CNTRL) +#define enca_isdigit(c) enca_ctype_test((c), ENCA_CTYPE_DIGIT) +#define enca_isgraph(c) enca_ctype_test((c), ENCA_CTYPE_GRAPH) +#define enca_islower(c) enca_ctype_test((c), ENCA_CTYPE_LOWER) +#define enca_isprint(c) enca_ctype_test((c), ENCA_CTYPE_PRINT) +#define enca_ispunct(c) enca_ctype_test((c), ENCA_CTYPE_PUNCT) +#define enca_isspace(c) enca_ctype_test((c), ENCA_CTYPE_SPACE) +#define enca_isupper(c) enca_ctype_test((c), ENCA_CTYPE_UPPER) +#define enca_isxdigit(c) enca_ctype_test((c), ENCA_CTYPE_XDIGIT) +#define enca_isname(c) enca_ctype_test((c), ENCA_CTYPE_NAME) +#define enca_isbinary(c) enca_ctype_test((c), ENCA_CTYPE_BINARY) +#define enca_istext(c) enca_ctype_test((c), ENCA_CTYPE_TEXT) + +/** + * ELEMENTS: + * @array: An array whose size is to be computed. + * + * Compute the number of elements of a static array. + * + * Returns: the number of elements. + **/ +#define ELEMENTS(array) (sizeof(array)/sizeof((array)[0])) + +void* enca_malloc (size_t size); +void* enca_realloc (void *ptr, + size_t size); + +/** + * enca_free: + * @ptr: Pointer to memory to free. + * + * Frees memory pointed by @ptr with free() hack and assigns it a safe value, + * thus may be called more than once. + * + * @ptr MUST be l-value. + **/ +#define enca_free(ptr) \ + { if (ptr) free(ptr); ptr=NULL; } + +/** + * NEW: + * @type: Data type to allocate. + * @n: Number of elements to allocate. + * + * An enca_malloc() wrapper. + * + * Returns: Pointer to the newly allocated memory. + **/ +#define NEW(type,n) ((type*)enca_malloc((n)*sizeof(type))) + +/** + * RENEW: + * @ptr: Pointer to already allocate memory or #NULL. + * @type: Data type to allocate. + * @n: Number of elements to resize the memory to. + * + * An enca_realloc() wrapper. + * + * Returns: Pointer to the reallocated memory (or pointer safe to call free() + * on when @n is zero). + **/ +#define RENEW(ptr,type,n) ((type*)enca_realloc((ptr),(n)*sizeof(type))) + +/** + * MAKE_HOOK_LINE: + * @name: A charset name in C-style identifier suitable form. + * + * Ugly code `beautifier' macro for language hooks. + **/ +#define MAKE_HOOK_LINE(name) \ + { #name, ELEMENTS(list_##name), list_##name, (size_t)-1 } + +/* Always use our, since we rely on enca_strdup(NULL) -> NULL */ +char* enca_strdup(const char *s); + +#ifndef HAVE_STRSTR +const char* enca_strstr(const char *haystack, + const char* needle); +#else/* not HAVE_STRSTR */ +# define enca_strstr strstr +#endif /* not HAVE_STRSTR */ + +#ifndef HAVE_STPCPY +char* enca_stpcpy(char *dest, + const char *src); +#else /* not HAVE_STPCPY */ +# define enca_stpcpy stpcpy +#endif /* not HAVE_STPCPY */ + +/** + * enca_csname: + * @cs: A charset id. + * + * A shorthand for printing names with #ENCA_NAME_STYLE_ENCA. + **/ +#define enca_csname(cs) enca_charset_name((cs), ENCA_NAME_STYLE_ENCA) + +/* common.c */ +char* enca_strconcat (const char *str, + ...); +char* enca_strappend (char *str, + ...); + +/* encnames.c */ +int enca_name_to_charset (const char *csname); +EncaSurface enca_name_to_surface (const char *sname); + +/* enca.c */ +int enca_language_init (EncaAnalyserState *analyser, + const char *langname); +void enca_language_destroy (EncaAnalyserState *analyser); +double* enca_get_charset_similarity_matrix(const EncaLanguageInfo *lang); + +/* unicodemap.c */ +int enca_charsets_subset_identical (int charset1, + int charset2, + const size_t *counts); + +/* filters.c */ +size_t enca_filter_boxdraw (EncaAnalyserState *analyser, + unsigned char fill_char); +int enca_language_hook_ncs (EncaAnalyserState *analyser, + size_t ncs, + EncaLanguageHookData1CS *hookdata); +int enca_language_hook_eol (EncaAnalyserState *analyser, + size_t ncs, + EncaLanguageHookDataEOL *hookdata); + +/* guess.c */ +void enca_guess_init (EncaAnalyserState *analyser); +void enca_guess_destroy (EncaAnalyserState *analyser); +EncaSurface enca_eol_surface (const unsigned char *buffer, + size_t size, + const size_t *counts); +void enca_find_max_sec (EncaAnalyserState *analyser); + +/* utf8_double.c */ +void enca_double_utf8_init (EncaAnalyserState *analyser); +void enca_double_utf8_destroy (EncaAnalyserState *analyser); + +/* pair.c */ +void enca_pair_init (EncaAnalyserState *analyser); +void enca_pair_destroy (EncaAnalyserState *analyser); +int enca_pair_analyse (EncaAnalyserState *analyser); + +/* Languages. */ +extern const EncaLanguageInfo ENCA_LANGUAGE_BE; +extern const EncaLanguageInfo ENCA_LANGUAGE_BG; +extern const EncaLanguageInfo ENCA_LANGUAGE_CS; +extern const EncaLanguageInfo ENCA_LANGUAGE_ET; +extern const EncaLanguageInfo ENCA_LANGUAGE_HR; +extern const EncaLanguageInfo ENCA_LANGUAGE_HU; +extern const EncaLanguageInfo ENCA_LANGUAGE_LT; +extern const EncaLanguageInfo ENCA_LANGUAGE_LV; +extern const EncaLanguageInfo ENCA_LANGUAGE_PL; +extern const EncaLanguageInfo ENCA_LANGUAGE_RU; +extern const EncaLanguageInfo ENCA_LANGUAGE_SK; +extern const EncaLanguageInfo ENCA_LANGUAGE_SL; +extern const EncaLanguageInfo ENCA_LANGUAGE_UK; +extern const EncaLanguageInfo ENCA_LANGUAGE_ZH; + +/* Multibyte test lists. + * These arrays must be NULL-terminated. */ +extern EncaGuessFunc ENCA_MULTIBYTE_TESTS_ASCII[]; +extern EncaGuessFunc ENCA_MULTIBYTE_TESTS_8BIT[]; +extern EncaGuessFunc ENCA_MULTIBYTE_TESTS_BINARY[]; +extern EncaGuessFunc ENCA_MULTIBYTE_TESTS_8BIT_TOLERANT[]; + +/* Locale-independent character type table. */ +extern const short int enca_ctype_data[0x100]; + +#endif /* not LIBENCA_H */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang.c new file mode 100644 index 0000000..bda21f2 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang.c @@ -0,0 +1,350 @@ +/* + uniform interface to particular languages + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" + +/** + * Language `none'. + * + * This language has no regular charsets, so only multibyte encodings are + * tested + **/ +static const EncaLanguageInfo ENCA_LANGUAGE___ = { + "__", /* name */ + "none", /* human name */ + 0, /* number of charsets */ + NULL, /* their names */ + NULL, /* character weights */ + NULL, /* significancy data */ + NULL, /* letter data */ + NULL, /* pair data */ + 0, /* sum of weights */ + NULL, /* hook function */ + NULL, /* eolhook function */ + NULL, /* lcuchook function */ + NULL, /* ratinghook function */ +}; + +/* All languages. */ +static const EncaLanguageInfo *const LANGUAGE_LIST[] = { + &ENCA_LANGUAGE_BE, /* Belarusian. */ + &ENCA_LANGUAGE_BG, /* Bulgarian. */ + &ENCA_LANGUAGE_CS, /* Czech. */ + &ENCA_LANGUAGE_ET, /* Estonian. */ + &ENCA_LANGUAGE_HR, /* Croatian. */ + &ENCA_LANGUAGE_HU, /* Hungarian. */ + &ENCA_LANGUAGE_LT, /* Latvian. */ + &ENCA_LANGUAGE_LV, /* Lithuanian. */ + &ENCA_LANGUAGE_PL, /* Polish. */ + &ENCA_LANGUAGE_RU, /* Russian. */ + &ENCA_LANGUAGE_SK, /* Slovak. */ + &ENCA_LANGUAGE_SL, /* Slovene. */ + &ENCA_LANGUAGE_UK, /* Ukrainian. */ + &ENCA_LANGUAGE_ZH, /* Chinese. */ + &ENCA_LANGUAGE___, /* None. */ +}; + +#define NLANGUAGES (ELEMENTS(LANGUAGE_LIST)) + +/* Local prototypes. */ +static int* language_charsets_ids(const EncaLanguageInfo *lang); +static const EncaLanguageInfo* find_language(const char *langname); + +/** + * enca_language_init: + * @analyser: Analyzer state to be initialized for this language. + * @langname: Two-letter ISO-639 language code. + * + * Initializes analyser for language @langname. + * + * Assumes @analyser is unitinialized, calling with an initialized @analyser + * leads to memory leak. + * + * Returns: Nonzero on success, zero otherwise. + **/ +int +enca_language_init(EncaAnalyserState *analyser, + const char *langname) +{ + const EncaLanguageInfo *lang; + + assert(langname != NULL); + + analyser->lang = NULL; + analyser->ncharsets = 0; + analyser->charsets = NULL; + analyser->lcbits = NULL; + analyser->ucbits = NULL; + + lang = find_language(langname); + if (lang == NULL) + return 0; + + analyser->lang = lang; + if (lang->ncharsets == 0) + return 1; + + analyser->ncharsets = lang->ncharsets; + analyser->charsets = language_charsets_ids(lang); + + return 1; +} + +/** + * enca_language_destroy: + * @analyser: Analyzer state whose language part should be destroyed. + * + * Destroys the language part of analyser state @analyser. + **/ +void +enca_language_destroy(EncaAnalyserState *analyser) +{ + enca_free(analyser->charsets); + enca_free(analyser->lcbits); + enca_free(analyser->ucbits); + analyser->ncharsets = 0; + analyser->lang = NULL; +} + +/** + * enca_get_languages: + * @n: The number of languages will be stored here. + * + * Returns list of known languages. + * + * The returned strings are two-letter ISO-639 language codes, the same as + * enca_analyser_alloc() accepts. + * + * The list of languages has to be freed by caller; the strings themselves + * must be considered constant and must NOT be freed. + * + * Returns: The list of languages, storing their number into *@n. + **/ +const char** +enca_get_languages(size_t *n) +{ + const char **languages; + size_t i; + + languages = NEW(const char*, NLANGUAGES); + for (i = 0; i < NLANGUAGES; i++) + languages[i] = LANGUAGE_LIST[i]->name; + + *n = NLANGUAGES; + return languages; +} + +/** + * enca_analyser_language: + * @analyser: An analyser. + * + * Returns name of language which was @analyser initialized for. + * + * The returned string must be considered constant and must NOT be freed. + * + * Returns: The language name. + **/ +const char* +enca_analyser_language(EncaAnalyser analyser) +{ + assert(analyser != NULL); + return analyser->lang->name; +} + +/** + * enca_language_english_name: + * @lang: A two-letter language code, such as obtained from + * enca_analyser_language() or enca_get_languages(). + * + * Returns an English name of a language given its ISO-639 code. + * + * The returned string must be considered constant and must NOT be freed. + * + * Returns: The English language name. + **/ +const char* +enca_language_english_name(const char *lang) +{ + const EncaLanguageInfo *linfo; + + linfo = find_language(lang); + if (!linfo) + return NULL; + + return linfo->humanname; +} + +/** + * enca_get_language_charsets: + * @langname: Two-letter ISO-639 language code. + * @n: The number of charsets will be stored here. + * + * Returns list of identifiers of charsets supported for language @language. + * + * The list of charset identifiers has to be freed by caller. + * + * Returns: The list of charsets, storing their number into *@n. When language + * contains no charsets or @langname is invalid, #NULL is returned + * and zero stored into *@n. + **/ +int* +enca_get_language_charsets(const char *langname, + size_t *n) +{ + const EncaLanguageInfo *lang; + + assert(langname != NULL); + + lang = find_language(langname); + if (lang == NULL) { + *n = 0; + return NULL; + } + + *n = lang->ncharsets; + return language_charsets_ids(lang); +} + +/** + * language_charsets_ids: + * @lang: A language. + * + * Creates and fills table of charset identifiers of charsets supported for + * language @lang. + * + * The size of the table is determined by @lang->ncharsets. + * + * Returns: The charsets id table; #NULL when @lang has no charsets. + **/ +static int* +language_charsets_ids(const EncaLanguageInfo *lang) +{ + int *charsets; + size_t i; + + assert(lang != NULL); + + if (lang->ncharsets == 0) + return NULL; + + charsets = NEW(int, lang->ncharsets); + for (i = 0; i < lang->ncharsets; i++) { + charsets[i] = enca_name_to_charset(lang->csnames[i]); + assert(charsets[i] != ENCA_CS_UNKNOWN); + } + + return charsets; +} + +/** + * find_language: + * @langname: Language (i.e. locale) name. + * + * Finds language @langname. + * + * Returns: Pointer to its language information data; #NULL if not found. + **/ +static const EncaLanguageInfo* +find_language(const char *langname) +{ + const EncaLanguageInfo *lang = NULL; + size_t i; + + if (langname == NULL) + return NULL; + + for (i = 0; i < NLANGUAGES; i++) { + if (strcmp(langname, LANGUAGE_LIST[i]->name) == 0) { + lang = LANGUAGE_LIST[i]; + break; + } + } + + return lang; +} + +/** + * enca_get_charset_similarity_matrix: + * @lang: A language. + * + * Computes character weight similarity matrix for language @lang. + * + * sim[i,j] is normalized to sim[i,i] thus: + * - a row i contains ,probabilities` different languages will look like the + * i-th one + * - a column i contains ,probabilities` the i-th language will look like + * the other languages. + * + * For all practical applications, the higher one of sim[i,j] and sim[j,i] + * is important. + * + * Note: this is not used anywhere, only by simtable. + * + * Returns: The matrix, its size is determined by @lang->ncharsets; #NULL + * for language with no charsets. + **/ +double* +enca_get_charset_similarity_matrix(const EncaLanguageInfo *lang) +{ + const size_t n = lang->ncharsets; + const unsigned short int *const *w = lang->weights; + const unsigned short int *s = lang->significant; + + double *smat; + size_t i, j, c; + + assert(lang != NULL); + + if (n == 0) + return NULL; + + /* Below diagonal. */ + smat = NEW(double, n*n); + for (i = 0; i < n; i++) { + for (j = 0; j <= i; j++) { + smat[i*n + j] = 0.0; + for (c = 0; c < 0x100; c++) + smat[i*n + j] += (double)w[i][c] * (double)w[j][c] / (s[c] + EPSILON); + } + } + + /* Above diagonal. */ + for (i = 0; i < n; i++) { + for (j = i+1; j < n; j++) + smat[i*n + j] = smat[j*n + i]; + } + + /* Normalize. */ + for (i = 0; i < n; i++) { + double wmax = smat[i*n + i]; + + for (j = 0; j < n; j++) { + smat[i*n + j] /= wmax; + } + } + + return smat; +} +/* vim: ts=2 + */ + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang.lo new file mode 100644 index 0000000..7de60ed --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang.lo @@ -0,0 +1,12 @@ +# lang.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang.o new file mode 100644 index 0000000..2491755 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_be.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_be.c new file mode 100644 index 0000000..bd00195 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_be.c @@ -0,0 +1,153 @@ +/* + encoding data and routines dependent on language; belarusian + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/belarusian/belarusian.h" + +/* Local prototypes. */ +static int hook(EncaAnalyserState *analyser); +static int hook_macwin(EncaAnalyserState *analyser); +static int hook_isokoi(EncaAnalyserState *analyser); +static int hook_855866(EncaAnalyserState *analyser); + +/** + * ENCA_LANGUAGE_BE: + * + * Belarusian language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_BE = { + "be", + "belarusian", + NCHARSETS, + CHARSET_NAMES, + CHARSET_WEIGHTS, + SIGNIFICANT, + CHARSET_LETTERS, + CHARSET_PAIRS, + WEIGHT_SUM, + &hook, + NULL, + NULL, + NULL, +}; + +/** + * hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific hooks for language "be". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook(EncaAnalyserState *analyser) +{ + return hook_macwin(analyser) + || hook_isokoi(analyser) + || hook_855866(analyser); +} + +/** + * hook_macwin: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between maccyr and cp1251 charsets for language "be". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_macwin(EncaAnalyserState *analyser) +{ + static const unsigned char list_maccyr[] = { + 0xb4, 0xdf, 0xd9, 0xde, 0x80, 0x8d, 0x91, 0x8f, 0x81 + }; + static const unsigned char list_cp1251[] = { + 0xb3, 0xff, 0xa2, 0xb8, 0xc0, 0xcd, 0xd1, 0xcf, 0xc1 + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(maccyr), + MAKE_HOOK_LINE(cp1251), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_isokoi: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-5 and koi8u charsets for language "be". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_isokoi(EncaAnalyserState *analyser) +{ + static const unsigned char list_iso88595[] = { + 0xdd, 0xd0, 0xe0, 0xf6, 0xeb, 0xef, 0xe3, 0xe2, 0xe1, 0xdf + }; + static const unsigned char list_koi8u[] = { + 0xc1, 0xce, 0xc5, 0xcc, 0xcb, 0xcf, 0xa6, 0xc4, 0xcd, 0xae + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(iso88595), + MAKE_HOOK_LINE(koi8u), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_855866: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between cp866 and ibm855 charsets for language "be". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_855866(EncaAnalyserState *analyser) +{ + static const unsigned char list_ibm855[] = { + 0xd4, 0xd0, 0xd6, 0x8a, 0xc6, 0xde, 0xd2, 0xf3, 0xd8, 0x98, 0xf1 + }; + static const unsigned char list_ibm866[] = { + 0xad, 0xe0, 0xa5, 0xab, 0xae, 0xaa, 0xe2, 0xef, 0xa7, 0xaf, 0xe6 + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(ibm855), + MAKE_HOOK_LINE(ibm866), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/* vim: ts=2 + */ + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_be.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_be.lo new file mode 100644 index 0000000..4cfbe22 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_be.lo @@ -0,0 +1,12 @@ +# lang_be.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_be.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_be.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_be.o new file mode 100644 index 0000000..fdd67b9 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_be.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_bg.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_bg.c new file mode 100644 index 0000000..3e2f2d0 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_bg.c @@ -0,0 +1,119 @@ +/* + encoding data and routines dependent on language; bulgarian + + Copyright (C) 2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/bulgarian/bulgarian.h" + +/* Local prototypes. */ +static int hook(EncaAnalyserState *analyser); +static int hook_1251mac(EncaAnalyserState *analyser); +static int hook_winmac(EncaAnalyserState *analyser); + +/** + * ENCA_LANGUAGE_BG: + * + * Bulgarian language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_BG = { + "bg", + "bulgarian", + NCHARSETS, + CHARSET_NAMES, + CHARSET_WEIGHTS, + SIGNIFICANT, + CHARSET_LETTERS, + CHARSET_PAIRS, + WEIGHT_SUM, + &hook, + &hook_winmac, + NULL, + NULL +}; + +/** + * hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific hooks for language "bg". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook(EncaAnalyserState *analyser) +{ + return hook_1251mac(analyser); +} + +/** + * hook_winmac: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between cp1251 and maccyr charsets for language "bg". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_winmac(EncaAnalyserState *analyser) +{ + static EncaLanguageHookDataEOL hookdata[] = { + { "maccyr", ENCA_SURFACE_EOL_CR, (size_t)-1 }, + { "cp1251", ENCA_SURFACE_MASK_EOL, (size_t)-1 }, + }; + + return enca_language_hook_eol(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_1251mac: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between cp1251 and maccyr charsets for language "bg". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_1251mac(EncaAnalyserState *analyser) +{ + /* The characters. */ + static const unsigned char list_cp1251[] = { + 0xff, 0xcd, 0xd2, 0xc0, 0xd1, 0xc8, 0xcf, 0xc2 + }; + static const unsigned char list_maccyr[] = { + 0xdf, 0x8d, 0x92, 0x80, 0x91, 0x88, 0x8f, 0x82 + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(cp1251), + MAKE_HOOK_LINE(maccyr), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/* vim: ts=2 + */ + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_bg.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_bg.lo new file mode 100644 index 0000000..f5a0d21 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_bg.lo @@ -0,0 +1,12 @@ +# lang_bg.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_bg.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_bg.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_bg.o new file mode 100644 index 0000000..2621305 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_bg.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_cs.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_cs.c new file mode 100644 index 0000000..adf9ed8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_cs.c @@ -0,0 +1,162 @@ +/* + encoding data and routines dependent on language; czech + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/czech/czech.h" + +/* Local prototypes. */ +static int hook(EncaAnalyserState *analyser); +static int eol_hook(EncaAnalyserState *analyser); +static int hook_iso1250(EncaAnalyserState *analyser); +static int hook_ibmkam(EncaAnalyserState *analyser); +static int hook_isowin(EncaAnalyserState *analyser); + +/** + * ENCA_LANGUAGE_CS: + * + * Czech language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_CS = { + "cs", + "czech", + NCHARSETS, + CHARSET_NAMES, + CHARSET_WEIGHTS, + SIGNIFICANT, + CHARSET_LETTERS, + CHARSET_PAIRS, + WEIGHT_SUM, + &hook, + &eol_hook, + NULL, + NULL +}; + +/** + * hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific hooks for language "cs". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook(EncaAnalyserState *analyser) +{ + return hook_iso1250(analyser) + || hook_ibmkam(analyser); +} + +/** + * eol_hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific EOL hooks for language "cs". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +eol_hook(EncaAnalyserState *analyser) +{ + return hook_isowin(analyser); +} + +/** + * hook_isowin: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-2 and cp1250 charsets for language "cs". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_isowin(EncaAnalyserState *analyser) +{ + static EncaLanguageHookDataEOL hookdata[] = { + { "cp1250", ENCA_SURFACE_EOL_CRLF, (size_t)-1 }, + { "iso88592", ENCA_SURFACE_MASK_EOL, (size_t)-1 }, + }; + + return enca_language_hook_eol(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_iso1250: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-2 and cp1250 charsets for language "cs". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_iso1250(EncaAnalyserState *analyser) +{ + static const unsigned char list_iso88592[] = { + 0xbe, 0xb9, 0xbb, 0xa9, 0xae + }; + static const unsigned char list_cp1250[] = { + 0x9e, 0x9a, 0x9d, 0x8a, 0x8e + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(iso88592), + MAKE_HOOK_LINE(cp1250), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_ibmkam: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between ibm852 and keybcs2 charsets for language "cs". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_ibmkam(EncaAnalyserState *analyser) +{ + static const unsigned char list_ibm852[] = { + 0xd8, 0xa7, 0xfd, 0xe7, 0x9f, 0xec, 0x85 + }; + static const unsigned char list_keybcs2[] = { + 0x88, 0x91, 0xa9, 0x87, 0xa8, 0x98, 0x96 + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(ibm852), + MAKE_HOOK_LINE(keybcs2), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/* vim: ts=2 + */ + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_cs.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_cs.lo new file mode 100644 index 0000000..6e732fb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_cs.lo @@ -0,0 +1,12 @@ +# lang_cs.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_cs.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_cs.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_cs.o new file mode 100644 index 0000000..b6f5184 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_cs.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_et.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_et.c new file mode 100644 index 0000000..e7ebd2b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_et.c @@ -0,0 +1,168 @@ +/* + encoding data and routines dependent on language; estonian + + Copyright (C) 2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/estonian/estonian.h" + +/* Local prototypes. */ +static int hook(EncaAnalyserState *analyser); +static int eol_hook(EncaAnalyserState *analyser); +static int hook_iso13win(EncaAnalyserState *analyser); +static int hook_iso4win(EncaAnalyserState *analyser); +static int hook_allinone(EncaAnalyserState *analyser); + +/** + * ENCA_LANGUAGE_ET: + * + * Estonian language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_ET = { + "et", + "estonian", + NCHARSETS, + CHARSET_NAMES, + CHARSET_WEIGHTS, + SIGNIFICANT, + CHARSET_LETTERS, + CHARSET_PAIRS, + WEIGHT_SUM, + &hook, + &eol_hook, + NULL, + NULL +}; + +/** + * hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific hooks for language "et". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook(EncaAnalyserState *analyser) +{ + int chg = 0; + + /* we may want to run both, and in this order */ + chg += hook_allinone(analyser); + chg += hook_iso13win(analyser); + return chg; +} + +/** + * eol_hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific EOL hooks for language "et". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +eol_hook(EncaAnalyserState *analyser) +{ + return hook_iso4win(analyser); +} + +/** + * hook_iso13win: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-13 and cp1257 charsets for language "et". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_iso13win(EncaAnalyserState *analyser) +{ + static EncaLanguageHookDataEOL hookdata[] = { + { "iso885913", ENCA_SURFACE_EOL_LF, (size_t)-1 }, + { "cp1257", ENCA_SURFACE_MASK_EOL, (size_t)-1 }, + }; + + return enca_language_hook_eol(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_iso4win: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-4 and cp1257 charsets for language "et". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_iso4win(EncaAnalyserState *analyser) +{ + static EncaLanguageHookDataEOL hookdata[] = { + { "iso88594", ENCA_SURFACE_EOL_LF, (size_t)-1 }, + { "cp1257", ENCA_SURFACE_MASK_EOL, (size_t)-1 }, + }; + + return enca_language_hook_eol(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_allinone: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-4, iso8859-13, cp1257, and baltic charsets for + * language "et". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_allinone(EncaAnalyserState *analyser) +{ + static const unsigned char list_iso88594[] = { + 0xb9, 0xbe, 0xa9, 0xae + }; + static const unsigned char list_iso885913[] = { + 0xf0, 0xfe, 0xd0, 0xde + }; + static const unsigned char list_baltic[] = { + 0xf9, 0xea, 0xd9, 0xca + }; + static const unsigned char list_cp1257[] = { + 0xf0, 0xfe, 0xd0, 0xde + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(iso88594), + MAKE_HOOK_LINE(iso885913), + MAKE_HOOK_LINE(baltic), + MAKE_HOOK_LINE(cp1257), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_et.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_et.lo new file mode 100644 index 0000000..311dd20 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_et.lo @@ -0,0 +1,12 @@ +# lang_et.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_et.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_et.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_et.o new file mode 100644 index 0000000..278c11d Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_et.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hr.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hr.c new file mode 100644 index 0000000..42580cf --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hr.c @@ -0,0 +1,133 @@ +/* + encoding data and routines dependent on language; croatian + + Copyright (C) 2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/croatian/croatian.h" + +/* Local prototypes. */ +static int hook(EncaAnalyserState *analyser); +static int eol_hook(EncaAnalyserState *analyser); +static int hook_iso1250(EncaAnalyserState *analyser); +static int hook_isowin(EncaAnalyserState *analyser); + +/** + * ENCA_LANGUAGE_HR: + * + * Croatian language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_HR = { + "hr", + "croatian", + NCHARSETS, + CHARSET_NAMES, + CHARSET_WEIGHTS, + SIGNIFICANT, + CHARSET_LETTERS, + CHARSET_PAIRS, + WEIGHT_SUM, + &hook, + &eol_hook, + NULL, + NULL +}; + +/** + * hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific hooks for language "hr". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook(EncaAnalyserState *analyser) +{ + return hook_iso1250(analyser); +} + +/** + * eol_hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific EOL hooks for language "hr". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +eol_hook(EncaAnalyserState *analyser) +{ + return hook_isowin(analyser); +} + +/** + * hook_isowin: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-2 and cp1250 charsets for language "hr". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_isowin(EncaAnalyserState *analyser) +{ + static EncaLanguageHookDataEOL hookdata[] = { + { "cp1250", ENCA_SURFACE_EOL_CRLF, (size_t)-1 }, + { "iso88592", ENCA_SURFACE_MASK_EOL, (size_t)-1 }, + }; + + return enca_language_hook_eol(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_iso1250: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-2 and cp1250 charsets for language "hr". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_iso1250(EncaAnalyserState *analyser) +{ + static const unsigned char list_iso88592[] = { + 0xb9, 0xbe, 0xa9, 0xae + }; + static const unsigned char list_cp1250[] = { + 0x9a, 0x9e, 0x8a, 0x8e + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(iso88592), + MAKE_HOOK_LINE(cp1250), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hr.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hr.lo new file mode 100644 index 0000000..dbdfd7b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hr.lo @@ -0,0 +1,12 @@ +# lang_hr.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_hr.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hr.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hr.o new file mode 100644 index 0000000..d3b613d Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hr.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hu.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hu.c new file mode 100644 index 0000000..56df8e2 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hu.c @@ -0,0 +1,126 @@ +/* + encoding data and routines dependent on language; hungarian + + Copyright (C) 2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/hungarian/hungarian.h" + +/* Local prototypes. */ +static int hook(EncaAnalyserState *analyser); +static int hook_iso1250(EncaAnalyserState *analyser); +static int hook_isocork(EncaAnalyserState *analyser); + +/** + * ENCA_LANGUAGE_HU: + * + * Hungarian language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_HU = { + "hu", + "hungarian", + NCHARSETS, + CHARSET_NAMES, + CHARSET_WEIGHTS, + SIGNIFICANT, + CHARSET_LETTERS, + CHARSET_PAIRS, + WEIGHT_SUM, + &hook, + NULL, + NULL, + NULL +}; + +/** + * hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific hooks for language "hu". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook(EncaAnalyserState *analyser) +{ + int chg = 0; + + /* we may want to run both, and in this order */ + chg += hook_isocork(analyser); + chg += hook_iso1250(analyser); + return chg; +} + +/** + * hook_iso1250: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-2 and cp1250 charsets for language "hu". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_iso1250(EncaAnalyserState *analyser) +{ + static EncaLanguageHookDataEOL hookdata[] = { + { "cp1250", ENCA_SURFACE_EOL_CRLF, (size_t)-1 }, + { "iso88592", ENCA_SURFACE_MASK_EOL, (size_t)-1 }, + }; + + return enca_language_hook_eol(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_isocork: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-2, cp1250 and cork charsets for language "hu". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_isocork(EncaAnalyserState *analyser) +{ + static const unsigned char list_iso88592[] = { + 0xf5, 0xfb, 0xd5 + }; + static const unsigned char list_cp1250[] = { + 0xf5, 0xfb, 0xd5 + }; + static const unsigned char list_cork[] = { + 0xae, 0xb6, 0x8e + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(iso88592), + MAKE_HOOK_LINE(cp1250), + MAKE_HOOK_LINE(cork), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hu.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hu.lo new file mode 100644 index 0000000..902c570 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hu.lo @@ -0,0 +1,12 @@ +# lang_hu.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_hu.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hu.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hu.o new file mode 100644 index 0000000..ddc70bb Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_hu.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lt.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lt.c new file mode 100644 index 0000000..869ca35 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lt.c @@ -0,0 +1,153 @@ +/* + encoding data and routines dependent on language; lithuanian + + Copyright (C) 2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/lithuanian/lithuanian.h" + +/* Local prototypes. */ +static int hook(EncaAnalyserState *analyser); +static int hook_iso13win(EncaAnalyserState *analyser); +static int hook_baltwin(EncaAnalyserState *analyser); +static int hook_lat4balt(EncaAnalyserState *analyser); + +/** + * ENCA_LANGUAGE_LT: + * + * Lithuanian language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_LT = { + "lt", + "lithuanian", + NCHARSETS, + CHARSET_NAMES, + CHARSET_WEIGHTS, + SIGNIFICANT, + CHARSET_LETTERS, + CHARSET_PAIRS, + WEIGHT_SUM, + &hook, + NULL, + NULL, + NULL +}; + +/** + * hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific hooks for language "lt". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook(EncaAnalyserState *analyser) +{ + int chg = 0; + + /* we may want to run both, and in this order */ + chg += hook_baltwin(analyser) || hook_lat4balt(analyser); + chg += hook_iso13win(analyser); + return chg; +} + +/** + * hook_iso13win: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-13 and cp1257 charsets for language "lt". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_iso13win(EncaAnalyserState *analyser) +{ + static EncaLanguageHookDataEOL hookdata[] = { + { "iso885913", ENCA_SURFACE_EOL_LF, (size_t)-1 }, + { "cp1257", ENCA_SURFACE_MASK_EOL, (size_t)-1 }, + }; + + return enca_language_hook_eol(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_baltwin: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between cp1257, iso8859-13 and baltic charsets for language "lt". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_baltwin(EncaAnalyserState *analyser) +{ + static const unsigned char list_cp1257[] = { + 0xf0, 0xfe, 0xeb, 0xe8, 0xd0, 0xde, 0xc8 + }; + static const unsigned char list_iso885913[] = { + 0xf0, 0xfe, 0xeb, 0xe8, 0xd0, 0xde, 0xc8 + }; + static const unsigned char list_baltic[] = { + 0xf9, 0xea, 0xe7, 0xd9, 0xca, 0xc7, 0xc0 + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(cp1257), + MAKE_HOOK_LINE(iso885913), + MAKE_HOOK_LINE(baltic), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_lat4balt: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-4 and baltic charsets for language "lt". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_lat4balt(EncaAnalyserState *analyser) +{ + static const unsigned char list_iso88594[] = { + 0xec, 0xb9, 0xbe, 0xb1, 0xfe, 0xe8, 0xa9, 0xae, 0xc8 + }; + static const unsigned char list_baltic[] = { + 0xe1, 0xf8, 0xe6, 0xe0, 0xfb, 0xeb, 0xd9, 0xca, 0xc0 + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(iso88594), + MAKE_HOOK_LINE(baltic), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lt.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lt.lo new file mode 100644 index 0000000..6767768 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lt.lo @@ -0,0 +1,12 @@ +# lang_lt.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_lt.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lt.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lt.o new file mode 100644 index 0000000..e60e6d3 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lt.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lv.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lv.c new file mode 100644 index 0000000..27c98b7 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lv.c @@ -0,0 +1,126 @@ +/* + encoding data and routines dependent on language; latvian + + Copyright (C) 2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/latvian/latvian.h" + +/* Local prototypes. */ +static int hook(EncaAnalyserState *analyser); +static int hook_iso13win(EncaAnalyserState *analyser); +static int hook_baltwin(EncaAnalyserState *analyser); + +/** + * ENCA_LANGUAGE_LV: + * + * Latvian language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_LV = { + "lv", + "latvian", + NCHARSETS, + CHARSET_NAMES, + CHARSET_WEIGHTS, + SIGNIFICANT, + CHARSET_LETTERS, + CHARSET_PAIRS, + WEIGHT_SUM, + &hook, + NULL, + NULL, + NULL +}; + +/** + * hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific hooks for language "lv". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook(EncaAnalyserState *analyser) +{ + int chg = 0; + + /* we may want to run both, and in this order */ + chg += hook_baltwin(analyser); + chg += hook_iso13win(analyser); + return chg; +} + +/** + * hook_baltwin: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between cp1257, iso8859-13 and baltic charsets for language "lv". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_baltwin(EncaAnalyserState *analyser) +{ + static const unsigned char list_cp1257[] = { + 0xe7, 0xf0, 0xf2, 0xfe, 0xd0, 0xde + }; + static const unsigned char list_iso885913[] = { + 0xe7, 0xf0, 0xf2, 0xfe, 0xd0, 0xde + }; + static const unsigned char list_baltic[] = { + 0xec, 0xf9, 0xf1, 0xea, 0xd9, 0xcc + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(cp1257), + MAKE_HOOK_LINE(iso885913), + MAKE_HOOK_LINE(baltic), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_iso13win: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-13 and cp1257 charsets for language "lv". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_iso13win(EncaAnalyserState *analyser) +{ + static EncaLanguageHookDataEOL hookdata[] = { + { "iso885913", ENCA_SURFACE_EOL_LF, (size_t)-1 }, + { "cp1257", ENCA_SURFACE_MASK_EOL, (size_t)-1 }, + }; + + return enca_language_hook_eol(analyser, ELEMENTS(hookdata), hookdata); +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lv.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lv.lo new file mode 100644 index 0000000..00078bb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lv.lo @@ -0,0 +1,12 @@ +# lang_lv.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_lv.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lv.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lv.o new file mode 100644 index 0000000..ec7e280 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_lv.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_pl.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_pl.c new file mode 100644 index 0000000..dfc2d44 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_pl.c @@ -0,0 +1,161 @@ +/* + encoding data and routines dependent on language; polish + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/polish/polish.h" + +/* Local prototypes. */ +static int hook(EncaAnalyserState *analyser); +static int eol_hook(EncaAnalyserState *analyser); +static int hook_iso1250(EncaAnalyserState *analyser); +static int hook_balt13(EncaAnalyserState *analyser); +static int hook_isowin(EncaAnalyserState *analyser); + +/** + * ENCA_LANGUAGE_PL: + * + * Polish language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_PL = { + "pl", + "polish", + NCHARSETS, + CHARSET_NAMES, + CHARSET_WEIGHTS, + SIGNIFICANT, + CHARSET_LETTERS, + CHARSET_PAIRS, + WEIGHT_SUM, + &hook, + &eol_hook, + NULL, + NULL +}; + +/** + * hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific hooks for language "pl". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook(EncaAnalyserState *analyser) +{ + return hook_iso1250(analyser) + || hook_balt13(analyser); +} + +/** + * eol_hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific EOL hooks for language "pl". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +eol_hook(EncaAnalyserState *analyser) +{ + return hook_isowin(analyser); +} + +/** + * hook_isowin: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-2 and cp1250 charsets for language "pl". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_isowin(EncaAnalyserState *analyser) +{ + static EncaLanguageHookDataEOL hookdata[] = { + { "cp1250", ENCA_SURFACE_EOL_CRLF, (size_t)-1 }, + { "iso88592", ENCA_SURFACE_MASK_EOL, (size_t)-1 }, + }; + + return enca_language_hook_eol(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_iso1250: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-2 and cp1250 charsets for language "pl". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_iso1250(EncaAnalyserState *analyser) +{ + static const unsigned char list_iso88592[] = { + 0xb1, 0xb6, 0xbc, 0xa6 + }; + static const unsigned char list_cp1250[] = { + 0xb9, 0x9c, 0x9f, 0x8, + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(iso88592), + MAKE_HOOK_LINE(cp1250), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_balt13: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between baltic and iso8859-13 charsets for language "pl". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_balt13(EncaAnalyserState *analyser) +{ + static const unsigned char list_baltic[] = { + 0xf0, 0xeb, 0xf2, 0xfe + }; + static const unsigned char list_iso885913[] = { + 0xf9, 0xe0, 0xf1, 0xea + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(baltic), + MAKE_HOOK_LINE(iso885913), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_pl.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_pl.lo new file mode 100644 index 0000000..6358823 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_pl.lo @@ -0,0 +1,12 @@ +# lang_pl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_pl.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_pl.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_pl.o new file mode 100644 index 0000000..a489b0a Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_pl.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_ru.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_ru.c new file mode 100644 index 0000000..d1aff5a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_ru.c @@ -0,0 +1,133 @@ +/* + encoding data and routines dependent on language; russian + + Copyright (C) 2000-2002 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/russian/russian.h" + +/* Local prototypes. */ +static int hook(EncaAnalyserState *analyser); +static int eol_hook(EncaAnalyserState *analyser); +static int hook_mac1251(EncaAnalyserState *analyser); +static int hook_macwin(EncaAnalyserState *analyser); + +/** + * ENCA_LANGUAGE_RU: + * + * Russian language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_RU = { + "ru", + "russian", + NCHARSETS, + CHARSET_NAMES, + CHARSET_WEIGHTS, + SIGNIFICANT, + CHARSET_LETTERS, + CHARSET_PAIRS, + WEIGHT_SUM, + &hook, + &eol_hook, + NULL, + NULL +}; + +/** + * hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific hooks for language "ru". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook(EncaAnalyserState *analyser) +{ + return hook_mac1251(analyser); +} + +/** + * eol_hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific EOL hooks for language "ru". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +eol_hook(EncaAnalyserState *analyser) +{ + return hook_macwin(analyser); +} + +/** + * hook_macwin: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between maccyr and cp1251 charsets for language "ru". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_macwin(EncaAnalyserState *analyser) +{ + static EncaLanguageHookDataEOL hookdata[] = { + { "maccyr", ENCA_SURFACE_EOL_CR, (size_t)-1 }, + { "cp1251", ENCA_SURFACE_MASK_EOL, (size_t)-1 }, + }; + + return enca_language_hook_eol(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_mac1251: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between maccyr and cp1251 charsets for language "ru". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_mac1251(EncaAnalyserState *analyser) +{ + static const unsigned char list_maccyr[] = { + 0xdf, 0x82, 0x8f, 0x8d, 0x80, 0x91, 0x88 + }; + static const unsigned char list_cp1251[] = { + 0xff, 0xc2, 0xcf, 0xcd, 0xc0, 0xd1, 0xc8 + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(maccyr), + MAKE_HOOK_LINE(cp1251), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_ru.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_ru.lo new file mode 100644 index 0000000..69e06e5 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_ru.lo @@ -0,0 +1,12 @@ +# lang_ru.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_ru.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_ru.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_ru.o new file mode 100644 index 0000000..5066d37 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_ru.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sk.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sk.c new file mode 100644 index 0000000..9de1883 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sk.c @@ -0,0 +1,161 @@ +/* + encoding data and routines dependent on language; slovak + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/slovak/slovak.h" + +/* Local prototypes. */ +static int hook(EncaAnalyserState *analyser); +static int eol_hook(EncaAnalyserState *analyser); +static int hook_iso1250(EncaAnalyserState *analyser); +static int hook_ibmkam(EncaAnalyserState *analyser); +static int hook_isowin(EncaAnalyserState *analyser); + +/** + * ENCA_LANGUAGE_SK: + * + * Slovak language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_SK = { + "sk", + "slovak", + NCHARSETS, + CHARSET_NAMES, + CHARSET_WEIGHTS, + SIGNIFICANT, + CHARSET_LETTERS, + CHARSET_PAIRS, + WEIGHT_SUM, + &hook, + &eol_hook, + NULL, + NULL +}; + +/** + * hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific hooks for language "sk". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook(EncaAnalyserState *analyser) +{ + return hook_iso1250(analyser) + || hook_ibmkam(analyser); +} + +/** + * eol_hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific EOL hooks for language "sk". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +eol_hook(EncaAnalyserState *analyser) +{ + return hook_isowin(analyser); +} + +/** + * hook_isowin: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-2 and cp1250 charsets for language "sk". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_isowin(EncaAnalyserState *analyser) +{ + static EncaLanguageHookDataEOL hookdata[] = { + { "cp1250", ENCA_SURFACE_EOL_CRLF, (size_t)-1 }, + { "iso88592", ENCA_SURFACE_MASK_EOL, (size_t)-1 }, + }; + + return enca_language_hook_eol(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_iso1250: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-2 and cp1250 charsets for language "sk". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_iso1250(EncaAnalyserState *analyser) +{ + static const unsigned char list_iso88592[] = { + 0xb9, 0xbb, 0xb5, 0xa9, 0xae + }; + static const unsigned char list_cp1250[] = { + 0x9e, 0x9a, 0x9d, 0x8a, 0x8e + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(iso88592), + MAKE_HOOK_LINE(cp1250), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_ibmkam: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between ibm852 and keybcs2 charsets for language "sk". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_ibmkam(EncaAnalyserState *analyser) +{ + static const unsigned char list_ibm852[] = { + 0xa7, 0xe7, 0xec, 0x9c, 0x96, 0xd4, 0xe5 + }; + static const unsigned char list_keybcs2[] = { + 0x87, 0x91, 0xa8, 0x98, 0x8c, 0x83, 0xa4 + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(ibm852), + MAKE_HOOK_LINE(keybcs2), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sk.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sk.lo new file mode 100644 index 0000000..2e5b1de --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sk.lo @@ -0,0 +1,12 @@ +# lang_sk.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_sk.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sk.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sk.o new file mode 100644 index 0000000..b748251 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sk.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sl.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sl.c new file mode 100644 index 0000000..6877069 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sl.c @@ -0,0 +1,90 @@ +/* + encoding data and routines dependent on language; slovene + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/slovene/slovene.h" + +/* Local prototypes. */ +static int eol_hook(EncaAnalyserState *analyser); +static int hook_isowin(EncaAnalyserState *analyser); + +/** + * ENCA_LANGUAGE_SL: + * + * Slovene language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_SL = { + "sl", + "slovene", + NCHARSETS, + CHARSET_NAMES, + CHARSET_WEIGHTS, + SIGNIFICANT, + CHARSET_LETTERS, + CHARSET_PAIRS, + WEIGHT_SUM, + NULL, + &eol_hook, + NULL, + NULL +}; + +/** + * eol_hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific EOL hooks for language "sl". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +eol_hook(EncaAnalyserState *analyser) +{ + return hook_isowin(analyser); +} + +/** + * hook_isowin: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-2 and cp1250 charsets for language "sl". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_isowin(EncaAnalyserState *analyser) +{ + static EncaLanguageHookDataEOL hookdata[] = { + { "cp1250", ENCA_SURFACE_EOL_CRLF, (size_t)-1 }, + { "iso88592", ENCA_SURFACE_MASK_EOL, (size_t)-1 }, + }; + + return enca_language_hook_eol(analyser, ELEMENTS(hookdata), hookdata); +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sl.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sl.lo new file mode 100644 index 0000000..fc23a73 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sl.lo @@ -0,0 +1,12 @@ +# lang_sl.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_sl.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sl.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sl.o new file mode 100644 index 0000000..e0f5999 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_sl.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_uk.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_uk.c new file mode 100644 index 0000000..2450e08 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_uk.c @@ -0,0 +1,190 @@ +/* + encoding data and routines dependent on language; ukrainian + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/ukrainian/ukrainian.h" + +/* Local prototypes. */ +static int hook(EncaAnalyserState *analyser); +static int eol_hook(EncaAnalyserState *analyser); +static int hook_mac1251(EncaAnalyserState *analyser); +static int hook_isokoi(EncaAnalyserState *analyser); +static int hook_ibm1125(EncaAnalyserState *analyser); +static int hook_macwin(EncaAnalyserState *analyser); + +/** + * ENCA_LANGUAGE_UK: + * + * Ukrainian language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_UK = { + "uk", + "ukrainian", + NCHARSETS, + CHARSET_NAMES, + CHARSET_WEIGHTS, + SIGNIFICANT, + CHARSET_LETTERS, + CHARSET_PAIRS, + WEIGHT_SUM, + &hook, + &eol_hook, + NULL, + NULL +}; + +/** + * hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific hooks for language "uk". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook(EncaAnalyserState *analyser) +{ + return hook_mac1251(analyser) + || hook_isokoi(analyser) + || hook_ibm1125(analyser); +} + +/** + * eol_hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Launches language specific EOL hooks for language "uk". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +eol_hook(EncaAnalyserState *analyser) +{ + return hook_macwin(analyser); +} + +/** + * hook_macwin: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between maccyr and cp1251 charsets for language "uk". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_macwin(EncaAnalyserState *analyser) +{ + static EncaLanguageHookDataEOL hookdata[] = { + { "maccyr", ENCA_SURFACE_EOL_CR, (size_t)-1 }, + { "cp1251", ENCA_SURFACE_MASK_EOL, (size_t)-1 }, + }; + + return enca_language_hook_eol(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_mac1251: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between maccyr and cp1251 charsets for language "uk". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_mac1251(EncaAnalyserState *analyser) +{ + static const unsigned char list_maccyr[] = { + 0xb4, 0xdf, 0xbb, 0x82, 0x8f + }; + static const unsigned char list_cp1251[] = { + 0xb3, 0xff, 0xbf, 0xc2, 0xcf + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(maccyr), + MAKE_HOOK_LINE(cp1251), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_isokoi: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between iso8859-5 and koi8u charsets for language "uk". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_isokoi(EncaAnalyserState *analyser) +{ + static const unsigned char list_iso88595[] = { + 0xdd, 0xe2, 0xf6, 0xe0, 0xde, 0xe1, 0xe3, 0xdc, 0xdf, 0xef, 0xec + }; + static const unsigned char list_koi8u[] = { + 0xcf, 0xc1, 0xce, 0xc9, 0xa6, 0xc5, 0xcb, 0xcc, 0xc4, 0xcd, 0xc7 + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(iso88595), + MAKE_HOOK_LINE(koi8u), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/** + * hook_ibm1125: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Decides between cp1125 and ibm855 charsets for language "uk". + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook_ibm1125(EncaAnalyserState *analyser) +{ + static const unsigned char list_cp1125[] = { + 0xae, 0xad, 0xe2, 0xf7, 0xe0, 0xa5, 0xab, 0xaf, 0xef, 0xaa, 0xa7 + }; + static const unsigned char list_ibm855[] = { + 0xd6, 0xd4, 0xb7, 0x8a, 0xeb, 0xc6, 0xd0, 0xd2, 0xd8, 0xde, 0xf3 + }; + static EncaLanguageHookData1CS hookdata[] = { + MAKE_HOOK_LINE(cp1125), + MAKE_HOOK_LINE(ibm855), + }; + + return enca_language_hook_ncs(analyser, ELEMENTS(hookdata), hookdata); +} + +/* vim: ts=2 + */ + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_uk.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_uk.lo new file mode 100644 index 0000000..553f68a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_uk.lo @@ -0,0 +1,12 @@ +# lang_uk.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_uk.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_uk.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_uk.o new file mode 100644 index 0000000..c41e904 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_uk.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_zh.c b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_zh.c new file mode 100644 index 0000000..fb75d5e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_zh.c @@ -0,0 +1,181 @@ +/* + language info: chinese + + Copyright (C) 2005 Meng Jie (Zuxy) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" +#include "data/chinese/chinese.h" + +static int hook(EncaAnalyserState *analyser); +static int calc_rating(EncaAnalyserState *analyser); +/* Not 8-bit clean, can't be a HZ here */ +static int is_hz(const unsigned char* str __attribute__((unused))) { return 0; } + +static const char *const CHARSET_NAMES[] = { + "gbk", + "big5", + "hz" +}; + +static ValidityFunc* validity_check_table[] = { + is_gbk, + is_big5, + is_hz +}; + +static RateFunc* rate_calc_table[] = { + in_gbk, + in_big5, + NULL +}; + +#define NCHARSETS (sizeof(CHARSET_NAMES)/sizeof(const char* const)) + +/** + * ENCA_LANGUAGE_ZH: + * + * Chinese language. + * + * Everything the world out there needs to know about this language. + **/ +const EncaLanguageInfo ENCA_LANGUAGE_ZH = { + "zh", + "chinese", + NCHARSETS, + CHARSET_NAMES, + 0, + 0, + 0, + 0, + 0, + &hook, + NULL, + NULL, + &calc_rating +}; + +/** + * hook: + * @analyser: Analyser state whose charset ratings are to be modified. + * + * Adjust ratings for language "zh", see calc_rating below. + * + * Returns: Nonzero if charset ratigns have been actually modified, zero + * otherwise. + **/ +static int +hook(EncaAnalyserState *analyser) +{ + const size_t* order = analyser->order; + double* rating_first = &analyser->ratings[order[0]]; + double* rating_second = &analyser->ratings[order[1]]; + + if (*rating_second < 0) { + *rating_second = 0.; + + if (*rating_first < 0) + *rating_first = 0.; + else + *rating_first = 1.; /* Make sure that the first won */ + + return 1; + } + + return 0; +} + +/** + * calc_rating: + * @analyser: An analyser. + * + * Calculating ratings for GBK and Big5, respectively, and + * ratings may be set to negative values when invalid a character + * for a charset was encoutered. This should not affect the result of + * enca_find_max_sec, but must be adjust to positive by hook for + * the final comparison. + * + * Returns: Always return 1 + **/ + +static int calc_rating(EncaAnalyserState *analyser) +{ + int islowbyte = 0; + unsigned int i, j; + unsigned char low; + const size_t size = analyser->size; + const unsigned char *buffer = analyser->buffer; + double *ratings = analyser->ratings; + int continue_check[NCHARSETS]; + const struct zh_weight* pweight; + + assert(analyser->ncharsets == NCHARSETS + && sizeof(rate_calc_table)/sizeof(RateFunc*) == NCHARSETS + && sizeof(validity_check_table)/sizeof(ValidityFunc*) == NCHARSETS); + + for (i = 0; i < NCHARSETS; i++) { + continue_check[i] = 1; + ratings[i] = 0.; + } + + for (i = 0; i < size; i++) { + low = buffer[i]; + + /* low byte */ + if (islowbyte) { + const unsigned char* hanzi = buffer + i - 1; + + assert(i); + for (j = 0; j < NCHARSETS; j++) { + if (continue_check[j]) { + continue_check[j] = validity_check_table[j](hanzi); + if (!continue_check[j]) + ratings[j] = -1.; + else { + pweight = rate_calc_table[j](hanzi); + if (pweight) + ratings[j] += pweight->freq; + } + } + } + + islowbyte = 0; + continue; + } + + if (low & 0x80) + islowbyte = 1; + } +#ifdef DEBUG + printf("GBK: %f, BIG5: %f\n", ratings[0], ratings[1]); +#endif + + /* Unfinished DBCS. */ + if (islowbyte && analyser->options.termination_strictness > 0) + { + for (i = 0; i < NCHARSETS; i++) + ratings[i] = 0.; + } + + return 1; +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_zh.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_zh.lo new file mode 100644 index 0000000..335c765 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_zh.lo @@ -0,0 +1,12 @@ +# lang_zh.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='lang_zh.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/lang_zh.o b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_zh.o new file mode 100644 index 0000000..bf9862a Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/lang_zh.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/libenca.la b/wlx/wayland_qt_base/build/enca-1.19/lib/libenca.la new file mode 100644 index 0000000..2f6c825 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/libenca.la @@ -0,0 +1,41 @@ +# libenca.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='' + +# Names of this library. +library_names='' + +# The name of the static archive. +old_library='libenca.a' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs=' -lm' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libenca. +current=5 +age=5 +revision=1 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/usr/local/lib' diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/multibyte.c b/wlx/wayland_qt_base/build/enca-1.19/lib/multibyte.c new file mode 100644 index 0000000..a0bd49c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/multibyte.c @@ -0,0 +1,953 @@ +/* + multibyte character set checks + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include + +#include "enca.h" +#include "internal.h" + +/* + * See http://www.unicode.org/unicode/faq/utf_bom.html#25 for BOMs: + * 00 00 FE FF UTF-32, big-endian + * FF FE 00 00 UTF-32, little-endian + * FE FF UTF-16, big-endian + * FF FE UTF-16, little-endian + * EF BB BF UTF-8 + */ + +/* Local prototypes. */ +static int is_valid_utf8 (EncaAnalyserState *analyser); +static int looks_like_TeX (EncaAnalyserState *analyser); +static int is_valid_utf7 (EncaAnalyserState *analyser); +static int looks_like_hz (EncaAnalyserState *analyser); +static int looks_like_ucs2 (EncaAnalyserState *analyser); +static int looks_like_ucs4 (EncaAnalyserState *analyser); +static int looks_like_utf8 (EncaAnalyserState *analyser); +static size_t what_if_it_was_ucs4 (const unsigned char *buffer, + size_t size, + size_t min_chars, + EncaSurface *crlf_surf); +static void shuffle_byte_order (unsigned char *buffer, + size_t size, + EncaSurface permutation); + +/* Multibyte test lists. + * These arrays must be NULL-terminated. */ +EncaGuessFunc ENCA_MULTIBYTE_TESTS_ASCII[] = { + &is_valid_utf7, + &looks_like_TeX, + &looks_like_hz, + NULL +}; + +EncaGuessFunc ENCA_MULTIBYTE_TESTS_8BIT[] = { + &is_valid_utf8, + NULL +}; + +EncaGuessFunc ENCA_MULTIBYTE_TESTS_BINARY[] = { + &looks_like_ucs4, + &looks_like_ucs2, + NULL +}; + +EncaGuessFunc ENCA_MULTIBYTE_TESTS_8BIT_TOLERANT[] = { + &looks_like_utf8, + NULL +}; + +/** + * is_valid_utf8: + * @analyser: Analyser whose buffer is to be checked. + * + * Checks whether @analyser->buffer contains valid UTF-8. + * + * Directly modifies @analyser->result on success. + * + * Returns: Nonzero when @analyser->result was set, zero othewrise. + **/ +static int +is_valid_utf8(EncaAnalyserState *analyser) +{ + static int utf8 = ENCA_CS_UNKNOWN; /* UTF-8 charset */ + size_t size = analyser->size; + const unsigned char *buffer = analyser->buffer; + const size_t *const counts = analyser->counts; + + /* Bonus added when we catch a byte order marker. */ + size_t bom_bonus; + + int remains_10xxxxxx = 0; /* how many next bytes have to be 10xxxxxx */ + int utf8count = 0; /* number of UTF-8 encoded characters */ + size_t i; + unsigned char b; + + /* Bytes 0xfe and 0xff just cannot appear in utf-8 in any case. */ + if (counts[0xfe] || counts[0xff]) + return 0; + + /* Initialize when we are called the first time. */ + if (utf8 == ENCA_CS_UNKNOWN) { + utf8 = enca_name_to_charset("utf-8"); + assert(utf8 != ENCA_CS_UNKNOWN); + } + + /* Check BOM */ + bom_bonus = (size_t)(sqrt((double)size) + size/10.0); + if (size >= 3 + && buffer[0] == 0xef && buffer[1] == 0xbb && buffer[2] == 0xbf) { + utf8count += bom_bonus; + buffer += 3; + size -= 3; + } + + /* Parse. */ + for (i = 0; i < size; i++) { + b = buffer[i]; + if (!remains_10xxxxxx) { + if ((b & 0x80) == 0) /* 7bit characters */ + continue; + if ((b & 0xe0) == 0xc0) { /* 110xxxxx 10xxxxxx sequence */ + remains_10xxxxxx = 1; + utf8count++; + continue; + } + if ((b & 0xf0) == 0xe0) { /* 1110xxxx 2 x 10xxxxxx sequence */ + remains_10xxxxxx = 2; + utf8count++; + continue; + } + /* Following are valid 32-bit UCS characters, but not 16-bit Unicode, + they are very rare, nevertheless we accept them. */ + if ((b & 0xf8) == 0xf0) { /* 1110xxxx 3 x 10xxxxxx sequence */ + remains_10xxxxxx = 3; + utf8count++; + continue; + } + if ((b & 0xfc) == 0xf8) { /* 1110xxxx 4 x 10xxxxxx sequence */ + remains_10xxxxxx = 4; + utf8count++; + continue; + } + if ((b & 0xfe) == 0xfc) { /* 1110xxxx 5 x 10xxxxxx sequence */ + remains_10xxxxxx = 5; + utf8count++; + continue; + } + /* We can get here only when input is invalid: (b & 0xc0) == 0x80. */ + return 0; + } + else { + /* Broken 10xxxxxx sequence? */ + if ((b & 0xc0) != 0x80) { + return 0; + } + remains_10xxxxxx--; + } + } + + /* Unfinished 10xxxxxx sequence. */ + if (remains_10xxxxxx != 0 && analyser->options.termination_strictness > 0) + return 0; + + if (utf8count < (int)analyser->options.min_chars) + return 0; + + analyser->result.charset = utf8; + analyser->result.surface |= enca_eol_surface(buffer, size, counts); + return 1; +} + +/** + * looks_like_TeX: + * @analyser: Analyser whose buffer is to be checked. + * + * Checks whether @analyser->buffer contains TeX-encoded 8bit characters. + * + * Directly modifies @analyser->result on success. + * + * Returns: Nonzero when @analyser->result was set, zero othewrise. + **/ +static int +looks_like_TeX(EncaAnalyserState *analyser) +{ + /* TeX escape character, skip-characters, punctuation and alpha accents */ + + /* THIS IS A GENERATED TABLE, see tools/expand_table.pl */ + static const unsigned char TEX_ACCPUNCT[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + }; + + /* THIS IS A GENERATED TABLE, see tools/expand_table.pl */ + static const unsigned char TEX_ACCALPHA[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + }; + + static const unsigned char TEX_ESCAPE = '\\'; + static const unsigned char TEX_BRACE = '{'; + + static int TeX = ENCA_CS_UNKNOWN; /* TeX charset */ + + const unsigned char *const buffer = analyser->buffer; + const size_t size = analyser->size; + const size_t *const counts = analyser->counts; + + size_t TeXaccents = 0; /* number of TeX accents */ + const unsigned char *p; + + /* When the file doesn't contain enough escape characters, + don't waste time scanning it. */ + if (counts[TEX_ESCAPE] < analyser->options.min_chars) + return 0; + + /* Initialize when we are called the first time. */ + if (TeX == ENCA_CS_UNKNOWN) { + TeX = enca_name_to_charset("TeX"); + assert(TeX != ENCA_CS_UNKNOWN); + } + + /* [roughly] count TeX accents */ + p = memchr(buffer, TEX_ESCAPE, size); + while (p != NULL && (size_t)(p-buffer) + 2 < size) { + if (*p == TEX_ESCAPE) { + p++; + if (*p == TEX_ESCAPE) + p++; /* catch \\ */ + if (TEX_ACCPUNCT[*p] + || (TEX_ACCALPHA[*p] + && (*++p == TEX_BRACE || enca_isspace((char)*p)))) { + while ((size_t)(p-buffer) + 1 < size + && (*++p == TEX_BRACE || enca_isspace((char)*p))) + ; + if (enca_isalpha(*p)) TeXaccents++; + } + continue; + } + p = memchr(p, TEX_ESCAPE, size - (p - buffer)); + } + + if (TeXaccents < analyser->options.min_chars) + return 0; + + analyser->result.charset = TeX; + analyser->result.surface |= enca_eol_surface(buffer, size, counts); + return 1; +} + +/** + * is_valid_utf7: + * @analyser: Analyser whose buffer is to be checked. + * + * Checks whether @analyser->buffer contains valid UTF-7 + * + * Directly modifies @analyser->result on success. + * + * Returns: Nonzero when @analyser->result was set, zero othewrise. + **/ +static int +is_valid_utf7(EncaAnalyserState *analyser) +{ + /* UTF-7 special characters. */ + static const unsigned char UTF7_ESCAPE = '+'; + /* This is not a bug. `+-' is `+' in UTF-7. */ + static const unsigned char UTF7_PLUS = '-'; + + /* Base64 base (or so-called set B), see RFC1521, RFC1642 */ + /* THIS IS A GENERATED TABLE, see tools/expand_table.pl */ + static const short int BASE64[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 0, 0, 64, + 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 0, 0, 0, 0, 0, 0, + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 0, 0, 0, 0, 0, + 0, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, + 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + }; + + static int utf7 = ENCA_CS_UNKNOWN; /* UTF-7 charset */ + + const unsigned char *const buffer = analyser->buffer; + const size_t size = analyser->size; + const size_t *const counts = analyser->counts; + + size_t utf7count = 0; /* number of >7bit characters */ + unsigned char *p,*q; + + /* When the file doesn't contain enough UTF-7 shift characters, + don't waste time scanning it. */ + if (counts[UTF7_ESCAPE] < analyser->options.min_chars) + return 0; + + /* Initialize when we are called the first time. */ + if (utf7 == ENCA_CS_UNKNOWN) { + utf7 = enca_name_to_charset("utf-7"); + assert(utf7 != ENCA_CS_UNKNOWN); + } + + p = memchr(buffer, UTF7_ESCAPE, size); + while (p != NULL && (size_t)(p-buffer) + 1 < size) { + p++; + if (*p == UTF7_PLUS) { /* +- */ + /* Don't count +- since it's often used for 0x00b1 in plain 7bit ascii. */ + /* utf7count++; */ + } else { + for (q = p; (size_t)(q-buffer) < size && BASE64[*q]; q++) + ; + if ((size_t)(q-buffer) == size) { + p = q; + break; + } + /* check whether all padding bits are 0's (don't try to understand how) */ + if (q-p == 0 + || ((BASE64[*(q-1)]-1) & 0x3f>>(6 - 6*(q - p)%8))) + return 0; + + utf7count += 6*(q - p)/16; + p = q; + } + p = memchr(p, UTF7_ESCAPE, size - (p - buffer)); + } + + /* p != NULL means unsinished sequence here. */ + if (p != NULL && analyser->options.termination_strictness > 0) + return 0; + + if (utf7count < analyser->options.min_chars) + return 0; + + analyser->result.charset = utf7; + analyser->result.surface |= enca_eol_surface(buffer, size, counts); + return 1; +} + +/** + * looks_like_ucs2: + * @analyser: Analyser whose buffer is to be checked. + * + * Checks whether @analyser->buffer contains UCS-2 encoded characters. + * + * Directly modifies @analyser->result on success. + * + * Returns: Nonzero when @analyser->result was set, zero othewrise. + **/ +static int +looks_like_ucs2(EncaAnalyserState *analyser) +{ + static int ucs2 = ENCA_CS_UNKNOWN; /* UCS-2 charset id */ + + const unsigned char *const buffer = analyser->buffer; + const size_t size = analyser->size; + const size_t *const counts = analyser->counts; + + /* Bonus added when we catch a byte order marker. */ + size_t bom_bonus; + + size_t ucs2count = 0; /* something like number of good ucs-2 characters */ + unsigned int byte_order = 0; /* default byte order is little endian + * (msb first) */ + unsigned int byte_order_changes = 0; /* how many times byte_order changed */ + size_t cr = 0; /* number of CR's */ + size_t lf = 0; /* number of LF's */ + int crlf_ok = 1; /* are all LF's preceeded by CR's? */ + unsigned char b1, b2; + double r; + size_t i; + + /* The number of bytes must be of course even */ + if (size%2 != 0) + return 0; + + bom_bonus = (size_t)(sqrt((double)size) + size/10.0); + + /* When the file doesn't contain enough zeros, + don't waste time scanning it. */ + r = (2.0*(counts[0] + counts[1] + counts[2] + counts[3] + counts[4]) + + bom_bonus)/size; + if (r < log(analyser->options.threshold + EPSILON)) + return 0; + + /* Initialize when we are called the first time. */ + if (ucs2 == ENCA_CS_UNKNOWN) { + ucs2 = enca_name_to_charset("ucs-2"); + assert(ucs2 != ENCA_CS_UNKNOWN); + } + + /* Try to catch lsb even when it doesn't start with endian marker. */ + if (buffer[1] == 0 && enca_isprint(buffer[0])) + byte_order = 1; + + /* Scan buffer. */ + for (i = 0; i < size; i += 2) { + b1 = buffer[i + byte_order]; + b2 = buffer[i+1 - byte_order]; + /* Byte order marker detection. */ + if (b1 == 0xfe && b2 == 0xff) { + if (i == 0) + ucs2count += bom_bonus; + else + byte_order_changes++; + continue; + } + if (b1 == 0xff && b2 == 0xfe) { + byte_order = 1-byte_order; + if (i == 0) + ucs2count += bom_bonus; + else + byte_order_changes++; + continue; + } + /* Black magic. + * When almost any word can be UCS-2 character, we have to assume some + * are far more probable. */ + if (b1 == 0) { + ucs2count += (enca_isprint(b2) || enca_isspace(b2)) ? 2 : 0; + /* check EOLs */ + if (b2 == CR) + cr++; + if (b2 == LF) { + lf++; + if (i > 0 + && (buffer[i-1-byte_order] != CR + || buffer[i-2+byte_order] != 0)) + crlf_ok = 0; + } + } + else { + if (b1 <= 4) + ucs2count += 2; + } + } + + /* Now we have to decide what we tell to the caller. */ + r = (double)ucs2count/size; + if (r < log(analyser->options.threshold + EPSILON) + || ucs2count/2 < analyser->options.min_chars) + return 0; + + analyser->result.charset = ucs2; + + /* Byte order surface. */ + if (byte_order_changes) + analyser->result.surface |= ENCA_SURFACE_PERM_MIX; + else + analyser->result.surface |= byte_order ? ENCA_SURFACE_PERM_21: 0; + + /* EOL surface. */ + if (cr == 0) + analyser->result.surface |= ENCA_SURFACE_EOL_LF; + else { + if (lf == 0) + analyser->result.surface |= ENCA_SURFACE_EOL_CR; + else { + analyser->result.surface |= crlf_ok + ? ENCA_SURFACE_EOL_CRLF + : ENCA_SURFACE_EOL_MIX; + } + } + + return 1; +} + +/** + * looks_like_ucs4: + * @analyser: Analyser whose buffer is to be checked. + * + * Checks whether @analyser->buffer contains UCS-4 encoded characters. + * + * Directly modifies @analyser->result on success. + * + * Returns: Nonzero when @analyser->result was set, zero othewrise. + **/ +static int +looks_like_ucs4(EncaAnalyserState *analyser) +{ + static const EncaSurface PERMS[] = { + ENCA_SURFACE_PERM_4321, + ENCA_SURFACE_PERM_21 + }; + + static int ucs4 = ENCA_CS_UNKNOWN; /* UCS-4 charset id */ + + unsigned char *buffer = analyser->buffer; + const size_t size = analyser->size; + const size_t *const counts = analyser->counts; + + ssize_t ucs4count = 0; /* ucs-4-icity */ + size_t count_perm[4]; /* counts for various byteorders */ + EncaSurface eol[4]; /* EOL types for various byteorders */ + double r; /* rating */ + size_t i, max; + + /* The number of bytes must be of course multiple of 4. */ + if (size%4 != 0) + return 0; + + /* When the file doesn't contain enough zeros (and other small bytes), + don't waste time scanning it. */ + r = (4.0*(counts[0] + counts[1] + counts[2] + counts[3] + counts[4])/3.0) + /size; + if (r < log(analyser->options.threshold + EPSILON)) + return 0; + + /* Initialize when we are called the first time. */ + if (ucs4 == ENCA_CS_UNKNOWN) { + ucs4 = enca_name_to_charset("ucs-4"); + assert(ucs4 != ENCA_CS_UNKNOWN); + } + + /* Try all sensible unsigned charorders and find maximum. + At the end the buffer has the same byteorder as it had, but when + the buffer have to be considered const, work on copy. */ + if (analyser->options.const_buffer) { + buffer = memcpy(enca_malloc(size), buffer, size); + } + + max = 0; + for (i = 0; i < 4; i++) { + count_perm[i] = what_if_it_was_ucs4(buffer, size, + analyser->options.min_chars, + eol + i); + if (count_perm[i] > count_perm[max]) + max = i; + shuffle_byte_order(buffer, size, PERMS[i%2]); + } + + if (analyser->options.const_buffer) + enca_free(buffer); + + /* Use quite a cruel selection to restrain other byteorders. */ + ucs4count = 2*count_perm[max]; + for (i = 0; i < 4; i++) + ucs4count -= count_perm[i]; + + /* Now we have to decide what we tell to the caller. */ + r = (double)ucs4count/size; + if (r < log(analyser->options.threshold + EPSILON) + || ucs4count/4 < (int)analyser->options.min_chars) + return 0; + + analyser->result.charset = ucs4; + /* Compute what permutation corresponds to max. */ + for (i = 0; i < max; i++) + analyser->result.surface ^= PERMS[i%2]; + analyser->result.surface |= eol[max]; + + return 1; +} + +/** + * what_if_it_was_ucs4: + * @buffer: Buffer to be checked. + * @size: Size of @buffer. + * @min_chars: Minimal number of `nice' UCS-4 characters to succeede. + * @crlf_surf: Where detected EOL surface type should be stored. + * + * Checks whether @buffer contains little endian UCS-4 encoded characters. + * + * Assumes @buffer contains little endian UCS-4 and returns the number of + * `good' characters, and in case it's at least @min_chars, finds EOL surface + * type too. + * + * Returns: The number of `good' UCS-4 characters with some bonus for a good + * BOM. + **/ +static size_t +what_if_it_was_ucs4(const unsigned char *buffer, + size_t size, + size_t min_chars, + EncaSurface *crlf_surf) +{ + /* Bonus added when we catch a byte order marker. */ + size_t bom_bonus; + + size_t count = 0; /* ucs-4-icity */ + size_t cr = 0; /* number of CR's */ + size_t lf = 0; /* number of LF's */ + int crlf_ok = 1; /* are all LF's preceeded by CR's? */ + size_t i; + + /* check BOM */ + bom_bonus = (size_t)(sqrt((double)size) + size/20.0); + if (size) { + if (buffer[0] == 0 && buffer[1] == 0 + && buffer[2] == 0xfe && buffer[3] == 0xff) { + count += bom_bonus; + buffer += 4; + size -= 4; + } + } + + for (i = 0; i < size; i += 4) { + /* Does it look like little endian ucs-4? */ + if (buffer[i] == 0 && buffer[i+1] == 0) { + if (buffer[i+2] == 0) + count += enca_isprint(buffer[i+3]) || enca_isspace(buffer[i+3]) ? 4 : 0; + else { + if (buffer[i+2] < 5) + count += 4; + } + } + } + + /* Detect EOL surface + * To be 100% portable, we do it the ugly way: by testing individual bytes. */ + if (count/4 >= min_chars) { + for (i = 0; i < size; i += 4) { + if (buffer[i+3] == CR && buffer[i+2] == 0 + && buffer[i+1] == 0 && buffer[i] == 0) + cr++; + if (buffer[i+3] == LF && buffer[i+2] == 0 + && buffer[i+1] == 0 && buffer[i] == 0) { + lf++; + if (crlf_ok && i > 0 + && (buffer[i-1] != CR || buffer[i-2] != 0 + || buffer[i-3] != 0 || buffer[i-4] != 0)) + crlf_ok = 0; + } + } + /* EOL surface result */ + if (cr == 0) + *crlf_surf = ENCA_SURFACE_EOL_LF; + else { + if (lf == 0) + *crlf_surf = ENCA_SURFACE_EOL_CR; + else + *crlf_surf = crlf_ok ? ENCA_SURFACE_EOL_CRLF : ENCA_SURFACE_EOL_MIX; + } + } + + return count; +} + +/** + * shuffle_byte_order: + * @buffer: Buffer to be shuffled. + * @size: Size of @buffer. + * @permutation: Permutation type, possible values mean + * 0 no change + * ENCA_SURFACE_PERM_4321 4321 + * ENCA_SURFACE_PERM_21 21 (== 2143) + * ENCA_SURFACE_PERM_21|ENCA_SURFACE_PERM_4321 3412 + * + * Performs given permutation on @buffer. + **/ +static void +shuffle_byte_order(unsigned char *buffer, + size_t size, + EncaSurface permutation) +{ + size_t i; + unsigned char b; + + if (permutation & ENCA_SURFACE_PERM_4321) { + for (i = 0; i < size; i += 4) { + b = buffer[i]; + buffer[i] = buffer[i+3]; + buffer [i+3] = b; + + b = buffer[i+1]; + buffer[i+1] = buffer[i+2]; + buffer[i+2] = b; + } + } + + if (permutation & ENCA_SURFACE_PERM_21) { + for (i = 0; i < size; i += 2) { + b = buffer[i]; + buffer[i] = buffer[i+1]; + buffer [i+1] = b; + } + } +} + +/** + * looks_like_utf8: + * @analyser: Analyser whose buffer is to be checked. + * + * Checks whether @analyser->buffer may contain UTF-8. + * + * This is a fault-tolerant version of is_valid_utf8, intended to be used after + * filtering, when a few stray 8bit characters may appear in the sample. + * + * Directly modifies @analyser->result on success. + * + * Returns: Nonzero when @analyser->result was set, zero othewrise. + **/ +static int +looks_like_utf8(EncaAnalyserState *analyser) +{ + static int utf8 = ENCA_CS_UNKNOWN; /* UTF-8 charset */ + size_t size = analyser->size; + const unsigned char *buffer = analyser->buffer; + const size_t *const counts = analyser->counts; + + /* Bonus added when we catch a byte order marker. */ + size_t bom_bonus; + + int remains_10xxxxxx = 0; /* how many next bytes have to be 10xxxxxx */ + int utf8count = 0; /* number of UTF-8 encoded characters */ + int failures = 0; /* number of invalid sequences encountered */ + size_t i; + unsigned char b; + + /* Initialize when we are called the first time. */ + if (utf8 == ENCA_CS_UNKNOWN) { + utf8 = enca_name_to_charset("utf-8"); + assert(utf8 != ENCA_CS_UNKNOWN); + } + + /* Check BOM */ + bom_bonus = (size_t)(sqrt((double)size) + size/10.0); + if (size >= 3 + && buffer[0] == 0xef && buffer[1] == 0xbb && buffer[2] == 0xbf) { + utf8count += bom_bonus; + buffer += 3; + size -= 3; + } + + /* Parse. */ + for (i = 0; i < size; i++) { + b = buffer[i]; + if (!remains_10xxxxxx) { + if ((b & 0x80) == 0) /* 7bit characters */ + continue; + if ((b & 0xe0) == 0xc0) { /* 110xxxxx 10xxxxxx sequence */ + remains_10xxxxxx = 1; + utf8count++; + continue; + } + if ((b & 0xf0) == 0xe0) { /* 1110xxxx 2 x 10xxxxxx sequence */ + remains_10xxxxxx = 2; + utf8count++; + continue; + } + /* Following are valid 32-bit UCS characters, but not 16-bit Unicode, + they are very rare, nevertheless we accept them. */ + if ((b & 0xf8) == 0xf0) { /* 1110xxxx 3 x 10xxxxxx sequence */ + remains_10xxxxxx = 3; + utf8count++; + continue; + } + if ((b & 0xfc) == 0xf8) { /* 1110xxxx 4 x 10xxxxxx sequence */ + remains_10xxxxxx = 4; + utf8count++; + continue; + } + if ((b & 0xfe) == 0xfc) { /* 1110xxxx 5 x 10xxxxxx sequence */ + remains_10xxxxxx = 5; + utf8count++; + continue; + } + /* We can get here only when input is invalid: (b & 0xc0) == 0x80. */ + failures++; + remains_10xxxxxx = 0; + } + else { + /* Broken 10xxxxxx sequence? */ + if ((b & 0xc0) != 0x80) { + failures++; + utf8count--; + remains_10xxxxxx = 0; + } + else + remains_10xxxxxx--; + } + } + + /* Unfinished 10xxxxxx sequence. */ + if (remains_10xxxxxx != 0 && analyser->options.termination_strictness > 0) + failures += 2; + + /* Tolerate a small number of failures. */ + if (failures > exp(-7*(analyser->options.threshold - 1.0))*utf8count/2.0) + return 0; + + analyser->result.charset = utf8; + analyser->result.surface |= enca_eol_surface(buffer, size, counts); + if (failures > 0) + analyser->result.surface |= ENCA_SURFACE_EOL_BIN; + return 1; +} + +/** + * looks_like_hz: + * @analyser: An analyser. + * + * Checks whether @analyser buffer is HZ-encoded. See RFC 1843 + * + * Directly modifies @analyser->result on success. + * + * Returns: Nonzero when @analyser->result was set, zero othewrise. + **/ +static int +looks_like_hz(EncaAnalyserState *analyser) +{ + unsigned char *buffer = analyser->buffer; + size_t size = analyser->size; + static int hz = ENCA_CS_UNKNOWN; /* HZ charset */ + size_t hzcount = 0; /* number of qp encoded characters */ + unsigned char *p = buffer; + const size_t *const counts = analyser->counts; + + int escaped; /* true when we're in 8-bit mode */ + unsigned int i; + + /* Initialize when we are called the first time. */ + if (hz == ENCA_CS_UNKNOWN) { + hz = enca_name_to_charset("hz"); + assert(hz != ENCA_CS_UNKNOWN); + } + + for (i = 0; i < analyser->ncharsets; i++) + if (analyser->charsets[i] == hz) + goto goahead; + return 0; + +goahead: + /* When the file doesn't contain escape characters, + don't waste time scanning it. */ + if (counts['{'] == 0 + || counts['}'] == 0 + || counts['~'] == 0) + return 0; + + /* Move to first escaped-in */ + /* FIXME: Things will be simpler if we have strnstr()? */ + while ((size_t)(p - buffer) + 2 < size) { + p = memchr(p, '~', size - (p - buffer)); + if (p == NULL) + return 0; + if (p[1] == '{') { + escaped = 1; + p += 2; + break; + } else if (p[1] == '\n') { + p += 2; + } else if (p[1] == '~') { + p += 2; + } else + p += 2; + } + + /* Check if it's valid HZ and count hz encoded characters. */ + while (p < buffer + size) { + if (*p == '~' && p < buffer + size - 1) { + switch (p[1]) { + case '~': + if (escaped) { + p++; + hzcount++; + } else { + p += 2; + } + break; + case '{': + if (!escaped) { + p += 2; + escaped = 1; + } else { + return 0; + } + break; + case '}': + if (escaped) { + escaped = 0; + p += 2; + } else { + return 0; + } + break; + case '\n': + if (escaped) { + return 0; + } + p += 2; + break; + default: + if (!escaped) { + return 0; + } + p++; + } + } else { + /* Spaces, CR or LF not allowed in escaped block */ + if (escaped) { + if (*p < ' ') { + return 0; + } + hzcount++; + } + p++; + } + } + + if (hzcount < analyser->options.min_chars) + return 0; + + /* Unfinished escaped block here. */ + if (escaped && analyser->options.termination_strictness > 0) + return 0; + + analyser->result.charset = hz; + analyser->result.surface |= enca_eol_surface(buffer, size, counts); + + return 1; +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/multibyte.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/multibyte.lo new file mode 100644 index 0000000..dfd9f54 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/multibyte.lo @@ -0,0 +1,12 @@ +# multibyte.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='multibyte.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/multibyte.o b/wlx/wayland_qt_base/build/enca-1.19/lib/multibyte.o new file mode 100644 index 0000000..c7b4ae3 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/multibyte.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/pair.c b/wlx/wayland_qt_base/build/enca-1.19/lib/pair.c new file mode 100644 index 0000000..2569bd7 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/pair.c @@ -0,0 +1,237 @@ +/* + pair-frequency based tests (used for 8bit-dense languages) + + Copyright (C) 2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include +#include + +#include "enca.h" +#include "internal.h" + +/* Local prototypes. */ +static size_t count_all_8bit_pairs(EncaAnalyserState *analyser); +static void compute_pair2bits(EncaAnalyserState *analyser); +static void count_good_pairs(EncaAnalyserState *analyser); + +/** + * enca_pair_init: + * @analyser: Analyzer state to be initialized. + * + * Initializes pair statistics data. + * + * In fact it just sets everything to #NULL, to be initialized when needed. + **/ +void +enca_pair_init(EncaAnalyserState *analyser) +{ + analyser->bitcounts = NULL; + analyser->pairratings = NULL; + analyser->pair2bits = NULL; +} + +/** + * enca_pair_destroy: + * @analyser: Analyzer state whose pair statistics part should be destroyed. + * + * Destroys the pair statistics part of analyser state @analyser. + **/ +void +enca_pair_destroy(EncaAnalyserState *analyser) +{ + enca_free(analyser->pair2bits); + enca_free(analyser->bitcounts); + enca_free(analyser->pairratings); +} + +/** + * enca_pair_analyse: + * @analyser: Analysed containing the sample for pair frequency analysis. + * + * Performs pair-frequency based analysis, provided that the language supports + * it (does nothing otherwise). + * + * Returns: Nonzero when the character set was succesfully determined, + * @analyser->@result.@charset is then directly modified. + **/ +int +enca_pair_analyse(EncaAnalyserState *analyser) +{ + const unsigned char *const *letters = analyser->lang->letters; + const unsigned char **const *pairs = analyser->lang->pairs; + size_t ncharsets = analyser->ncharsets; + size_t i, best, all8bitpairs; + double q; + + if (!letters || !pairs) + return 0; + + if (!analyser->pairratings) + analyser->pairratings = NEW(size_t, ncharsets); + + /* count the good pairs and find winner + * initialize when we are called the first time */ + if (!analyser->pair2bits) { + compute_pair2bits(analyser); + analyser->bitcounts = NEW(size_t, 1 << ncharsets); + } + memset(analyser->pairratings, 0, ncharsets*sizeof(size_t)); + all8bitpairs = count_all_8bit_pairs(analyser); + count_good_pairs(analyser); + + best = 0; + for (i = 1; i < ncharsets; i++) { + if (analyser->pairratings[i] > analyser->pairratings[best]) + best = i; + } + + /* Just a Right Value */ + q = 1.0 - exp(3.0*(1.0 - analyser->options.threshold)); + if (analyser->pairratings[best] >= analyser->options.min_chars + && analyser->pairratings[best] >= q*all8bitpairs) { + analyser->result.charset = analyser->charsets[best]; + return 1; + } + + /* I don't like saying it, but the sample seems to be garbage... */ + return 0; +} + +/** + * count_all_8bit_pairs: + * @analyser: An analyser. + * + * Count all pairs containing at least one 8bit characters. + * + * Returns: The number of such pairs. + **/ +static size_t +count_all_8bit_pairs(EncaAnalyserState *analyser) +{ + unsigned char *buffer = analyser->buffer; + size_t size = analyser->size; + size_t i, c, sum8bits; + + sum8bits = 0; + c = FILL_NONLETTER; + for (i = size; i; i--) { + if ((c | *buffer) & 0x80) + sum8bits++; + c = *(buffer++); + } + if (size && (c & 0x80)) + sum8bits++; + + return sum8bits; +} + +/** + * count_good_pairs: + * @analyser: An analyser. + * + * Count `good' pairs for each charset. + * + * Makes use of @analyser->pair2bits. See compute_pair2bits() comment for + * description of how it works. + **/ +static void +count_good_pairs(EncaAnalyserState *analyser) +{ + size_t *ratings = analyser->pairratings; + unsigned char *pair2bits = analyser->pair2bits; + size_t *bitcounts = analyser->bitcounts; + size_t ncharsets = analyser->ncharsets; + const unsigned char *buffer = analyser->buffer; + size_t size = analyser->size; + size_t i, j, c, cs; + + assert(ncharsets <= 8); + assert(pair2bits); + assert(bitcounts); + assert(ratings); + + memset(bitcounts, 0, (1 << ncharsets)*sizeof(size_t)); + c = FILL_NONLETTER << 8; + for (i = size; i; i--) { + bitcounts[pair2bits[c | *buffer]]++; + c = *(buffer++) << 8; + } + if (size) + bitcounts[pair2bits[c | FILL_NONLETTER]]++; + + memset(ratings, 0, ncharsets*sizeof(size_t)); + for (cs = 0; cs < ncharsets; cs++) { + size_t bit = 1 << cs; + size_t rating = 0; + + for (i = 0; i < (1U << ncharsets); i += 2*bit) { + for (j = i+bit; j < i+2*bit; j++) + rating += bitcounts[j]; + } + ratings[cs] = rating; + } +} + +/** + * compute_pair2bits: + * @analyser: An analyser. + * + * Allocate and fill @analyser->@pair2bits. + * + * The meaning of pair2bits is following: it's indexed by pairs (0x100*first + * + second) and each @pair2bits element has set a bit corresponding to a + * charset when the pair is `good' for the charset. + * + * To determine `good' pair counts for all charsets we don't have to count + * the pairs, we only have to count the bit combinations (@bitcounts) and the + * per charset pair counts can be easily constructed from them -- by summing + * those with the particular bit set. + **/ +static void +compute_pair2bits(EncaAnalyserState *analyser) +{ + size_t ncharsets = analyser->ncharsets; + size_t cs, c; + + assert(analyser->pair2bits == NULL); + assert(analyser->ncharsets <= 8); + + analyser->pair2bits = NEW(unsigned char, 0x10000); + memset(analyser->pair2bits, 0, 0x10000); + for (cs = 0; cs < ncharsets; cs++) { + const unsigned char *letters = analyser->lang->letters[cs]; + const unsigned char *const *pairs = analyser->lang->pairs[cs]; + size_t bit = 1 << cs; + + for (c = 0; c < 0x100; c++) { + size_t j = letters[c]; + + if (j != 255) { + const unsigned char *s = pairs[j]; + unsigned char *p = analyser->pair2bits + (c << 8); + + /* set the corresponding bit for all pairs */ + do { + p[(size_t)*(s++)] |= bit; + } while (*s); + } + } + } +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/pair.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/pair.lo new file mode 100644 index 0000000..0710231 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/pair.lo @@ -0,0 +1,12 @@ +# pair.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='pair.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/pair.o b/wlx/wayland_qt_base/build/enca-1.19/lib/pair.o new file mode 100644 index 0000000..d499f9f Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/pair.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/unicodemap.c b/wlx/wayland_qt_base/build/enca-1.19/lib/unicodemap.c new file mode 100644 index 0000000..fba7185 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/unicodemap.c @@ -0,0 +1,667 @@ +/* + unicode (i.e. ucs-2) data and conversion table managment + + Copyright (C) 2000-2003 David Necas (Yeti) + Unicode data in this module come from various free on-line resources. + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "enca.h" +#include "internal.h" + +/** + * NO_CHR: + * + * Alias for ENCA_NOT_A_CHAR, which lines up with 0xabcd. + **/ +#define NO_CHR ENCA_NOT_A_CHAR + +/** + * EncaUnicodeMap: + * @name: Charset name (any, Enca's is best). + * @tstart: Table start, character codes less than tstart maps to themselves. + * @map: The map itself. + * + * 8bit charset -> Unicode mapping. + **/ +struct _EncaUnicodeMap { + const char *name; + size_t tstart; + const unsigned short int *map; +}; + +typedef struct _EncaUnicodeMap EncaUnicodeMap; + +/* Local prototypes. */ +static const EncaUnicodeMap* find_charset_map(int charset); + +/* ISO-8859-2 */ +static const unsigned short int unicode_map_iso88592[] = { + 0x00a0, 0x0104, 0x02d8, 0x0141, 0x00a4, 0x013d, 0x015a, 0x00a7, /* 0xa0 */ + 0x00a8, 0x0160, 0x015e, 0x0164, 0x0179, 0x00ad, 0x017d, 0x017b, /* 0xa8 */ + 0x00b0, 0x0105, 0x02db, 0x0142, 0x00b4, 0x013e, 0x015b, 0x02c7, /* 0xb0 */ + 0x00b8, 0x0161, 0x015f, 0x0165, 0x017a, 0x02dd, 0x017e, 0x017c, /* 0xb8 */ + 0x0154, 0x00c1, 0x00c2, 0x0102, 0x00c4, 0x0139, 0x0106, 0x00c7, /* 0xc0 */ + 0x010c, 0x00c9, 0x0118, 0x00cb, 0x011a, 0x00cd, 0x00ce, 0x010e, /* 0xc8 */ + 0x0110, 0x0143, 0x0147, 0x00d3, 0x00d4, 0x0150, 0x00d6, 0x00d7, /* 0xd0 */ + 0x0158, 0x016e, 0x00da, 0x0170, 0x00dc, 0x00dd, 0x0162, 0x00df, /* 0xd8 */ + 0x0155, 0x00e1, 0x00e2, 0x0103, 0x00e4, 0x013a, 0x0107, 0x00e7, /* 0xe0 */ + 0x010d, 0x00e9, 0x0119, 0x00eb, 0x011b, 0x00ed, 0x00ee, 0x010f, /* 0xe8 */ + 0x0111, 0x0144, 0x0148, 0x00f3, 0x00f4, 0x0151, 0x00f6, 0x00f7, /* 0xf0 */ + 0x0159, 0x016f, 0x00fa, 0x0171, 0x00fc, 0x00fd, 0x0163, 0x02d9 /* 0xf8 */ +}; + +/* ISO-8859-4 */ +static const unsigned short int unicode_map_iso88594[] = { + 0x00a0, 0x0104, 0x0138, 0x0156, 0x00a4, 0x0128, 0x013b, 0x00a7, /* 0xa0 */ + 0x00a8, 0x0160, 0x0112, 0x0122, 0x0166, 0x00ad, 0x017d, 0x00af, /* 0xa8 */ + 0x00b0, 0x0105, 0x02db, 0x0157, 0x00b4, 0x0129, 0x013c, 0x02c7, /* 0xb0 */ + 0x00b8, 0x0161, 0x0113, 0x0123, 0x0167, 0x014a, 0x017e, 0x014b, /* 0xb8 */ + 0x0100, 0x00c1, 0x00c2, 0x00c3, 0x00c4, 0x00c5, 0x00c6, 0x012e, /* 0xc0 */ + 0x010c, 0x00c9, 0x0118, 0x00cb, 0x0116, 0x00cd, 0x00ce, 0x012a, /* 0xc8 */ + 0x0110, 0x0145, 0x014c, 0x0136, 0x00d4, 0x00d5, 0x00d6, 0x00d7, /* 0xd0 */ + 0x00d8, 0x0172, 0x00da, 0x00db, 0x00dc, 0x0168, 0x016a, 0x00df, /* 0xd8 */ + 0x0101, 0x00e1, 0x00e2, 0x00e3, 0x00e4, 0x00e5, 0x00e6, 0x012f, /* 0xe0 */ + 0x010d, 0x00e9, 0x0119, 0x00eb, 0x0117, 0x00ed, 0x00ee, 0x012b, /* 0xe8 */ + 0x0111, 0x0146, 0x014d, 0x0137, 0x00f4, 0x00f5, 0x00f6, 0x00f7, /* 0xf0 */ + 0x00f8, 0x0173, 0x00fa, 0x00fb, 0x00fc, 0x0169, 0x016b, 0x02d9, /* 0xf8 */ +}; + +/* ISO-8859-5 */ +static const unsigned short int unicode_map_iso88595[] = { + 0x00a0, 0x0401, 0x0402, 0x0403, 0x0404, 0x0405, 0x0406, 0x0407, /* 0xa0 */ + 0x0408, 0x0409, 0x040a, 0x040b, 0x040c, 0x00ad, 0x040e, 0x040f, /* 0xa8 */ + 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417, /* 0xb0 */ + 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f, /* 0xb8 */ + 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427, /* 0xc0 */ + 0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f, /* 0xc8 */ + 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437, /* 0xd0 */ + 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f, /* 0xd8 */ + 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, /* 0xe0 */ + 0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f, /* 0xe8 */ + 0x2116, 0x0451, 0x0452, 0x0453, 0x0454, 0x0455, 0x0456, 0x0457, /* 0xf0 */ + 0x0458, 0x0459, 0x045a, 0x045b, 0x045c, 0x00a7, 0x045e, 0x045f, /* 0xf8 */ +}; + +/* ISO-8859-13 */ +static const unsigned short int unicode_map_iso885913[] = { + 0x00a0, 0x201d, 0x00a2, 0x00a3, 0x00a4, 0x201e, 0x00a6, 0x00a7, /* 0xa0 */ + 0x00d8, 0x00a9, 0x0156, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x00c6, /* 0xa8 */ + 0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x201c, 0x00b5, 0x00b6, 0x00b7, /* 0xb0 */ + 0x00f8, 0x00b9, 0x0157, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0x00e6, /* 0xb8 */ + 0x0104, 0x012e, 0x0100, 0x0106, 0x00c4, 0x00c5, 0x0118, 0x0112, /* 0xc0 */ + 0x010c, 0x00c9, 0x0179, 0x0116, 0x0122, 0x0136, 0x012a, 0x013b, /* 0xc8 */ + 0x0160, 0x0143, 0x0145, 0x00d3, 0x014c, 0x00d5, 0x00d6, 0x00d7, /* 0xd0 */ + 0x0172, 0x0141, 0x015a, 0x016a, 0x00dc, 0x017b, 0x017d, 0x00df, /* 0xd8 */ + 0x0105, 0x012f, 0x0101, 0x0107, 0x00e4, 0x00e5, 0x0119, 0x0113, /* 0xe0 */ + 0x010d, 0x00e9, 0x017a, 0x0117, 0x0123, 0x0137, 0x012b, 0x013c, /* 0xe8 */ + 0x0161, 0x0144, 0x0146, 0x00f3, 0x014d, 0x00f5, 0x00f6, 0x00f7, /* 0xf0 */ + 0x0173, 0x0142, 0x015b, 0x016b, 0x00fc, 0x017c, 0x017e, 0x2019, /* 0xf8 */ +}; + +/* ISO-8859-16 */ +static const unsigned short int unicode_map_iso885916[] = { + 0x00a0, 0x0104, 0x0105, 0x0141, 0x20ac, 0x00ab, 0x0160, 0x00a7, /* 0xa0 */ + 0x0161, 0x00a9, 0x0218, 0x201e, 0x0179, 0x00ad, 0x017a, 0x017b, /* 0xa8 */ + 0x00b0, 0x00b1, 0x010c, 0x0142, 0x017d, 0x201d, 0x00b6, 0x00b7, /* 0xb0 */ + 0x017e, 0x010d, 0x0219, 0x00bb, 0x0152, 0x0153, 0x0178, 0x017c, /* 0xb8 */ + 0x00c0, 0x00c1, 0x00c2, 0x0102, 0x00c4, 0x0106, 0x00c6, 0x00c7, /* 0xc0 */ + 0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce, 0x00cf, /* 0xc8 */ + 0x0110, 0x0143, 0x00d2, 0x00d3, 0x00d4, 0x0150, 0x00d6, 0x015a, /* 0xd0 */ + 0x0170, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x0118, 0x021a, 0x00df, /* 0xd8 */ + 0x00e0, 0x00e1, 0x00e2, 0x0103, 0x00e4, 0x0107, 0x00e6, 0x00e7, /* 0xe0 */ + 0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef, /* 0xe8 */ + 0x0111, 0x0144, 0x00f2, 0x00f3, 0x00f4, 0x0151, 0x00f6, 0x015b, /* 0xf0 */ + 0x0171, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x0119, 0x021b, 0x00ff, /* 0xf8 */ +}; + +/* Windows 1125 */ +static const unsigned short int unicode_map_cp1125[] = { + 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417, /* 0x80 */ + 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f, /* 0x88 */ + 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427, /* 0x90 */ + 0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f, /* 0x98 */ + 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437, /* 0xa0 */ + 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f, /* 0xa8 */ + 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556, /* 0xb0 */ + 0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510, /* 0xb8 */ + 0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f, /* 0xc0 */ + 0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567, /* 0xc8 */ + 0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b, /* 0xd0 */ + 0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580, /* 0xd8 */ + 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, /* 0xe0 */ + 0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f, /* 0xe8 */ + 0x0401, 0x0451, 0x0490, 0x0491, 0x0404, 0x0454, 0x0406, 0x0456, /* 0xf0 */ + 0x0407, 0x0457, 0x00b7, 0x221a, 0x2116, 0x00a4, 0x25a0, 0x00a0, /* 0xf8 */ +}; + +/* Windows 1250 */ +static const unsigned short int unicode_map_cp1250[] = { + NO_CHR, NO_CHR, 0x201a, NO_CHR, 0x201e, 0x2026, 0x2020, 0x2021, /* 0x80 */ + NO_CHR, 0x2030, 0x0160, 0x2039, 0x015a, 0x0164, 0x017d, 0x0179, /* 0x88 */ + NO_CHR, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014, /* 0x90 */ + NO_CHR, 0x2122, 0x0161, 0x203a, 0x015b, 0x0165, 0x017e, 0x017a, /* 0x98 */ + 0x00a0, 0x02c7, 0x02d8, 0x0141, 0x00a4, 0x0104, 0x00a6, 0x00a7, /* 0xa0 */ + 0x00a8, 0x00a9, 0x015e, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x017b, /* 0xa8 */ + 0x00b0, 0x00b1, 0x02db, 0x0142, 0x00b4, 0x00b5, 0x00b6, 0x00b7, /* 0xb0 */ + 0x00b8, 0x0105, 0x015f, 0x00bb, 0x013d, 0x02dd, 0x013e, 0x017c, /* 0xb8 */ + 0x0154, 0x00c1, 0x00c2, 0x0102, 0x00c4, 0x0139, 0x0106, 0x00c7, /* 0xc0 */ + 0x010c, 0x00c9, 0x0118, 0x00cb, 0x011a, 0x00cd, 0x00ce, 0x010e, /* 0xc8 */ + 0x0110, 0x0143, 0x0147, 0x00d3, 0x00d4, 0x0150, 0x00d6, 0x00d7, /* 0xd0 */ + 0x0158, 0x016e, 0x00da, 0x0170, 0x00dc, 0x00dd, 0x0162, 0x00df, /* 0xd8 */ + 0x0155, 0x00e1, 0x00e2, 0x0103, 0x00e4, 0x013a, 0x0107, 0x00e7, /* 0xe0 */ + 0x010d, 0x00e9, 0x0119, 0x00eb, 0x011b, 0x00ed, 0x00ee, 0x010f, /* 0xe8 */ + 0x0111, 0x0144, 0x0148, 0x00f3, 0x00f4, 0x0151, 0x00f6, 0x00f7, /* 0xf0 */ + 0x0159, 0x016f, 0x00fa, 0x0171, 0x00fc, 0x00fd, 0x0163, 0x02d9, /* 0xf8 */ +}; + +/* Windows 1251 */ +static const unsigned short int unicode_map_cp1251[] = { + 0x0402, 0x0403, 0x201a, 0x0453, 0x201e, 0x2026, 0x2020, 0x2021, /* 0x80 */ + 0x20ac, 0x2030, 0x0409, 0x2039, 0x040a, 0x040c, 0x040b, 0x040f, /* 0x88 */ + 0x0452, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014, /* 0x90 */ + NO_CHR, 0x2122, 0x0459, 0x203a, 0x045a, 0x045c, 0x045b, 0x045f, /* 0x98 */ + 0x00a0, 0x040e, 0x045e, 0x0408, 0x00a4, 0x0490, 0x00a6, 0x00a7, /* 0xa0 */ + 0x0401, 0x00a9, 0x0404, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x0407, /* 0xa8 */ + 0x00b0, 0x00b1, 0x0406, 0x0456, 0x0491, 0x00b5, 0x00b6, 0x00b7, /* 0xb0 */ + 0x0451, 0x2116, 0x0454, 0x00bb, 0x0458, 0x0405, 0x0455, 0x0457, /* 0xb8 */ + 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417, /* 0xc0 */ + 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f, /* 0xc8 */ + 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427, /* 0xd0 */ + 0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f, /* 0xd8 */ + 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437, /* 0xe0 */ + 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f, /* 0xe8 */ + 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, /* 0xf0 */ + 0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f, /* 0xf8 */ +}; + +/* Windows 1257 */ +static const unsigned short int unicode_map_cp1257[] = { + 0x20ac, NO_CHR, 0x201a, NO_CHR, 0x201e, 0x2026, 0x2020, 0x2021, /* 0x80 */ + NO_CHR, 0x2030, NO_CHR, 0x2039, NO_CHR, NO_CHR, NO_CHR, NO_CHR, /* 0x88 */ + NO_CHR, 0x2018, 0x2019, 0x201c, 0x201d, 0x2022, 0x2013, 0x2014, /* 0x90 */ + NO_CHR, 0x2122, NO_CHR, 0x203a, NO_CHR, NO_CHR, NO_CHR, NO_CHR, /* 0x98 */ + 0x00a0, NO_CHR, 0x00a2, 0x00a3, 0x00a4, NO_CHR, 0x00a6, 0x00a7, /* 0xa0 */ + 0x00d8, 0x00a9, 0x0156, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x00c6, /* 0xa8 */ + 0x00b0, 0x00b1, 0x00b2, 0x00b3, NO_CHR, 0x00b5, 0x00b6, 0x00b7, /* 0xb0 */ + 0x00f8, 0x00b9, 0x0157, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0x00e6, /* 0xb8 */ + 0x0104, 0x012e, 0x0100, 0x0106, 0x00c4, 0x00c5, 0x0118, 0x0112, /* 0xc0 */ + 0x010c, 0x00c9, 0x0179, 0x0116, 0x0122, 0x0136, 0x012a, 0x013b, /* 0xc8 */ + 0x0160, 0x0143, 0x0145, 0x00d3, 0x014c, 0x00d5, 0x00d6, 0x00d7, /* 0xd0 */ + 0x0172, 0x0141, 0x015a, 0x016a, 0x00dc, 0x017b, 0x017d, 0x00df, /* 0xd8 */ + 0x0105, 0x012f, 0x0101, 0x0107, 0x00e4, 0x00e5, 0x0119, 0x0113, /* 0xe0 */ + 0x010d, 0x00e9, 0x017a, 0x0117, 0x0123, 0x0137, 0x012b, 0x013c, /* 0xe8 */ + 0x0161, 0x0144, 0x0146, 0x00f3, 0x014d, 0x00f5, 0x00f6, 0x00f7, /* 0xf0 */ + 0x0173, 0x0142, 0x015b, 0x016b, 0x00fc, 0x017c, 0x017e, NO_CHR, /* 0xf8 */ +}; + +/* IBM 852 */ +static const unsigned short int unicode_map_ibm852[] = { + 0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e4, 0x016f, 0x0107, 0x00e7, /* 0x80 */ + 0x0142, 0x00eb, 0x0150, 0x0151, 0x00ee, 0x0179, 0x00c4, 0x0106, /* 0x88 */ + 0x00c9, 0x0139, 0x013a, 0x00f4, 0x00f6, 0x013d, 0x013e, 0x015a, /* 0x90 */ + 0x015b, 0x00d6, 0x00dc, 0x0164, 0x0165, 0x0141, 0x00d7, 0x010d, /* 0x98 */ + 0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x0104, 0x0105, 0x017d, 0x017e, /* 0xa0 */ + 0x0118, 0x0119, 0x00ac, 0x017a, 0x010c, 0x015f, 0x00ab, 0x00bb, /* 0xa8 */ + 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x00c1, 0x00c2, 0x011a, /* 0xb0 */ + 0x015e, 0x2563, 0x2551, 0x2557, 0x255d, 0x017b, 0x017c, 0x2510, /* 0xb8 */ + 0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x0102, 0x0103, /* 0xc0 */ + 0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x00a4, /* 0xc8 */ + 0x0111, 0x0110, 0x010e, 0x00cb, 0x010f, 0x0147, 0x00cd, 0x00ce, /* 0xd0 */ + 0x011b, 0x2518, 0x250c, 0x2588, 0x2584, 0x0162, 0x016e, 0x2580, /* 0xd8 */ + 0x00d3, 0x00df, 0x00d4, 0x0143, 0x0144, 0x0148, 0x0160, 0x0161, /* 0xe0 */ + 0x0154, 0x00da, 0x0155, 0x0170, 0x00fd, 0x00dd, 0x0163, 0x00b4, /* 0xe8 */ + 0x00ad, 0x02dd, 0x02db, 0x02c7, 0x02d8, 0x00a7, 0x00f7, 0x00b8, /* 0xf0 */ + 0x00b0, 0x00a8, 0x02d9, 0x0171, 0x0158, 0x0159, 0x25a0, 0x00a0, /* 0xf8 */ +}; + +/* IBM 855 */ +static const unsigned short int unicode_map_ibm855[] = { + 0x0452, 0x0402, 0x0453, 0x0403, 0x0451, 0x0401, 0x0454, 0x0404, /* 0x80 */ + 0x0455, 0x0405, 0x0456, 0x0406, 0x0457, 0x0407, 0x0458, 0x0408, /* 0x88 */ + 0x0459, 0x0409, 0x045a, 0x040a, 0x045b, 0x0093, 0x045c, 0x040c, /* 0x90 */ + 0x045e, 0x040e, 0x045f, 0x040f, 0x044e, 0x042e, 0x044a, 0x042a, /* 0x98 */ + 0x0430, 0x0410, 0x0431, 0x0411, 0x0446, 0x0426, 0x0434, 0x0414, /* 0xa0 */ + 0x0435, 0x0415, 0x0444, 0x0424, 0x0433, 0x0413, 0x00ab, 0x00bb, /* 0xa8 */ + 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x0445, 0x0425, 0x0438, /* 0xb0 */ + 0x0418, 0x2563, 0x2551, 0x2557, 0x255d, 0x0439, 0x0419, 0x2510, /* 0xb8 */ + 0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x043a, 0x041a, /* 0xc0 */ + 0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x00a4, /* 0xc8 */ + 0x043b, 0x041b, 0x043c, 0x041c, 0x043d, 0x041d, 0x043e, 0x041e, /* 0xd0 */ + 0x043f, 0x2518, 0x250c, 0x2588, 0x2584, 0x041f, 0x044f, 0x2580, /* 0xd8 */ + 0x042f, 0x0440, 0x0420, 0x0441, 0x0421, 0x0442, 0x0422, 0x0443, /* 0xe0 */ + 0x0423, 0x0436, 0x0416, 0x0432, 0x0412, 0x044c, 0x042c, 0x00b4, /* 0xe8 */ + 0x00ad, 0x044b, 0x042b, 0x0437, 0x0417, 0x0448, 0x0428, 0x044d, /* 0xf0 */ + 0x042d, 0x0449, 0x0429, 0x0447, 0x0427, NO_CHR, 0x25a0, 0x00a0, /* 0xf8 */ +}; + +/* IBM 775 */ +static const unsigned short int unicode_map_ibm775[] = { + 0x0106, 0x00fc, 0x00e9, 0x0101, 0x00e4, 0x0123, 0x00e5, 0x0107, /* 0x80 */ + 0x0142, 0x0113, 0x0156, 0x0157, 0x012b, 0x0179, 0x00c4, 0x00c5, /* 0x88 */ + 0x00c9, 0x00e6, 0x00c6, 0x014d, 0x00f6, 0x0122, 0x00a2, 0x015a, /* 0x90 */ + 0x015b, 0x00d6, 0x00dc, 0x00f8, 0x00a3, 0x00d8, 0x00d7, 0x00a4, /* 0x98 */ + 0x0100, 0x012a, 0x00f3, 0x017b, 0x017c, 0x017a, 0x201d, 0x00a6, /* 0xa0 */ + 0x00a9, 0x00ae, 0x00ac, 0x00bd, 0x00bc, 0x0141, 0x00ab, 0x00bb, /* 0xa8 */ + 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x0104, 0x010c, 0x0118, /* 0xb0 */ + 0x0116, 0x2563, 0x2551, 0x2557, 0x255d, 0x012e, 0x0160, 0x2510, /* 0xb8 */ + 0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x0172, 0x016a, /* 0xc0 */ + 0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x017d, /* 0xc8 */ + 0x0105, 0x010d, 0x0119, 0x0117, 0x012f, 0x0161, 0x0173, 0x016b, /* 0xd0 */ + 0x017e, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580, /* 0xd8 */ + 0x00d3, 0x00df, 0x014c, 0x0143, 0x00f5, 0x00d5, 0x00b5, 0x0144, /* 0xe0 */ + 0x0136, 0x0137, 0x013b, 0x013c, 0x0146, 0x0112, 0x0145, 0x2019, /* 0xe8 */ + 0x00ad, 0x00b1, 0x201c, 0x00be, 0x00b6, 0x00a7, 0x00f7, 0x201e, /* 0xf0 */ + 0x00b0, 0x2219, 0x00b7, 0x00b9, 0x00b3, 0x00b2, 0x25a0, 0x00a0, /* 0xf8 */ +}; + +/* IBM 866 */ +static const unsigned short int unicode_map_ibm866[] = { + 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417, /* 0x80 */ + 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f, /* 0x88 */ + 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427, /* 0x90 */ + 0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f, /* 0x98 */ + 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437, /* 0xa0 */ + 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f, /* 0xa8 */ + 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556, /* 0xb0 */ + 0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510, /* 0xb8 */ + 0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f, /* 0xc0 */ + 0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567, /* 0xc8 */ + 0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b, /* 0xd0 */ + 0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580, /* 0xd8 */ + 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, /* 0xe0 */ + 0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f, /* 0xe8 */ + 0x0401, 0x0451, 0x0404, 0x0454, 0x0407, 0x0457, 0x040e, 0x045e, /* 0xf0 */ + 0x00b0, 0x2219, 0x00b7, 0x221a, 0x2116, 0x00a4, 0x25a0, 0x00a0, /* 0xf8 */ +}; + +/* Baltic */ +static const unsigned short int unicode_map_baltic[] = { + 0x00a0, 0x201d, 0x00a2, 0x00a3, 0x00a4, 0x00a5, 0x00a6, 0x00a7, /* 0xa0 */ + 0x00d8, 0x00a9, 0x201e, 0x00ab, 0x00ac, 0x00ad, 0x00ae, 0x00c6, /* 0xa8 */ + 0x00b0, 0x00b1, 0x00b2, 0x00b3, 0x00b4, 0x00b5, 0x00b6, 0x00b7, /* 0xb0 */ + 0x00f8, 0x00b9, 0x201c, 0x00bb, 0x00bc, 0x00bd, 0x00be, 0x00e6, /* 0xb8 */ + 0x012e, 0x0116, 0x0100, 0x0106, 0x00c4, 0x00c5, 0x0104, 0x010c, /* 0xc0 */ + 0x0122, 0x00c9, 0x017d, 0x0118, 0x0112, 0x0136, 0x012a, 0x013b, /* 0xc8 */ + 0x0141, 0x0145, 0x0143, 0x00d3, 0x014c, 0x00d5, 0x00d6, 0x00d7, /* 0xd0 */ + 0x0172, 0x0160, 0x015a, 0x016a, 0x00dc, 0x017b, 0x0179, 0x00df, /* 0xd8 */ + 0x012f, 0x0117, 0x0101, 0x0107, 0x00e4, 0x00e5, 0x0105, 0x010d, /* 0xe0 */ + 0x0123, 0x00e9, 0x017e, 0x0119, 0x0113, 0x0137, 0x012b, 0x013c, /* 0xe8 */ + 0x0142, 0x0146, 0x0144, 0x00f3, 0x014d, 0x00f5, 0x00f6, 0x00f7, /* 0xf0 */ + 0x0173, 0x0161, 0x015b, 0x016b, 0x00fc, 0x017c, 0x017a, 0x0138, /* 0xf8 */ +}; + +/* Kamenicky */ +static const unsigned short int unicode_map_keybcs2[] = { + 0x010c, 0x00fc, 0x00e9, 0x010f, 0x00e4, 0x010e, 0x0164, 0x010d, /* 0x80 */ + 0x011b, 0x011a, 0x0139, 0x00cd, 0x013e, 0x013a, 0x00c4, 0x00c1, /* 0x88 */ + 0x00c9, 0x017e, 0x017d, 0x00f4, 0x00f6, 0x00d3, 0x016f, 0x00da, /* 0x90 */ + 0x00fd, 0x00d6, 0x00dc, 0x0160, 0x013d, 0x00dd, 0x0158, 0x0165, /* 0x98 */ + 0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x0148, 0x0147, 0x016e, 0x00d4, /* 0xa0 */ + 0x0161, 0x0159, 0x0155, 0x0154, 0x00bc, 0x00a7, 0x00ab, 0x00bb, /* 0xa8 */ + 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556, /* 0xb0 */ + 0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510, /* 0xb8 */ + 0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f, /* 0xc0 */ + 0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567, /* 0xc8 */ + 0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b, /* 0xd0 */ + 0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580, /* 0xd8 */ + 0x03b1, 0x03b2, 0x0393, 0x03c0, 0x03a3, 0x03c3, 0x03bc, 0x03c4, /* 0xe0 */ + 0x03a6, 0x0398, 0x03a9, 0x03b4, 0x221e, 0x2205, 0x03b5, 0x2229, /* 0xe8 */ + 0x2261, 0x00b1, 0x2265, 0x2264, 0x2320, 0x2321, 0x00f7, 0x2248, /* 0xf0 */ + 0x00b0, 0x00b7, 0x02d9, 0x221a, 0x207f, 0x00b2, 0x25a0, 0x00a0, /* 0xf8 */ +}; + +/* Macintosh CE */ +static const unsigned short int unicode_map_macce[] = { + 0x00c4, 0x0100, 0x0101, 0x00c9, 0x0104, 0x00d6, 0x00dc, 0x00e1, /* 0x80 */ + 0x0105, 0x010c, 0x00e4, 0x010d, 0x0106, 0x0107, 0x00e9, 0x0179, /* 0x88 */ + 0x017a, 0x010e, 0x00ed, 0x010f, 0x0112, 0x0113, 0x0116, 0x00f3, /* 0x90 */ + 0x0117, 0x00f4, 0x00f6, 0x00f5, 0x00fa, 0x011a, 0x011b, 0x00fc, /* 0x98 */ + 0x2020, 0x00b0, 0x0118, 0x00a3, 0x00a7, 0x2022, 0x00b6, 0x00df, /* 0xa0 */ + 0x00ae, 0x00a9, 0x2122, 0x0119, 0x00a8, 0x2260, 0x0123, 0x012e, /* 0xa8 */ + 0x012f, 0x012a, 0x2264, 0x2265, 0x012b, 0x0136, 0x2202, 0x2211, /* 0xb0 */ + 0x0142, 0x013b, 0x013c, 0x013d, 0x013e, 0x0139, 0x013a, 0x0145, /* 0xb8 */ + 0x0146, 0x0143, 0x00ac, 0x221a, 0x0144, 0x0147, 0x2206, 0x00ab, /* 0xc0 */ + 0x00bb, 0x2026, 0x00a0, 0x0148, 0x0150, 0x00d5, 0x0151, 0x014c, /* 0xc8 */ + 0x2013, 0x2014, 0x201c, 0x201d, 0x2018, 0x2019, 0x00f7, 0x25ca, /* 0xd0 */ + 0x014d, 0x0154, 0x0155, 0x0158, 0x2039, 0x203a, 0x0159, 0x0156, /* 0xd8 */ + 0x0157, 0x0160, 0x201a, 0x201e, 0x0161, 0x015a, 0x015b, 0x00c1, /* 0xe0 */ + 0x0164, 0x0165, 0x00cd, 0x017d, 0x017e, 0x016a, 0x00d3, 0x00d4, /* 0xe8 */ + 0x016b, 0x016e, 0x00da, 0x016f, 0x0170, 0x0171, 0x0172, 0x0173, /* 0xf0 */ + 0x00dd, 0x00fd, 0x0137, 0x017b, 0x0141, 0x017c, 0x0122, 0x02c7, /* 0xf8 */ +}; + +/* Macintosh Cyrillic */ +static const unsigned short int unicode_map_maccyr[] = { + 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417, /* 0x80 */ + 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f, /* 0x88 */ + 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427, /* 0x90 */ + 0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f, /* 0x98 */ + 0x2020, 0x00b0, 0x0490, 0x00a3, 0x00a7, 0x2022, 0x00b6, 0x0406, /* 0xa0 */ + 0x00ae, 0x00a9, 0x2122, 0x0402, 0x0452, 0x2260, 0x0403, 0x0453, /* 0xa8 */ + 0x221e, 0x00b1, 0x2264, 0x2265, 0x0456, 0x00b5, 0x0491, 0x0408, /* 0xb0 */ + 0x0404, 0x0454, 0x0407, 0x0457, 0x0409, 0x0459, 0x040a, 0x045a, /* 0xb8 */ + 0x0458, 0x0405, 0x00ac, 0x221a, 0x0192, 0x2248, 0x2206, 0x00ab, /* 0xc0 */ + 0x00bb, 0x2026, 0x00a0, 0x040b, 0x045b, 0x040c, 0x045c, 0x0455, /* 0xc8 */ + 0x2013, 0x2014, 0x201c, 0x201d, 0x2018, 0x2019, 0x00f7, 0x201e, /* 0xd0 */ + 0x040e, 0x045e, 0x040f, 0x045f, 0x2116, 0x0401, 0x0451, 0x044f, /* 0xd8 */ + 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437, /* 0xe0 */ + 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f, /* 0xe8 */ + 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, /* 0xf0 */ + 0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x20ac, /* 0xf8 */ +}; + +/* ECMA Cyrillic */ +static const unsigned short int unicode_map_ecma113[] = { + 0x00a0, 0x0452, 0x0453, 0x0451, 0x0454, 0x0455, 0x0456, 0x0457, /* 0xa0 */ + 0x0458, 0x0459, 0x045a, 0x045b, 0x045c, 0x00ad, 0x045e, 0x045f, /* 0xa8 */ + 0x2116, 0x0402, 0x0403, 0x0401, 0x0404, 0x0405, 0x0406, 0x0407, /* 0xb0 */ + 0x0408, 0x0409, 0x040a, 0x040b, 0x040c, 0x00a4, 0x040e, 0x040f, /* 0xb8 */ + 0x044e, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433, /* 0xc0 */ + 0x0445, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, /* 0xc8 */ + 0x043f, 0x044f, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432, /* 0xd0 */ + 0x044c, 0x044b, 0x0437, 0x0448, 0x044d, 0x0449, 0x0447, 0x044a, /* 0xd8 */ + 0x042e, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413, /* 0xe0 */ + 0x0425, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, /* 0xe8 */ + 0x041f, 0x042f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412, /* 0xf0 */ + 0x042c, 0x042b, 0x0417, 0x0428, 0x042d, 0x0429, 0x0427, 0x042a, /* 0xf8 */ +}; + +/* KOI8-CS2 */ +static const unsigned short int unicode_map_koi8cs2[] = { + 0x00a0, NO_CHR, 0x00b4, NO_CHR, 0x007e, NO_CHR, 0x02d8, 0x02d9, /* 0xa0 */ + 0x00a8, NO_CHR, 0x02da, 0x00b8, NO_CHR, 0x02dd, 0x02db, 0x02c7, /* 0xa8 */ + 0x00a9, 0x00ae, 0x250c, 0x2510, 0x2514, 0x2518, 0x2500, 0x2193, /* 0xb0 */ + 0x03a9, 0x00a7, 0x03b1, 0x03b3, 0x03b5, 0x03bc, 0x03c0, 0x03c9, /* 0xb8 */ + 0x00e0, 0x00e1, 0x01ce, 0x010d, 0x010f, 0x011b, 0x0155, NO_CHR, /* 0xc0 */ + 0x00fc, 0x00ed, 0x016f, 0x013a, 0x013e, 0x00f6, 0x0148, 0x00f3, /* 0xc8 */ + 0x00f4, 0x00e4, 0x0159, 0x0161, 0x0165, 0x00fa, 0x00eb, 0x00e9, /* 0xd0 */ + 0x0171, 0x00fd, 0x017e, NO_CHR, NO_CHR, 0x0151, 0x0117, 0x00df, /* 0xd8 */ + 0x00c0, 0x00c1, 0x01cd, 0x010c, 0x010e, 0x011a, 0x0154, NO_CHR, /* 0xe0 */ + 0x00dc, 0x00cd, 0x016e, 0x0139, 0x013d, 0x00d6, 0x0147, 0x00d3, /* 0xe8 */ + 0x00d4, 0x00c4, 0x0158, 0x0160, 0x0164, 0x00da, 0x00cb, 0x00c9, /* 0xf0 */ + 0x0170, 0x00dd, 0x017d, NO_CHR, NO_CHR, 0x0150, 0x0116, NO_CHR, /* 0xf8 */ +}; + +/* KOI8-R */ +static const unsigned short int unicode_map_koi8r[] = { + 0x2500, 0x2502, 0x250c, 0x2510, 0x2514, 0x2518, 0x251c, 0x2524, /* 0x80 */ + 0x252c, 0x2534, 0x253c, 0x2580, 0x2584, 0x2588, 0x258c, 0x2590, /* 0x88 */ + 0x2591, 0x2592, 0x2593, 0x2320, 0x25a0, 0x2022, 0x221a, 0x2248, /* 0x90 */ + 0x2264, 0x2265, 0x00a0, 0x2321, 0x00b0, 0x00b2, 0x00b7, 0x00f7, /* 0x98 */ + 0x2550, 0x2551, 0x2552, 0x0451, 0x2553, 0x2554, 0x2555, 0x2556, /* 0xa0 */ + 0x2557, 0x2558, 0x2559, 0x255a, 0x255b, 0x255c, 0x255d, 0x255e, /* 0xa8 */ + 0x255f, 0x2560, 0x2561, 0x0401, 0x2562, 0x2563, 0x2564, 0x2565, /* 0xb0 */ + 0x2566, 0x2567, 0x2568, 0x2569, 0x256a, 0x256b, 0x256c, 0x00a9, /* 0xb8 */ + 0x044e, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433, /* 0xc0 */ + 0x0445, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, /* 0xc8 */ + 0x043f, 0x044f, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432, /* 0xd0 */ + 0x044c, 0x044b, 0x0437, 0x0448, 0x044d, 0x0449, 0x0447, 0x044a, /* 0xd8 */ + 0x042e, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413, /* 0xe0 */ + 0x0425, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, /* 0xe8 */ + 0x041f, 0x042f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412, /* 0xf0 */ + 0x042c, 0x042b, 0x0417, 0x0428, 0x042d, 0x0429, 0x0427, 0x042a, /* 0xf8 */ +}; + +/* KOI8-U */ +static const unsigned short int unicode_map_koi8u[] = { + 0x2500, 0x2502, 0x250c, 0x2510, 0x2514, 0x2518, 0x251c, 0x2524, /* 0x80 */ + 0x252c, 0x2534, 0x253c, 0x2580, 0x2584, 0x2588, 0x258c, 0x2590, /* 0x88 */ + 0x2591, 0x2592, 0x2593, 0x2320, 0x25a0, 0x2219, 0x221a, 0x2248, /* 0x90 */ + 0x2264, 0x2265, 0x00a0, 0x2321, 0x00b0, 0x00b2, 0x00b7, 0x00f7, /* 0x98 */ + 0x2550, 0x2551, 0x2552, 0x0451, 0x0454, 0x2554, 0x0456, 0x0457, /* 0xa0 */ + 0x2557, 0x2558, 0x2559, 0x255a, 0x255b, 0x0491, 0x255d, 0x255e, /* 0xa8 */ + 0x255f, 0x2560, 0x2561, 0x0401, 0x0404, 0x2563, 0x0406, 0x0407, /* 0xb0 */ + 0x2566, 0x2567, 0x2568, 0x2569, 0x256a, 0x0490, 0x256c, 0x00a9, /* 0xb8 */ + 0x044e, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433, /* 0xc0 */ + 0x0445, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, /* 0xc8 */ + 0x043f, 0x044f, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432, /* 0xd0 */ + 0x044c, 0x044b, 0x0437, 0x0448, 0x044d, 0x0449, 0x0447, 0x044a, /* 0xd8 */ + 0x042e, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413, /* 0xe0 */ + 0x0425, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, /* 0xe8 */ + 0x041f, 0x042f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412, /* 0xf0 */ + 0x042c, 0x042b, 0x0417, 0x0428, 0x042d, 0x0429, 0x0427, 0x042a, /* 0xf8 */ +}; + +/* KOI8-UNI */ +static const unsigned short int unicode_map_koi8uni[] = { + 0x2500, 0x2502, 0x250c, 0x2510, 0x2514, 0x2518, 0x251c, 0x2524, /* 0x80 */ + 0x252c, 0x2534, 0x253c, 0x2580, 0x2584, 0x2588, 0x258c, 0x2590, /* 0x88 */ + 0x2591, 0x2018, 0x2019, 0x201c, 0x201d, 0x2219, 0x2013, 0x2014, /* 0x90 */ + 0x00a9, 0x2122, 0x00a0, 0x00bb, 0x00ae, 0x00ab, 0x00b7, 0x00a4, /* 0x98 */ + 0x00a0, 0x0452, 0x0453, 0x0451, 0x0454, 0x0455, 0x0456, 0x0457, /* 0xa0 */ + 0x0458, 0x0459, 0x045a, 0x045b, 0x045c, 0x0491, 0x045e, 0x045f, /* 0xa8 */ + 0x2116, 0x0402, 0x0403, 0x0401, 0x0404, 0x0405, 0x0406, 0x0407, /* 0xb0 */ + 0x0408, 0x0409, 0x040a, 0x040b, 0x040c, 0x0490, 0x040e, 0x040f, /* 0xb8 */ + 0x044e, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433, /* 0xc0 */ + 0x0445, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, /* 0xc8 */ + 0x043f, 0x044f, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432, /* 0xd0 */ + 0x044c, 0x044b, 0x0437, 0x0448, 0x044d, 0x0449, 0x0447, 0x044a, /* 0xd8 */ + 0x042e, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413, /* 0xe0 */ + 0x0425, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, /* 0xe8 */ + 0x041f, 0x042f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412, /* 0xf0 */ + 0x042c, 0x042b, 0x0417, 0x0428, 0x042d, 0x0429, 0x0427, 0x042a, /* 0xf8 */ +}; + +/* Cork */ +static const unsigned short int unicode_map_cork[] = { + 0x0060, 0x00b4, 0x005e, 0x007e, 0x00a8, 0x02dd, 0x02da, 0x02c7, /* 0x00 */ + 0x02d8, 0x0009, 0x000a, 0x00b8, 0x02db, 0x000d, 0x2039, 0x203a, /* 0x08 */ + 0x201c, 0x201d, 0x201e, 0x00ab, 0x00bb, 0x2013, 0x2014, 0x2080, /* 0x10 */ + 0x0131, 0x002e, 0xfb00, 0xfb01, 0xfb02, 0xfb00, 0x0069, 0xfb00, /* 0x18 */ + 0x0020, 0x0021, 0x0022, 0x0023, 0x0024, 0x0025, 0x0026, 0x0027, /* 0x20 */ + 0x0028, 0x0029, 0x002a, 0x002b, 0x002c, 0x002d, 0x002e, 0x002f, /* 0x28 */ + 0x0030, 0x0031, 0x0032, 0x0033, 0x0034, 0x0035, 0x0036, 0x0037, /* 0x30 */ + 0x0038, 0x0039, 0x003a, 0x003b, 0x003c, 0x003d, 0x003e, 0x003f, /* 0x38 */ + 0x0040, 0x0041, 0x0042, 0x0043, 0x0044, 0x0045, 0x0046, 0x0047, /* 0x40 */ + 0x0048, 0x0049, 0x004a, 0x004b, 0x004c, 0x004d, 0x004e, 0x004f, /* 0x48 */ + 0x0050, 0x0051, 0x0052, 0x0053, 0x0054, 0x0055, 0x0056, 0x0057, /* 0x50 */ + 0x0058, 0x0059, 0x005a, 0x005b, 0x005c, 0x005d, 0x005e, 0x005f, /* 0x58 */ + 0x0060, 0x0061, 0x0062, 0x0063, 0x0064, 0x0065, 0x0066, 0x0067, /* 0x60 */ + 0x0068, 0x0069, 0x006a, 0x006b, 0x006c, 0x006d, 0x006e, 0x006f, /* 0x68 */ + 0x0070, 0x0071, 0x0072, 0x0073, 0x0074, 0x0075, 0x0076, 0x0077, /* 0x70 */ + 0x0078, 0x0079, 0x007a, 0x007b, 0x007c, 0x007d, 0x007e, 0x2010, /* 0x78 */ + 0x0102, 0x0104, 0x0106, 0x010c, 0x010e, 0x011a, 0x0118, 0x011e, /* 0x80 */ + 0x0139, 0x013d, 0x0141, 0x0143, 0x0147, 0x014a, 0x0150, 0x0154, /* 0x88 */ + 0x0158, 0x015a, 0x0160, 0x015e, 0x0164, 0x0162, 0x0170, 0x016e, /* 0x90 */ + 0x0178, 0x0179, 0x017d, 0x017b, 0x0132, 0x0130, 0x0111, 0x00a7, /* 0x98 */ + 0x0103, 0x0105, 0x0107, 0x010d, 0x010f, 0x011b, 0x0119, 0x011f, /* 0xa0 */ + 0x013a, 0x013e, 0x0142, 0x0144, 0x0148, 0x014b, 0x0151, 0x0155, /* 0xa8 */ + 0x0159, 0x015b, 0x0161, 0x015f, 0x0165, 0x0163, 0x0171, 0x016f, /* 0xb0 */ + 0x00ff, 0x017a, 0x017e, 0x017c, 0x0133, 0x00a1, 0x00bf, 0x00a3, /* 0xb8 */ + 0x00c0, 0x00c1, 0x00c2, 0x00c3, 0x00c4, 0x00c5, 0x00c6, 0x00c7, /* 0xc0 */ + 0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce, 0x00cf, /* 0xc8 */ + 0x00d0, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x0152, /* 0xd0 */ + 0x00d8, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x00dd, 0x00de, 0x0053, /* 0xd8 */ + 0x00e0, 0x00e1, 0x00e2, 0x00e3, 0x00e4, 0x00e5, 0x00e6, 0x00e7, /* 0xe0 */ + 0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef, /* 0xe8 */ + 0x00f0, 0x00f1, 0x00f2, 0x00f3, 0x00f4, 0x00f5, 0x00f6, 0x0153, /* 0xf0 */ + 0x00f8, 0x00f9, 0x00fa, 0x00fb, 0x00fc, 0x00fd, 0x00fe, 0x00df, /* 0xf8 */ +}; + +#define MAKE_CS_LINE(name) \ + { #name, \ + 0x0100 - sizeof(unicode_map_##name)/sizeof(unsigned short int), \ + unicode_map_##name } + +/* + * Charset maps with names assigned. + * Since we don't know the id's at compile time, find_charset_map() finds + * them when first needed. + */ +static const EncaUnicodeMap UNICODE_MAP[] = { + MAKE_CS_LINE(iso88592), + MAKE_CS_LINE(iso88594), + MAKE_CS_LINE(iso88595), + MAKE_CS_LINE(iso885913), + MAKE_CS_LINE(iso885916), + MAKE_CS_LINE(cp1125), + MAKE_CS_LINE(cp1250), + MAKE_CS_LINE(cp1251), + MAKE_CS_LINE(cp1257), + MAKE_CS_LINE(ibm852), + MAKE_CS_LINE(ibm855), + MAKE_CS_LINE(ibm775), + MAKE_CS_LINE(ibm866), + MAKE_CS_LINE(baltic), + MAKE_CS_LINE(keybcs2), + MAKE_CS_LINE(macce), + MAKE_CS_LINE(maccyr), + MAKE_CS_LINE(ecma113), + MAKE_CS_LINE(koi8cs2), + MAKE_CS_LINE(koi8r), + MAKE_CS_LINE(koi8u), + MAKE_CS_LINE(koi8uni), + MAKE_CS_LINE(cork), +}; + +/** + * enca_charset_has_ucs2_map: + * @charset: An 8bit charset. + * + * Find whether we have charset -> UCS-2 map. + * + * Returns: Nonzero when the map is available, zero otherwise. + **/ +int +enca_charset_has_ucs2_map(int charset) +{ + return find_charset_map(charset) != NULL; +} + +/** + * enca_charset_ucs2_map: + * @charset: An 8bit charset. + * @buffer: Buffer to store the map to. + * + * Creates map from an 8bit charset to UCS-2. + * + * The buffer must be at least 256*sizeof(unsigned int) long to hold the map. + * + * Returns: Nonzero when the map was successfully created, zero otherwise. + **/ +int +enca_charset_ucs2_map(int charset, + unsigned int *buffer) +{ + unsigned int i; + const EncaUnicodeMap *umap = find_charset_map(charset); + + if (umap == NULL) + return 0; + + for (i = 0; i < umap->tstart; i++) + buffer[i] = i; + + for (i = umap->tstart; i < 0x0100; i++) + buffer[i] = umap->map[i - umap->tstart]; + + return 1; +} + +/** + * find_charset_map: + * @charset: An 8bit charset. + * + * Find charset -> UCS-2 map. + * + * Returns: Pointer to the map, #NULL when not found. + **/ +static const EncaUnicodeMap* +find_charset_map(int charset) +{ + static int charset_id[ELEMENTS(UNICODE_MAP)]; + static int charset_id_initialized = 0; + size_t i; + + if (charset < 0) + return NULL; + + if (!charset_id_initialized) { + for (i = 0; i < ELEMENTS(UNICODE_MAP); i++) { + charset_id[i] = enca_name_to_charset(UNICODE_MAP[i].name); + assert(charset_id[i] != ENCA_CS_UNKNOWN); + } + charset_id_initialized = 1; + } + + for (i = 0; i < ELEMENTS(UNICODE_MAP); i++) { + if (charset_id[i] == charset) + return UNICODE_MAP + i; + } + + return NULL; +} + +/** + * enca_charsets_subset_identical: + * @charset1: A charset. + * @charset2: Another charset. + * @counts: An array of size 0x100 containing character counts. + * + * Checks whether all characters with nonzero count have the same meaning + * in both charsets. + * + * In other words, it checks whether conversion of sample containing only + * these characters from @charset1 to @charset2 would be identity. + * + * Returns: Nonzero if charsets are identical on the subset, zero otherwise. + **/ +int +enca_charsets_subset_identical(int charset1, + int charset2, + const size_t *counts) +{ + const EncaUnicodeMap *umap1 = find_charset_map(charset1); + const EncaUnicodeMap *umap2 = find_charset_map(charset2); + size_t ts1, ts2; + const unsigned short int *m1, *m2; + size_t i; + + assert(umap1 != NULL); + assert(umap2 != NULL); + + m1 = umap1->map; + m2 = umap2->map; + ts1 = umap1->tstart; + ts2 = umap2->tstart; + + for (i = 0; i < 0x100; i++) { + unsigned short int u1 = i < ts1 ? i : m1[i - ts1]; + unsigned short int u2 = i < ts2 ? i : m2[i - ts2]; + + if (counts[i] > 0 + && u1 != u2 + && u1 != ENCA_NOT_A_CHAR + && u2 != ENCA_NOT_A_CHAR) + return 0; + } + + return 1; +} + +/***** Documentation *********************************************************/ + +/** + * ENCA_NOT_A_CHAR: + * + * Not-a-character in unicode tables. + **/ + +/* vim: ts=2 sw=2 et + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/unicodemap.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/unicodemap.lo new file mode 100644 index 0000000..96b22b2 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/unicodemap.lo @@ -0,0 +1,12 @@ +# unicodemap.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='unicodemap.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/unicodemap.o b/wlx/wayland_qt_base/build/enca-1.19/lib/unicodemap.o new file mode 100644 index 0000000..4d5626e Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/unicodemap.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/utf8_double.c b/wlx/wayland_qt_base/build/enca-1.19/lib/utf8_double.c new file mode 100644 index 0000000..269c4d0 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/utf8_double.c @@ -0,0 +1,413 @@ +/* + checks for doubly-encoded utf-8 + + Copyright (C) 2000-2002 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include +#include + +#include "enca.h" +#include "internal.h" + +/* Local prototypes. */ +static void compute_double_utf8_weights (EncaAnalyserState *analyser); +static void create_ucs2_weight_table (EncaUTFCheckData *amap, + size_t size, + int *wbuf); +static void mark_scratch_buffer (EncaAnalyserState *analyser); + +/** + * enca_double_utf8_init: + * @analyser: Analyzer state to be initialized. + * + * Initializes double-UTF-8 check. + * + * In fact it initializes the fields to #NULL's, they are actually initialized + * only when needed. + **/ +void +enca_double_utf8_init(EncaAnalyserState *analyser) +{ + analyser->utfch = NULL; + analyser->utfbuf = NULL; +} + +/** + * enca_double_utf8_destroy: + * @analyser: Analyzer state whose double-UTF-8 check part should be destroyed. + * + * Destroys the double-UTF-8 check part of analyser state @analyser. + **/ +void +enca_double_utf8_destroy(EncaAnalyserState *analyser) +{ + size_t i; + + if (analyser->utfch == NULL) + return; + + enca_free(analyser->utfbuf); + + for (i = 0; i < analyser->ncharsets; i++) { + enca_free(analyser->utfch[i].ucs2); + enca_free(analyser->utfch[i].weights); + } + enca_free(analyser->utfch); +} + +/** + * enca_double_utf8_check: + * @analyser: Analyzer state determinig the language for double-UTF-8 check. + * @buffer: The buffer to be checked [@size]. + * @size: The size of @buffer. + * + * Checks buffer for double-UTF-8 encoding. + * + * Double-UTF-8 encoding is the result of [errorneous] conversion of UTF-8 text + * to UTF-8 again, as if it was in some 8bit charset. This is quite hard to + * recover from. + * + * The analayser mostly only determines what language will be assumed, + * the rest of this test is independent on the main guessing routines. + * When @buffer doesn't containing UTF-8 text, the result is undefined + * (namely, false positives are possible). + * + * Calling this function when language is `none' has currently no effect. + * + * Returns: Nonzero, when @buffer probably contains doubly-UTF-8 encoded text. + * More precisely, it returns the number of charsets which are + * possible candidates for source charset. You can then use + * enca_double_utf8_get_candidates() to retrieve the charsets. + **/ +int +enca_double_utf8_check(EncaAnalyser analyser, + const unsigned char *buffer, + size_t size) +{ + long int ucs4char = 0; + int remains_10xxxxxx = 0; + size_t i; + + if (analyser->ncharsets == 0 || analyser->lang->weights == 0) + return 0; + + /* Compute weights when we are called the first time. */ + if (analyser->utfch == NULL) + compute_double_utf8_weights(analyser); + + mark_scratch_buffer(analyser); + + /* Parse. */ + for (i = 0; i < size; i++) { + unsigned char b = buffer[i]; + + if (!remains_10xxxxxx) { + if ((b & 0x80) == 0) /* 7bit characters */ + continue; + if ((b & 0xe0) == 0xc0) { /* 110xxxxx 10xxxxxx sequence */ + ucs4char = b & 0x1f; + remains_10xxxxxx = 1; + continue; + } + if ((b & 0xf0) == 0xe0) { /* 1110xxxx 2 x 10xxxxxx sequence */ + ucs4char = b & 0x0f; + remains_10xxxxxx = 2; + continue; + } + /* Following are valid 32-bit UCS characters, but not 16-bit Unicode, + nevertheless we accept them. */ + if ((b & 0xf8) == 0xf0) { /* 1110xxxx 3 x 10xxxxxx sequence */ + ucs4char = b & 0x07; + remains_10xxxxxx = 3; + continue; + } + if ((b & 0xfc) == 0xf8) { /* 1110xxxx 4 x 10xxxxxx sequence */ + ucs4char = b & 0x03; + remains_10xxxxxx = 4; + continue; + } + if ((b & 0xfe) == 0xfc) { /* 1110xxxx 5 x 10xxxxxx sequence */ + ucs4char = b & 0x01; + remains_10xxxxxx = 5; + continue; + } + /* We can get here only when input is invalid: (b & 0xc0) == 0x80. */ + remains_10xxxxxx = 0; + } + else { + /* Broken 10xxxxxx sequence? */ + if ((b & 0xc0) != 0x80) { + remains_10xxxxxx = 0; + } + else { + /* Good 10xxxxxx continuation. */ + ucs4char <<= 6; + ucs4char |= b & 0x3f; + remains_10xxxxxx--; + + /* Do we have a whole character? + * (We must not touch positions in utfbuf containing zeroes.) */ + if (remains_10xxxxxx == 0 + && ucs4char < 0x10000 + && analyser->utfbuf[ucs4char] != 0) { + if (analyser->utfbuf[ucs4char] < 0) + analyser->utfbuf[ucs4char] = 1; + else + analyser->utfbuf[ucs4char]++; + } + } + } + } + + /* Compute the ratings. */ + for (i = 0; i < analyser->ncharsets; i++) { + EncaUTFCheckData *amap = analyser->utfch + i; + size_t j; + + amap->rating = 0.0; + amap->result = 0; + for (j = 0; j < amap->size; j++) + amap->rating += analyser->utfbuf[amap->ucs2[j]] * amap->weights[j]; + } + + /* Now check whether we've found some negative ratings. */ + { + size_t min = 0; + size_t max = 0; + + for (i = 1; i < analyser->ncharsets; i++) { + if (analyser->utfch[i].rating < analyser->utfch[min].rating) + min = i; + if (analyser->utfch[i].rating > analyser->utfch[max].rating) + max = i; + } + + if (analyser->utfch[min].rating < 0.0 + && -analyser->utfch[min].rating > 0.5*analyser->utfch[max].rating) { + size_t total = 0; + double q = analyser->utfch[min].rating + * (1.0 - 45.0*exp(-4.5*analyser->options.threshold)); + + for (i = 0; i < analyser->ncharsets; i++) { + if (analyser->utfch[i].rating < q) { + analyser->utfch[i].result = 1; + total++; + } + } + return total; + } + } + + return 0; +} + +/** + * enca_double_utf8_get_candidates: + * @analyser: Analyzer state for which double-UTF-8 candidates are to be + * returned. + * + * Returns array of double-UTF-8 source charset candidates from the last check. + * + * The returned array should be freed by caller then no longer needed. Its + * is the return value of the preceding enca_double_utf8_check() call. + * + * When called before any double-UTF-8 test has been performed yet or after + * and unsuccessfull double-UTF-8 test, it returns NULL, but the result after + * an unsuccessfull check should be considered undefined. + * + * Returns: An array containing charset id's of possible source charsets from + * which the sample was doubly-UTF-8 encoded. The array may contain + * only one value, but usually enca is not able to decide between + * e.g. ISO-8859-2 and Win1250, thus more candidates are returned. + **/ +int* +enca_double_utf8_get_candidates(EncaAnalyser analyser) +{ + size_t j = 0; + size_t i; + int *candidates; + + assert(analyser); + if (analyser->utfch == NULL) + return NULL; + + for (i = 0; i < analyser->ncharsets; i++) { + if (analyser->utfch[i].result) + j++; + } + + if (j == 0) + return NULL; + + candidates = NEW(int, j); + j = 0; + for (i = 0; i < analyser->ncharsets; i++) { + if (analyser->utfch[i].result) { + candidates[j] = analyser->charsets[i]; + j++; + } + } + + return candidates; +} + +/** + * compute_double_utf8_weights: + * @analyser: Analyzer state whose double-UTF-8 check weigths should be + * computed. + * + * Computes UCS-2 character weights used in double-UTF-8 check. Must be + * called at most once for a given analyser. It also allocates the scratch + * buffer analyser->utfbuf and leaves it filled with zeroes. + **/ +static void +compute_double_utf8_weights(EncaAnalyserState *analyser) +{ + int *buf; + unsigned int ucs2map[0x100]; + size_t i, j; + + assert(analyser != NULL); + assert(analyser->lang != NULL); + assert(analyser->utfch == NULL); + assert(analyser->utfbuf == NULL); + if (analyser->ncharsets == 0) + return; + + analyser->utfch = NEW(EncaUTFCheckData, analyser->ncharsets); + analyser->utfbuf = NEW(int, 0x10000); + buf = analyser->utfbuf; + + for (i = 0; i < 0x10000; i++) + buf[i] = 0; + + /* For all charsets compute UTF-8 prefix byte occurence tables and select + * those characters having the highest difference between occurences when + * counted as UTF-8 prefix and when counted as a regular character. */ + for (j = 0; j < analyser->ncharsets; j++) { + const unsigned short int *const w = analyser->lang->weights[j]; + size_t table_size = 0; + + assert(enca_charset_has_ucs2_map(analyser->charsets[j])); + enca_charset_ucs2_map(analyser->charsets[j], ucs2map); + + /* Go through all characters, some maps may map even 7bits to something + * else. Compute required table size meanwhile. */ + for (i = 0; i < 0x100; i++) { + unsigned int ucs2c = ucs2map[i]; + assert(ucs2c < 0x10000); + + if (w[i] == 0) + continue; + + /* Count the character weight as positive. */ + if (ucs2c < 0x80 || ucs2c == ENCA_NOT_A_CHAR) + continue; + + if (buf[ucs2c] == 0) + table_size++; + buf[ucs2c] += w[i]; + + /* Transform the character and count UTF-8 transformed first byte weight + * as negative. */ + if (ucs2c < 0x800) + ucs2c = ucs2map[0xc0 | (ucs2c >> 6)]; + else + ucs2c = ucs2map[0xe0 | (ucs2c >> 12)]; + + if (ucs2c < 0x80 || ucs2c == ENCA_NOT_A_CHAR) + continue; + + if (buf[ucs2c] == 0) + table_size++; + buf[ucs2c] -= w[i]; + if (buf[ucs2c] == 0) + buf[ucs2c] = 1; + } + + /* Build the table of significant UCS-2 characters, i.e. characters + * having nonzero weight. */ + create_ucs2_weight_table(analyser->utfch + j, table_size, buf); + } +} + +/** + * create_ucs2_weight_table: + * @amap: A pointer to Double-UTF8-check data to be filled. + * @size: The number of UCS-2 characters with nonzero weight in @wbuf. + * @wbuf: UCS-2 character weights [@size]. + * + * Creates `compressed' UCS-2 weight table. + **/ +static void +create_ucs2_weight_table(EncaUTFCheckData *amap, + size_t size, + int *wbuf) +{ + unsigned int ucs2c; + size_t i; + + amap->size = size; + amap->ucs2 = NEW(int, size); + amap->weights = NEW(int, size); + + i = 0; + for (ucs2c = 0; ucs2c < 0x10000; ucs2c++) { + if (wbuf[ucs2c] != 0) { + assert(i < size); + + amap->ucs2[i] = ucs2c; + amap->weights[i] = wbuf[ucs2c]; + wbuf[ucs2c] = 0; /* Fill the buffer with zeroes. */ + i++; + } + } + + assert(i == size); +} + +/** + * mark_scratch_buffer: + * @analyser: Analyzer whose significant ucs2 characters are to be marked in + * @analyser->utfbuf. + * + * Marks significant characters in @analyser->utfbuf with -1. + * + * The @analyser->utfbuf buffer is magic. Once we found the significant + * characters in compute_double_utf8_weights(), we always keep zeroes at + * positions of nonsiginifant characters. This way we never have to scan + * through the whole buffer, not even to fill it wit zeroes -- we put zeroes + * only where we know we changed it. + * + * -1 is used to mark significant characters before counting, because it's not + * zero. + **/ +static void +mark_scratch_buffer(EncaAnalyserState *analyser) +{ + size_t i, j; + + for (j = 0; j < analyser->ncharsets; j++) { + EncaUTFCheckData *amap = analyser->utfch + j; + + for (i = 0; i < amap->size; i++) + analyser->utfbuf[amap->ucs2[i]] = -1; + } +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/utf8_double.lo b/wlx/wayland_qt_base/build/enca-1.19/lib/utf8_double.lo new file mode 100644 index 0000000..f9df40c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/lib/utf8_double.lo @@ -0,0 +1,12 @@ +# utf8_double.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-1 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object=none + +# Name of the non-PIC object +non_pic_object='utf8_double.o' + diff --git a/wlx/wayland_qt_base/build/enca-1.19/lib/utf8_double.o b/wlx/wayland_qt_base/build/enca-1.19/lib/utf8_double.o new file mode 100644 index 0000000..bbe8b88 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/lib/utf8_double.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/libtool b/wlx/wayland_qt_base/build/enca-1.19/libtool new file mode 100755 index 0000000..e696934 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/libtool @@ -0,0 +1,11653 @@ +#! /bin/sh +# Generated automatically by config.status (enca) 1.19 +# NOTE: Changes made to this file will be lost: look at ltmain.sh. + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + +# Copyright (C) 2014 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +# The names of the tagged configurations supported by this script. +available_tags='' + +# Configured defaults for sys_lib_dlsearch_path munging. +: ${LT_SYS_LIBRARY_PATH=""} + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=2.4.6 +macro_revision=2.4.6 + +# Whether or not to build shared libraries. +build_libtool_libs=no + +# Whether or not to build static libraries. +build_old_libs=yes + +# What type of objects to build. +pic_mode=yes + +# Whether or not to optimize for fast installation. +fast_install=needless + +# Shared archive member basename,for filename based shared library versioning on AIX. +shared_archive_member_spec= + +# Shell to use when invoking shell scripts. +SHELL="/bin/sh" + +# An echo program that protects backslashes. +ECHO="printf %s\\n" + +# The PATH separator for the build system. +PATH_SEPARATOR=":" + +# The host system. +host_alias= +host=x86_64-pc-linux-gnu +host_os=linux-gnu + +# The build system. +build_alias= +build=x86_64-pc-linux-gnu +build_os=linux-gnu + +# A sed program that does not truncate output. +SED="/usr/bin/sed" + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP="/usr/bin/grep" + +# An ERE matcher. +EGREP="/usr/bin/grep -E" + +# A literal string matcher. +FGREP="/usr/bin/grep -F" + +# A BSD- or MS-compatible name lister. +NM="/usr/bin/nm -B" + +# Whether we need soft or hard links. +LN_S="ln -s" + +# What is the maximum length of a command? +max_cmd_len=1572864 + +# Object file suffix (normally "o"). +objext=o + +# Executable file suffix (normally ""). +exeext= + +# whether the shell understands "unset". +lt_unset=unset + +# turn spaces into newlines. +SP2NL="tr \\040 \\012" + +# turn newlines into spaces. +NL2SP="tr \\015\\012 \\040\\040" + +# convert $build file names to $host format. +to_host_file_cmd=func_convert_file_noop + +# convert $build files to toolchain format. +to_tool_file_cmd=func_convert_file_noop + +# An object symbol dumper. +OBJDUMP="objdump" + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method="pass_all" + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd="\$MAGIC_CMD" + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob="" + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob="no" + +# DLL creation program. +DLLTOOL="false" + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd="printf %s\\n" + +# The archiver. +AR="ar" + +# Flags to create an archive. +AR_FLAGS="cru" + +# How to feed a file listing to the archiver. +archiver_list_spec="@" + +# A symbol stripping program. +STRIP="strip" + +# Commands used to install an old-style archive. +RANLIB="ranlib" +old_postinstall_cmds="chmod 644 \$oldlib~\$RANLIB \$tool_oldlib" +old_postuninstall_cmds="" + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=no + +# A C compiler. +LTCC="/usr/bin/cc" + +# LTCC compiler flags. +LTCFLAGS="-Wall -Wextra -W -pedantic -g -O2" + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p' | sed '/ __gnu_lto/d'" + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl="sed -n -e 's/^T .* \\(.*\\)\$/extern int \\1();/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(.*\\)\$/extern char \\1;/p'" + +# Transform the output of nm into a list of symbols to manually relocate. +global_symbol_to_import="" + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address="sed -n -e 's/^: \\(.*\\) .*\$/ {\"\\1\", (void *) 0},/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(.*\\)\$/ {\"\\1\", (void *) \\&\\1},/p'" + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \\(.*\\) .*\$/ {\"\\1\", (void *) 0},/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(lib.*\\)\$/ {\"\\1\", (void *) \\&\\1},/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \\(.*\\)\$/ {\"lib\\1\", (void *) \\&\\1},/p'" + +# The name lister interface. +nm_interface="BSD nm" + +# Specify filename containing input files for $NM. +nm_file_list_spec="@" + +# The root where to search for dependent libraries,and where our libraries should be installed. +lt_sysroot= + +# Command to truncate a binary pipe. +lt_truncate_bin="/usr/bin/dd bs=4096 count=1" + +# The name of the directory that contains temporary libtool files. +objdir=.libs + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=file + +# Must we lock files when doing compilation? +need_locks="no" + +# Manifest tool. +MANIFEST_TOOL=":" + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL="" + +# Tool to change global to local symbols on Mac OS X. +NMEDIT="" + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO="" + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL="" + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64="" + +# Old archive suffix (normally "a"). +libext=a + +# Shared library suffix (normally ".so"). +shrext_cmds=".so" + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds="" + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + +# Do we need the "lib" prefix for modules? +need_lib_prefix=no + +# Do we need a version for libraries? +need_version=no + +# Library versioning type. +version_type=linux + +# Shared library runtime path variable. +runpath_var=LD_RUN_PATH + +# Shared library path variable. +shlibpath_var=LD_LIBRARY_PATH + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=yes + +# Format of library name prefix. +libname_spec="lib\$name" + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec="\$libname\$release\$shared_ext\$versuffix \$libname\$release\$shared_ext\$major \$libname\$shared_ext" + +# The coded name of the library, if different from the real name. +soname_spec="\$libname\$release\$shared_ext\$major" + +# Permission mode override for installation of shared libraries. +install_override_mode="" + +# Command to use after installation of a shared archive. +postinstall_cmds="" + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds="" + +# Commands used to finish a libtool library installation in a directory. +finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir" + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval="" + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=yes + +# Compile-time system search path for libraries. +sys_lib_search_path_spec="/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1 /usr/lib /lib " + +# Detected run-time system search path for libraries. +sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/lib32 /usr/lib/libfakeroot " + +# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. +configure_time_lt_sys_library_path="" + +# Whether dlopen is supported. +dlopen_support=unknown + +# Whether dlopen of programs is supported. +dlopen_self=unknown + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=unknown + +# Commands to strip libraries. +old_striplib="strip --strip-debug" +striplib="strip --strip-unneeded" + + +# The linker used to build libraries. +LD="/usr/bin/ld -m elf_x86_64" + +# How to create reloadable object files. +reload_flag=" -r" +reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" + +# Commands used to build an old-style archive. +old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib" + +# A language specific compiler. +CC="/usr/bin/cc" + +# Is the compiler the GNU compiler? +with_gcc=yes + +# Compiler flag to turn off builtin functions. +no_builtin_flag=" -fno-builtin" + +# Additional compiler flags for building library objects. +pic_flag=" -fPIC -DPIC" + +# How to pass a linker flag through the compiler. +wl="-Wl," + +# Compiler flag to prevent dynamic linking. +link_static_flag="-static" + +# Does compiler simultaneously support -c and -o options? +compiler_c_o="yes" + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=yes + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=no + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec="\$wl--export-dynamic" + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec="\$wl--whole-archive\$convenience \$wl--no-whole-archive" + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object="no" + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds="" + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds="" + +# Commands used to build a shared archive. +archive_cmds="\$CC -shared \$pic_flag \$libobjs \$deplibs \$compiler_flags \$wl-soname \$wl\$soname -o \$lib" +archive_expsym_cmds="echo \\\"{ global:\\\" > \$output_objdir/\$libname.ver~ + cat \$export_symbols | sed -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$output_objdir/\$libname.ver~ + echo \\\"local: *; };\\\" >> \$output_objdir/\$libname.ver~ + \$CC -shared \$pic_flag \$libobjs \$deplibs \$compiler_flags \$wl-soname \$wl\$soname \$wl-version-script \$wl\$output_objdir/\$libname.ver -o \$lib" + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds="" +module_expsym_cmds="" + +# Whether we are building with GNU ld or not. +with_gnu_ld="yes" + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag="" + +# Flag that enforces no undefined symbols. +no_undefined_flag="" + +# Flag to hardcode $libdir into a binary during linking. +# This must work even if $libdir does not exist +hardcode_libdir_flag_spec="\$wl-rpath \$wl\$libdir" + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator="" + +# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=no + +# Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting $shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=no + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=no + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=unsupported + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=no + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=no + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=no + +# Set to "yes" if exported symbols are required. +always_export_symbols=no + +# The commands to list exported symbols. +export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | \$SED 's/.* //' | sort | uniq > \$export_symbols" + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms="_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*" + +# Symbols that must always be exported. +include_expsyms="" + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds="" + +# Commands necessary for finishing linking programs. +postlink_cmds="" + +# Specify filename containing input files. +file_list_spec="" + +# How to hardcode a shared library path into an executable. +hardcode_action=immediate + +# ### END LIBTOOL CONFIG + + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + + +# ### END FUNCTIONS SHARED WITH CONFIGURE + +#! /bin/sh +## DO NOT EDIT - This file generated from ./build-aux/ltmain.in +## by inline-source v2014-01-03.01 + +# libtool (GNU libtool) 2.4.6 +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit , 1996 + +# Copyright (C) 1996-2015 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +PROGRAM=libtool +PACKAGE=libtool +VERSION="2.4.6 Debian-2.4.6-1" +package_revision=2.4.6 + + +## ------ ## +## Usage. ## +## ------ ## + +# Run './libtool --help' for help with using this script from the +# command line. + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# After configure completes, it has a better idea of some of the +# shell tools we need than the defaults used by the functions shared +# with bootstrap, so set those here where they can still be over- +# ridden by the user, but otherwise take precedence. + +: ${AUTOCONF="autoconf"} +: ${AUTOMAKE="automake"} + + +## -------------------------- ## +## Source external libraries. ## +## -------------------------- ## + +# Much of our low-level functionality needs to be sourced from external +# libraries, which are installed to $pkgauxdir. + +# Set a version string for this script. +scriptversion=2015-01-20.17; # UTC + +# General shell script boiler plate, and helper functions. +# Written by Gary V. Vaughan, 2004 + +# Copyright (C) 2004-2015 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. + +# As a special exception to the GNU General Public License, if you distribute +# this file as part of a program or library that is built using GNU Libtool, +# you may include this file under the same distribution terms that you use +# for the rest of that program. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# Evaluate this file near the top of your script to gain access to +# the functions and variables defined here: +# +# . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh +# +# If you need to override any of the default environment variable +# settings, do that before evaluating this file. + + +## -------------------- ## +## Shell normalisation. ## +## -------------------- ## + +# Some shells need a little help to be as Bourne compatible as possible. +# Before doing anything else, make sure all that help has been provided! + +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac +fi + +# NLS nuisances: We save the old values in case they are required later. +_G_user_locale= +_G_safe_locale= +for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +do + eval "if test set = \"\${$_G_var+set}\"; then + save_$_G_var=\$$_G_var + $_G_var=C + export $_G_var + _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" + _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" + fi" +done + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +# Make sure IFS has a sensible default +sp=' ' +nl=' +' +IFS="$sp $nl" + +# There are apparently some retarded systems that use ';' as a PATH separator! +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + + +## ------------------------- ## +## Locate command utilities. ## +## ------------------------- ## + + +# func_executable_p FILE +# ---------------------- +# Check that FILE is an executable regular file. +func_executable_p () +{ + test -f "$1" && test -x "$1" +} + + +# func_path_progs PROGS_LIST CHECK_FUNC [PATH] +# -------------------------------------------- +# Search for either a program that responds to --version with output +# containing "GNU", or else returned by CHECK_FUNC otherwise, by +# trying all the directories in PATH with each of the elements of +# PROGS_LIST. +# +# CHECK_FUNC should accept the path to a candidate program, and +# set $func_check_prog_result if it truncates its output less than +# $_G_path_prog_max characters. +func_path_progs () +{ + _G_progs_list=$1 + _G_check_func=$2 + _G_PATH=${3-"$PATH"} + + _G_path_prog_max=0 + _G_path_prog_found=false + _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} + for _G_dir in $_G_PATH; do + IFS=$_G_save_IFS + test -z "$_G_dir" && _G_dir=. + for _G_prog_name in $_G_progs_list; do + for _exeext in '' .EXE; do + _G_path_prog=$_G_dir/$_G_prog_name$_exeext + func_executable_p "$_G_path_prog" || continue + case `"$_G_path_prog" --version 2>&1` in + *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; + *) $_G_check_func $_G_path_prog + func_path_progs_result=$func_check_prog_result + ;; + esac + $_G_path_prog_found && break 3 + done + done + done + IFS=$_G_save_IFS + test -z "$func_path_progs_result" && { + echo "no acceptable sed could be found in \$PATH" >&2 + exit 1 + } +} + + +# We want to be able to use the functions in this file before configure +# has figured out where the best binaries are kept, which means we have +# to search for them ourselves - except when the results are already set +# where we skip the searches. + +# Unless the user overrides by setting SED, search the path for either GNU +# sed, or the sed that truncates its output the least. +test -z "$SED" && { + _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for _G_i in 1 2 3 4 5 6 7; do + _G_sed_script=$_G_sed_script$nl$_G_sed_script + done + echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed + _G_sed_script= + + func_check_prog_sed () + { + _G_path_prog=$1 + + _G_count=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo '' >> conftest.nl + "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin + rm -f conftest.sed + SED=$func_path_progs_result +} + + +# Unless the user overrides by setting GREP, search the path for either GNU +# grep, or the grep that truncates its output the least. +test -z "$GREP" && { + func_check_prog_grep () + { + _G_path_prog=$1 + + _G_count=0 + _G_path_prog_max=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo 'GREP' >> conftest.nl + "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin + GREP=$func_path_progs_result +} + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# All uppercase variable names are used for environment variables. These +# variables can be overridden by the user before calling a script that +# uses them if a suitable command of that name is not already available +# in the command search PATH. + +: ${CP="cp -f"} +: ${ECHO="printf %s\n"} +: ${EGREP="$GREP -E"} +: ${FGREP="$GREP -F"} +: ${LN_S="ln -s"} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} + + +## -------------------- ## +## Useful sed snippets. ## +## -------------------- ## + +sed_dirname='s|/[^/]*$||' +sed_basename='s|^.*/||' + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Same as above, but do not quote variable references. +sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' + +# Sed substitution that converts a w32 file name or path +# that contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + +# Re-'\' parameter expansions in output of sed_double_quote_subst that +# were '\'-ed in input to the same. If an odd number of '\' preceded a +# '$' in input to sed_double_quote_subst, that '$' was protected from +# expansion. Since each input '\' is now two '\'s, look for any number +# of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. +_G_bs='\\' +_G_bs2='\\\\' +_G_bs4='\\\\\\\\' +_G_dollar='\$' +sed_double_backslash="\ + s/$_G_bs4/&\\ +/g + s/^$_G_bs2$_G_dollar/$_G_bs&/ + s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g + s/\n//g" + + +## ----------------- ## +## Global variables. ## +## ----------------- ## + +# Except for the global variables explicitly listed below, the following +# functions in the '^func_' namespace, and the '^require_' namespace +# variables initialised in the 'Resource management' section, sourcing +# this file will not pollute your global namespace with anything +# else. There's no portable way to scope variables in Bourne shell +# though, so actually running these functions will sometimes place +# results into a variable named after the function, and often use +# temporary variables in the '^_G_' namespace. If you are careful to +# avoid using those namespaces casually in your sourcing script, things +# should continue to work as you expect. And, of course, you can freely +# overwrite any of the functions or variables defined here before +# calling anything to customize them. + +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +# Allow overriding, eg assuming that you follow the convention of +# putting '$debug_cmd' at the start of all your functions, you can get +# bash to show function call trace with: +# +# debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name +debug_cmd=${debug_cmd-":"} +exit_cmd=: + +# By convention, finish your script with: +# +# exit $exit_status +# +# so that you can set exit_status to non-zero if you want to indicate +# something went wrong during execution without actually bailing out at +# the point of failure. +exit_status=$EXIT_SUCCESS + +# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh +# is ksh but when the shell is invoked as "sh" and the current value of +# the _XPG environment variable is not equal to 1 (one), the special +# positional parameter $0, within a function call, is the name of the +# function. +progpath=$0 + +# The name of this program. +progname=`$ECHO "$progpath" |$SED "$sed_basename"` + +# Make sure we have an absolute progpath for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` + progdir=`cd "$progdir" && pwd` + progpath=$progdir/$progname + ;; + *) + _G_IFS=$IFS + IFS=${PATH_SEPARATOR-:} + for progdir in $PATH; do + IFS=$_G_IFS + test -x "$progdir/$progname" && break + done + IFS=$_G_IFS + test -n "$progdir" || progdir=`pwd` + progpath=$progdir/$progname + ;; +esac + + +## ----------------- ## +## Standard options. ## +## ----------------- ## + +# The following options affect the operation of the functions defined +# below, and should be set appropriately depending on run-time para- +# meters passed on the command line. + +opt_dry_run=false +opt_quiet=false +opt_verbose=false + +# Categories 'all' and 'none' are always available. Append any others +# you will pass as the first argument to func_warning from your own +# code. +warning_categories= + +# By default, display warnings according to 'opt_warning_types'. Set +# 'warning_func' to ':' to elide all warnings, or func_fatal_error to +# treat the next displayed warning as a fatal error. +warning_func=func_warn_and_continue + +# Set to 'all' to display all warnings, 'none' to suppress all +# warnings, or a space delimited list of some subset of +# 'warning_categories' to display only the listed warnings. +opt_warning_types=all + + +## -------------------- ## +## Resource management. ## +## -------------------- ## + +# This section contains definitions for functions that each ensure a +# particular resource (a file, or a non-empty configuration variable for +# example) is available, and if appropriate to extract default values +# from pertinent package files. Call them using their associated +# 'require_*' variable to ensure that they are executed, at most, once. +# +# It's entirely deliberate that calling these functions can set +# variables that don't obey the namespace limitations obeyed by the rest +# of this file, in order that that they be as useful as possible to +# callers. + + +# require_term_colors +# ------------------- +# Allow display of bold text on terminals that support it. +require_term_colors=func_require_term_colors +func_require_term_colors () +{ + $debug_cmd + + test -t 1 && { + # COLORTERM and USE_ANSI_COLORS environment variables take + # precedence, because most terminfo databases neglect to describe + # whether color sequences are supported. + test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} + + if test 1 = "$USE_ANSI_COLORS"; then + # Standard ANSI escape sequences + tc_reset='' + tc_bold=''; tc_standout='' + tc_red=''; tc_green='' + tc_blue=''; tc_cyan='' + else + # Otherwise trust the terminfo database after all. + test -n "`tput sgr0 2>/dev/null`" && { + tc_reset=`tput sgr0` + test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` + tc_standout=$tc_bold + test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` + test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` + test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` + test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` + test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` + } + fi + } + + require_term_colors=: +} + + +## ----------------- ## +## Function library. ## +## ----------------- ## + +# This section contains a variety of useful functions to call in your +# scripts. Take note of the portable wrappers for features provided by +# some modern shells, which will fall back to slower equivalents on +# less featureful shells. + + +# func_append VAR VALUE +# --------------------- +# Append VALUE onto the existing contents of VAR. + + # We should try to minimise forks, especially on Windows where they are + # unreasonably slow, so skip the feature probes when bash or zsh are + # being used: + if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then + : ${_G_HAVE_ARITH_OP="yes"} + : ${_G_HAVE_XSI_OPS="yes"} + # The += operator was introduced in bash 3.1 + case $BASH_VERSION in + [12].* | 3.0 | 3.0*) ;; + *) + : ${_G_HAVE_PLUSEQ_OP="yes"} + ;; + esac + fi + + # _G_HAVE_PLUSEQ_OP + # Can be empty, in which case the shell is probed, "yes" if += is + # useable or anything else if it does not work. + test -z "$_G_HAVE_PLUSEQ_OP" \ + && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ + && _G_HAVE_PLUSEQ_OP=yes + +if test yes = "$_G_HAVE_PLUSEQ_OP" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_append () + { + $debug_cmd + + eval "$1+=\$2" + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_append () + { + $debug_cmd + + eval "$1=\$$1\$2" + } +fi + + +# func_append_quoted VAR VALUE +# ---------------------------- +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +if test yes = "$_G_HAVE_PLUSEQ_OP"; then + eval 'func_append_quoted () + { + $debug_cmd + + func_quote_for_eval "$2" + eval "$1+=\\ \$func_quote_for_eval_result" + }' +else + func_append_quoted () + { + $debug_cmd + + func_quote_for_eval "$2" + eval "$1=\$$1\\ \$func_quote_for_eval_result" + } +fi + + +# func_append_uniq VAR VALUE +# -------------------------- +# Append unique VALUE onto the existing contents of VAR, assuming +# entries are delimited by the first character of VALUE. For example: +# +# func_append_uniq options " --another-option option-argument" +# +# will only append to $options if " --another-option option-argument " +# is not already present somewhere in $options already (note spaces at +# each end implied by leading space in second argument). +func_append_uniq () +{ + $debug_cmd + + eval _G_current_value='`$ECHO $'$1'`' + _G_delim=`expr "$2" : '\(.\)'` + + case $_G_delim$_G_current_value$_G_delim in + *"$2$_G_delim"*) ;; + *) func_append "$@" ;; + esac +} + + +# func_arith TERM... +# ------------------ +# Set func_arith_result to the result of evaluating TERMs. + test -z "$_G_HAVE_ARITH_OP" \ + && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ + && _G_HAVE_ARITH_OP=yes + +if test yes = "$_G_HAVE_ARITH_OP"; then + eval 'func_arith () + { + $debug_cmd + + func_arith_result=$(( $* )) + }' +else + func_arith () + { + $debug_cmd + + func_arith_result=`expr "$@"` + } +fi + + +# func_basename FILE +# ------------------ +# Set func_basename_result to FILE with everything up to and including +# the last / stripped. +if test yes = "$_G_HAVE_XSI_OPS"; then + # If this shell supports suffix pattern removal, then use it to avoid + # forking. Hide the definitions single quotes in case the shell chokes + # on unsupported syntax... + _b='func_basename_result=${1##*/}' + _d='case $1 in + */*) func_dirname_result=${1%/*}$2 ;; + * ) func_dirname_result=$3 ;; + esac' + +else + # ...otherwise fall back to using sed. + _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' + _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` + if test "X$func_dirname_result" = "X$1"; then + func_dirname_result=$3 + else + func_append func_dirname_result "$2" + fi' +fi + +eval 'func_basename () +{ + $debug_cmd + + '"$_b"' +}' + + +# func_dirname FILE APPEND NONDIR_REPLACEMENT +# ------------------------------------------- +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +eval 'func_dirname () +{ + $debug_cmd + + '"$_d"' +}' + + +# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT +# -------------------------------------------------------- +# Perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# For efficiency, we do not delegate to the functions above but instead +# duplicate the functionality here. +eval 'func_dirname_and_basename () +{ + $debug_cmd + + '"$_b"' + '"$_d"' +}' + + +# func_echo ARG... +# ---------------- +# Echo program name prefixed message. +func_echo () +{ + $debug_cmd + + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname: $_G_line" + done + IFS=$func_echo_IFS +} + + +# func_echo_all ARG... +# -------------------- +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + + +# func_echo_infix_1 INFIX ARG... +# ------------------------------ +# Echo program name, followed by INFIX on the first line, with any +# additional lines not showing INFIX. +func_echo_infix_1 () +{ + $debug_cmd + + $require_term_colors + + _G_infix=$1; shift + _G_indent=$_G_infix + _G_prefix="$progname: $_G_infix: " + _G_message=$* + + # Strip color escape sequences before counting printable length + for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" + do + test -n "$_G_tc" && { + _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` + _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` + } + done + _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes + + func_echo_infix_1_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_infix_1_IFS + $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 + _G_prefix=$_G_indent + done + IFS=$func_echo_infix_1_IFS +} + + +# func_error ARG... +# ----------------- +# Echo program name prefixed message to standard error. +func_error () +{ + $debug_cmd + + $require_term_colors + + func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 +} + + +# func_fatal_error ARG... +# ----------------------- +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + $debug_cmd + + func_error "$*" + exit $EXIT_FAILURE +} + + +# func_grep EXPRESSION FILENAME +# ----------------------------- +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $debug_cmd + + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_len STRING +# --------------- +# Set func_len_result to the length of STRING. STRING may not +# start with a hyphen. + test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_len () + { + $debug_cmd + + func_len_result=${#1} + }' +else + func_len () + { + $debug_cmd + + func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` + } +fi + + +# func_mkdir_p DIRECTORY-PATH +# --------------------------- +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + $debug_cmd + + _G_directory_path=$1 + _G_dir_list= + + if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then + + # Protect directory names starting with '-' + case $_G_directory_path in + -*) _G_directory_path=./$_G_directory_path ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$_G_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + _G_dir_list=$_G_directory_path:$_G_dir_list + + # If the last portion added has no slash in it, the list is done + case $_G_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` + done + _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` + + func_mkdir_p_IFS=$IFS; IFS=: + for _G_dir in $_G_dir_list; do + IFS=$func_mkdir_p_IFS + # mkdir can fail with a 'File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$_G_dir" 2>/dev/null || : + done + IFS=$func_mkdir_p_IFS + + # Bail out if we (or some other process) failed to create a directory. + test -d "$_G_directory_path" || \ + func_fatal_error "Failed to create '$1'" + fi +} + + +# func_mktempdir [BASENAME] +# ------------------------- +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, BASENAME is the basename for that directory. +func_mktempdir () +{ + $debug_cmd + + _G_template=${TMPDIR-/tmp}/${1-$progname} + + if test : = "$opt_dry_run"; then + # Return a directory name, but don't create it in dry-run mode + _G_tmpdir=$_G_template-$$ + else + + # If mktemp works, use that first and foremost + _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` + + if test ! -d "$_G_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + _G_tmpdir=$_G_template-${RANDOM-0}$$ + + func_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$_G_tmpdir" + umask $func_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$_G_tmpdir" || \ + func_fatal_error "cannot create temporary directory '$_G_tmpdir'" + fi + + $ECHO "$_G_tmpdir" +} + + +# func_normal_abspath PATH +# ------------------------ +# Remove doubled-up and trailing slashes, "." path components, +# and cancel out any ".." path components in PATH after making +# it an absolute path. +func_normal_abspath () +{ + $debug_cmd + + # These SED scripts presuppose an absolute path with a trailing slash. + _G_pathcar='s|^/\([^/]*\).*$|\1|' + _G_pathcdr='s|^/[^/]*||' + _G_removedotparts=':dotsl + s|/\./|/|g + t dotsl + s|/\.$|/|' + _G_collapseslashes='s|/\{1,\}|/|g' + _G_finalslash='s|/*$|/|' + + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in + "") + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return + ;; + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. + ;; + *) + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath + ;; + esac + + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` + while :; do + # Processed it all yet? + if test / = "$func_normal_abspath_tpath"; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result"; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result +} + + +# func_notquiet ARG... +# -------------------- +# Echo program name prefixed message only when not in quiet mode. +func_notquiet () +{ + $debug_cmd + + $opt_quiet || func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + + +# func_relative_path SRCDIR DSTDIR +# -------------------------------- +# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. +func_relative_path () +{ + $debug_cmd + + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=$func_dirname_result + if test -z "$func_relative_path_tlibdir"; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test -n "$func_stripname_result"; then + func_append func_relative_path_result "/$func_stripname_result" + fi + + # Normalisation. If bindir is libdir, return '.' else relative path. + if test -n "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + fi + + test -n "$func_relative_path_result" || func_relative_path_result=. + + : +} + + +# func_quote_for_eval ARG... +# -------------------------- +# Aesthetically quote ARGs to be evaled later. +# This function returns two values: +# i) func_quote_for_eval_result +# double-quoted, suitable for a subsequent eval +# ii) func_quote_for_eval_unquoted_result +# has all characters that are still active within double +# quotes backslashified. +func_quote_for_eval () +{ + $debug_cmd + + func_quote_for_eval_unquoted_result= + func_quote_for_eval_result= + while test 0 -lt $#; do + case $1 in + *[\\\`\"\$]*) + _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; + *) + _G_unquoted_arg=$1 ;; + esac + if test -n "$func_quote_for_eval_unquoted_result"; then + func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" + else + func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" + fi + + case $_G_unquoted_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and variable expansion + # for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + _G_quoted_arg=\"$_G_unquoted_arg\" + ;; + *) + _G_quoted_arg=$_G_unquoted_arg + ;; + esac + + if test -n "$func_quote_for_eval_result"; then + func_append func_quote_for_eval_result " $_G_quoted_arg" + else + func_append func_quote_for_eval_result "$_G_quoted_arg" + fi + shift + done +} + + +# func_quote_for_expand ARG +# ------------------------- +# Aesthetically quote ARG to be evaled later; same as above, +# but do not quote variable references. +func_quote_for_expand () +{ + $debug_cmd + + case $1 in + *[\\\`\"]*) + _G_arg=`$ECHO "$1" | $SED \ + -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; + *) + _G_arg=$1 ;; + esac + + case $_G_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting and command substitution for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + _G_arg=\"$_G_arg\" + ;; + esac + + func_quote_for_expand_result=$_G_arg +} + + +# func_stripname PREFIX SUFFIX NAME +# --------------------------------- +# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_stripname () + { + $debug_cmd + + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary variable first. + func_stripname_result=$3 + func_stripname_result=${func_stripname_result#"$1"} + func_stripname_result=${func_stripname_result%"$2"} + }' +else + func_stripname () + { + $debug_cmd + + case $2 in + .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; + *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; + esac + } +fi + + +# func_show_eval CMD [FAIL_EXP] +# ----------------------------- +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + $debug_cmd + + _G_cmd=$1 + _G_fail_exp=${2-':'} + + func_quote_for_expand "$_G_cmd" + eval "func_notquiet $func_quote_for_expand_result" + + $opt_dry_run || { + eval "$_G_cmd" + _G_status=$? + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" + fi + } +} + + +# func_show_eval_locale CMD [FAIL_EXP] +# ------------------------------------ +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + $debug_cmd + + _G_cmd=$1 + _G_fail_exp=${2-':'} + + $opt_quiet || { + func_quote_for_expand "$_G_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + $opt_dry_run || { + eval "$_G_user_locale + $_G_cmd" + _G_status=$? + eval "$_G_safe_locale" + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" + fi + } +} + + +# func_tr_sh +# ---------- +# Turn $1 into a string suitable for a shell variable name. +# Result is stored in $func_tr_sh_result. All characters +# not in the set a-zA-Z0-9_ are replaced with '_'. Further, +# if $1 begins with a digit, a '_' is prepended as well. +func_tr_sh () +{ + $debug_cmd + + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac +} + + +# func_verbose ARG... +# ------------------- +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $debug_cmd + + $opt_verbose && func_echo "$*" + + : +} + + +# func_warn_and_continue ARG... +# ----------------------------- +# Echo program name prefixed warning message to standard error. +func_warn_and_continue () +{ + $debug_cmd + + $require_term_colors + + func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 +} + + +# func_warning CATEGORY ARG... +# ---------------------------- +# Echo program name prefixed warning message to standard error. Warning +# messages can be filtered according to CATEGORY, where this function +# elides messages where CATEGORY is not listed in the global variable +# 'opt_warning_types'. +func_warning () +{ + $debug_cmd + + # CATEGORY must be in the warning_categories list! + case " $warning_categories " in + *" $1 "*) ;; + *) func_internal_error "invalid warning category '$1'" ;; + esac + + _G_category=$1 + shift + + case " $opt_warning_types " in + *" $_G_category "*) $warning_func ${1+"$@"} ;; + esac +} + + +# func_sort_ver VER1 VER2 +# ----------------------- +# 'sort -V' is not generally available. +# Note this deviates from the version comparison in automake +# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a +# but this should suffice as we won't be specifying old +# version formats or redundant trailing .0 in bootstrap.conf. +# If we did want full compatibility then we should probably +# use m4_version_compare from autoconf. +func_sort_ver () +{ + $debug_cmd + + printf '%s\n%s\n' "$1" "$2" \ + | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n +} + +# func_lt_ver PREV CURR +# --------------------- +# Return true if PREV and CURR are in the correct order according to +# func_sort_ver, otherwise false. Use it like this: +# +# func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." +func_lt_ver () +{ + $debug_cmd + + test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` +} + + +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: +#! /bin/sh + +# Set a version string for this script. +scriptversion=2014-01-07.03; # UTC + +# A portable, pluggable option parser for Bourne shell. +# Written by Gary V. Vaughan, 2010 + +# Copyright (C) 2010-2015 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# This file is a library for parsing options in your shell scripts along +# with assorted other useful supporting features that you can make use +# of too. +# +# For the simplest scripts you might need only: +# +# #!/bin/sh +# . relative/path/to/funclib.sh +# . relative/path/to/options-parser +# scriptversion=1.0 +# func_options ${1+"$@"} +# eval set dummy "$func_options_result"; shift +# ...rest of your script... +# +# In order for the '--version' option to work, you will need to have a +# suitably formatted comment like the one at the top of this file +# starting with '# Written by ' and ending with '# warranty; '. +# +# For '-h' and '--help' to work, you will also need a one line +# description of your script's purpose in a comment directly above the +# '# Written by ' line, like the one at the top of this file. +# +# The default options also support '--debug', which will turn on shell +# execution tracing (see the comment above debug_cmd below for another +# use), and '--verbose' and the func_verbose function to allow your script +# to display verbose messages only when your user has specified +# '--verbose'. +# +# After sourcing this file, you can plug processing for additional +# options by amending the variables from the 'Configuration' section +# below, and following the instructions in the 'Option parsing' +# section further down. + +## -------------- ## +## Configuration. ## +## -------------- ## + +# You should override these variables in your script after sourcing this +# file so that they reflect the customisations you have added to the +# option parser. + +# The usage line for option parsing errors and the start of '-h' and +# '--help' output messages. You can embed shell variables for delayed +# expansion at the time the message is displayed, but you will need to +# quote other shell meta-characters carefully to prevent them being +# expanded when the contents are evaled. +usage='$progpath [OPTION]...' + +# Short help message in response to '-h' and '--help'. Add to this or +# override it after sourcing this library to reflect the full set of +# options your script accepts. +usage_message="\ + --debug enable verbose shell tracing + -W, --warnings=CATEGORY + report the warnings falling in CATEGORY [all] + -v, --verbose verbosely report processing + --version print version information and exit + -h, --help print short or long help message and exit +" + +# Additional text appended to 'usage_message' in response to '--help'. +long_help_message=" +Warning categories include: + 'all' show all warnings + 'none' turn off all the warnings + 'error' warnings are treated as fatal errors" + +# Help message printed before fatal option parsing errors. +fatal_help="Try '\$progname --help' for more information." + + + +## ------------------------- ## +## Hook function management. ## +## ------------------------- ## + +# This section contains functions for adding, removing, and running hooks +# to the main code. A hook is just a named list of of function, that can +# be run in order later on. + +# func_hookable FUNC_NAME +# ----------------------- +# Declare that FUNC_NAME will run hooks added with +# 'func_add_hook FUNC_NAME ...'. +func_hookable () +{ + $debug_cmd + + func_append hookable_fns " $1" +} + + +# func_add_hook FUNC_NAME HOOK_FUNC +# --------------------------------- +# Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must +# first have been declared "hookable" by a call to 'func_hookable'. +func_add_hook () +{ + $debug_cmd + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not accept hook functions." ;; + esac + + eval func_append ${1}_hooks '" $2"' +} + + +# func_remove_hook FUNC_NAME HOOK_FUNC +# ------------------------------------ +# Remove HOOK_FUNC from the list of functions called by FUNC_NAME. +func_remove_hook () +{ + $debug_cmd + + eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' +} + + +# func_run_hooks FUNC_NAME [ARG]... +# --------------------------------- +# Run all hook functions registered to FUNC_NAME. +# It is assumed that the list of hook functions contains nothing more +# than a whitespace-delimited list of legal shell function names, and +# no effort is wasted trying to catch shell meta-characters or preserve +# whitespace. +func_run_hooks () +{ + $debug_cmd + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not support hook funcions.n" ;; + esac + + eval _G_hook_fns=\$$1_hooks; shift + + for _G_hook in $_G_hook_fns; do + eval $_G_hook '"$@"' + + # store returned options list back into positional + # parameters for next 'cmd' execution. + eval _G_hook_result=\$${_G_hook}_result + eval set dummy "$_G_hook_result"; shift + done + + func_quote_for_eval ${1+"$@"} + func_run_hooks_result=$func_quote_for_eval_result +} + + + +## --------------- ## +## Option parsing. ## +## --------------- ## + +# In order to add your own option parsing hooks, you must accept the +# full positional parameter list in your hook function, remove any +# options that you action, and then pass back the remaining unprocessed +# options in '_result', escaped suitably for +# 'eval'. Like this: +# +# my_options_prep () +# { +# $debug_cmd +# +# # Extend the existing usage message. +# usage_message=$usage_message' +# -s, --silent don'\''t print informational messages +# ' +# +# func_quote_for_eval ${1+"$@"} +# my_options_prep_result=$func_quote_for_eval_result +# } +# func_add_hook func_options_prep my_options_prep +# +# +# my_silent_option () +# { +# $debug_cmd +# +# # Note that for efficiency, we parse as many options as we can +# # recognise in a loop before passing the remainder back to the +# # caller on the first unrecognised argument we encounter. +# while test $# -gt 0; do +# opt=$1; shift +# case $opt in +# --silent|-s) opt_silent=: ;; +# # Separate non-argument short options: +# -s*) func_split_short_opt "$_G_opt" +# set dummy "$func_split_short_opt_name" \ +# "-$func_split_short_opt_arg" ${1+"$@"} +# shift +# ;; +# *) set dummy "$_G_opt" "$*"; shift; break ;; +# esac +# done +# +# func_quote_for_eval ${1+"$@"} +# my_silent_option_result=$func_quote_for_eval_result +# } +# func_add_hook func_parse_options my_silent_option +# +# +# my_option_validation () +# { +# $debug_cmd +# +# $opt_silent && $opt_verbose && func_fatal_help "\ +# '--silent' and '--verbose' options are mutually exclusive." +# +# func_quote_for_eval ${1+"$@"} +# my_option_validation_result=$func_quote_for_eval_result +# } +# func_add_hook func_validate_options my_option_validation +# +# You'll alse need to manually amend $usage_message to reflect the extra +# options you parse. It's preferable to append if you can, so that +# multiple option parsing hooks can be added safely. + + +# func_options [ARG]... +# --------------------- +# All the functions called inside func_options are hookable. See the +# individual implementations for details. +func_hookable func_options +func_options () +{ + $debug_cmd + + func_options_prep ${1+"$@"} + eval func_parse_options \ + ${func_options_prep_result+"$func_options_prep_result"} + eval func_validate_options \ + ${func_parse_options_result+"$func_parse_options_result"} + + eval func_run_hooks func_options \ + ${func_validate_options_result+"$func_validate_options_result"} + + # save modified positional parameters for caller + func_options_result=$func_run_hooks_result +} + + +# func_options_prep [ARG]... +# -------------------------- +# All initialisations required before starting the option parse loop. +# Note that when calling hook functions, we pass through the list of +# positional parameters. If a hook function modifies that list, and +# needs to propogate that back to rest of this script, then the complete +# modified list must be put in 'func_run_hooks_result' before +# returning. +func_hookable func_options_prep +func_options_prep () +{ + $debug_cmd + + # Option defaults: + opt_verbose=false + opt_warning_types= + + func_run_hooks func_options_prep ${1+"$@"} + + # save modified positional parameters for caller + func_options_prep_result=$func_run_hooks_result +} + + +# func_parse_options [ARG]... +# --------------------------- +# The main option parsing loop. +func_hookable func_parse_options +func_parse_options () +{ + $debug_cmd + + func_parse_options_result= + + # this just eases exit handling + while test $# -gt 0; do + # Defer to hook functions for initial option parsing, so they + # get priority in the event of reusing an option name. + func_run_hooks func_parse_options ${1+"$@"} + + # Adjust func_parse_options positional parameters to match + eval set dummy "$func_run_hooks_result"; shift + + # Break out of the loop if we already parsed every option. + test $# -gt 0 || break + + _G_opt=$1 + shift + case $_G_opt in + --debug|-x) debug_cmd='set -x' + func_echo "enabling shell trace mode" + $debug_cmd + ;; + + --no-warnings|--no-warning|--no-warn) + set dummy --warnings none ${1+"$@"} + shift + ;; + + --warnings|--warning|-W) + test $# = 0 && func_missing_arg $_G_opt && break + case " $warning_categories $1" in + *" $1 "*) + # trailing space prevents matching last $1 above + func_append_uniq opt_warning_types " $1" + ;; + *all) + opt_warning_types=$warning_categories + ;; + *none) + opt_warning_types=none + warning_func=: + ;; + *error) + opt_warning_types=$warning_categories + warning_func=func_fatal_error + ;; + *) + func_fatal_error \ + "unsupported warning category: '$1'" + ;; + esac + shift + ;; + + --verbose|-v) opt_verbose=: ;; + --version) func_version ;; + -\?|-h) func_usage ;; + --help) func_help ;; + + # Separate optargs to long options (plugins may need this): + --*=*) func_split_equals "$_G_opt" + set dummy "$func_split_equals_lhs" \ + "$func_split_equals_rhs" ${1+"$@"} + shift + ;; + + # Separate optargs to short options: + -W*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-v*|-x*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) break ;; + -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; + *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + esac + done + + # save modified positional parameters for caller + func_quote_for_eval ${1+"$@"} + func_parse_options_result=$func_quote_for_eval_result +} + + +# func_validate_options [ARG]... +# ------------------------------ +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +func_hookable func_validate_options +func_validate_options () +{ + $debug_cmd + + # Display all warnings if -W was not given. + test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" + + func_run_hooks func_validate_options ${1+"$@"} + + # Bail if the options were screwed! + $exit_cmd $EXIT_FAILURE + + # save modified positional parameters for caller + func_validate_options_result=$func_run_hooks_result +} + + + +## ----------------- ## +## Helper functions. ## +## ----------------- ## + +# This section contains the helper functions used by the rest of the +# hookable option parser framework in ascii-betical order. + + +# func_fatal_help ARG... +# ---------------------- +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + $debug_cmd + + eval \$ECHO \""Usage: $usage"\" + eval \$ECHO \""$fatal_help"\" + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + + +# func_help +# --------- +# Echo long help message to standard output and exit. +func_help () +{ + $debug_cmd + + func_usage_message + $ECHO "$long_help_message" + exit 0 +} + + +# func_missing_arg ARGNAME +# ------------------------ +# Echo program name prefixed message to standard error and set global +# exit_cmd. +func_missing_arg () +{ + $debug_cmd + + func_error "Missing argument for '$1'." + exit_cmd=exit +} + + +# func_split_equals STRING +# ------------------------ +# Set func_split_equals_lhs and func_split_equals_rhs shell variables after +# splitting STRING at the '=' sign. +test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=${1%%=*} + func_split_equals_rhs=${1#*=} + test "x$func_split_equals_lhs" = "x$1" \ + && func_split_equals_rhs= + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` + func_split_equals_rhs= + test "x$func_split_equals_lhs" = "x$1" \ + || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` + } +fi #func_split_equals + + +# func_split_short_opt SHORTOPT +# ----------------------------- +# Set func_split_short_opt_name and func_split_short_opt_arg shell +# variables after splitting SHORTOPT after the 2nd character. +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"} + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` + func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` + } +fi #func_split_short_opt + + +# func_usage +# ---------- +# Echo short help message to standard output and exit. +func_usage () +{ + $debug_cmd + + func_usage_message + $ECHO "Run '$progname --help |${PAGER-more}' for full usage" + exit 0 +} + + +# func_usage_message +# ------------------ +# Echo short help message to standard output. +func_usage_message () +{ + $debug_cmd + + eval \$ECHO \""Usage: $usage"\" + echo + $SED -n 's|^# || + /^Written by/{ + x;p;x + } + h + /^Written by/q' < "$progpath" + echo + eval \$ECHO \""$usage_message"\" +} + + +# func_version +# ------------ +# Echo version message to standard output and exit. +func_version () +{ + $debug_cmd + + printf '%s\n' "$progname $scriptversion" + $SED -n ' + /(C)/!b go + :more + /\./!{ + N + s|\n# | | + b more + } + :go + /^# Written by /,/# warranty; / { + s|^# || + s|^# *$|| + s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| + p + } + /^# Written by / { + s|^# || + p + } + /^warranty; /q' < "$progpath" + + exit $? +} + + +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: + +# Set a version string. +scriptversion='(GNU libtool) 2.4.6 Debian-2.4.6-1' + + +# func_echo ARG... +# ---------------- +# Libtool also displays the current mode in messages, so override +# funclib.sh func_echo with this custom definition. +func_echo () +{ + $debug_cmd + + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" + done + IFS=$func_echo_IFS +} + + +# func_warning ARG... +# ------------------- +# Libtool warnings are not categorized, so override funclib.sh +# func_warning with this simpler definition. +func_warning () +{ + $debug_cmd + + $warning_func ${1+"$@"} +} + + +## ---------------- ## +## Options parsing. ## +## ---------------- ## + +# Hook in the functions to make sure our own options are parsed during +# the option parsing loop. + +usage='$progpath [OPTION]... [MODE-ARG]...' + +# Short help message in response to '-h'. +usage_message="Options: + --config show all configuration variables + --debug enable verbose shell tracing + -n, --dry-run display commands without modifying any files + --features display basic configuration information and exit + --mode=MODE use operation mode MODE + --no-warnings equivalent to '-Wnone' + --preserve-dup-deps don't remove duplicate dependency libraries + --quiet, --silent don't print informational messages + --tag=TAG use configuration variables from tag TAG + -v, --verbose print more informational messages than default + --version print version information + -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] + -h, --help, --help-all print short, long, or detailed help message +" + +# Additional text appended to 'usage_message' in response to '--help'. +func_help () +{ + $debug_cmd + + func_usage_message + $ECHO "$long_help_message + +MODE must be one of the following: + + clean remove files from the build directory + compile compile a source file into a libtool object + execute automatically set library path, then run a program + finish complete the installation of libtool libraries + install install libraries or executables + link create a library or an executable + uninstall remove libraries from an installed directory + +MODE-ARGS vary depending on the MODE. When passed as first option, +'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. +Try '$progname --help --mode=MODE' for a more detailed description of MODE. + +When reporting a bug, please describe a test case to reproduce it and +include the following information: + + host-triplet: $host + shell: $SHELL + compiler: $LTCC + compiler flags: $LTCFLAGS + linker: $LD (gnu? $with_gnu_ld) + version: $progname $scriptversion + automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` + autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` + +Report bugs to . +GNU libtool home page: . +General help using GNU software: ." + exit 0 +} + + +# func_lo2o OBJECT-NAME +# --------------------- +# Transform OBJECT-NAME from a '.lo' suffix to the platform specific +# object suffix. + +lo2o=s/\\.lo\$/.$objext/ +o2lo=s/\\.$objext\$/.lo/ + +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_lo2o () + { + case $1 in + *.lo) func_lo2o_result=${1%.lo}.$objext ;; + * ) func_lo2o_result=$1 ;; + esac + }' + + # func_xform LIBOBJ-OR-SOURCE + # --------------------------- + # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) + # suffix to a '.lo' libtool-object suffix. + eval 'func_xform () + { + func_xform_result=${1%.*}.lo + }' +else + # ...otherwise fall back to using sed. + func_lo2o () + { + func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` + } + + func_xform () + { + func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` + } +fi + + +# func_fatal_configuration ARG... +# ------------------------------- +# Echo program name prefixed message to standard error, followed by +# a configuration failure hint, and exit. +func_fatal_configuration () +{ + func__fatal_error ${1+"$@"} \ + "See the $PACKAGE documentation for more information." \ + "Fatal configuration error." +} + + +# func_config +# ----------- +# Display the configuration for all the tags in this script. +func_config () +{ + re_begincf='^# ### BEGIN LIBTOOL' + re_endcf='^# ### END LIBTOOL' + + # Default configuration. + $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" + + # Now print the configurations for the tags. + for tagname in $taglist; do + $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" + done + + exit $? +} + + +# func_features +# ------------- +# Display the features supported by this script. +func_features () +{ + echo "host: $host" + if test yes = "$build_libtool_libs"; then + echo "enable shared libraries" + else + echo "disable shared libraries" + fi + if test yes = "$build_old_libs"; then + echo "enable static libraries" + else + echo "disable static libraries" + fi + + exit $? +} + + +# func_enable_tag TAGNAME +# ----------------------- +# Verify that TAGNAME is valid, and either flag an error and exit, or +# enable the TAGNAME tag. We also add TAGNAME to the global $taglist +# variable here. +func_enable_tag () +{ + # Global variable: + tagname=$1 + + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf=/$re_begincf/,/$re_endcf/p + + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac + + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; + *) + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" + + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac +} + + +# func_check_version_match +# ------------------------ +# Ensure that we are using m4 macros, and libtool script from the same +# release of libtool. +func_check_version_match () +{ + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from an older release. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + fi + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, +$progname: but the definition of this LT_INIT comes from revision $macro_revision. +$progname: You should recreate aclocal.m4 with macros from revision $package_revision +$progname: of $PACKAGE $VERSION and run autoconf again. +_LT_EOF + fi + + exit $EXIT_MISMATCH + fi +} + + +# libtool_options_prep [ARG]... +# ----------------------------- +# Preparation for options parsed by libtool. +libtool_options_prep () +{ + $debug_mode + + # Option defaults: + opt_config=false + opt_dlopen= + opt_dry_run=false + opt_help=false + opt_mode= + opt_preserve_dup_deps=false + opt_quiet=false + + nonopt= + preserve_args= + + # Shorthand for --mode=foo, only valid as the first argument + case $1 in + clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; + compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; + execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; + finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; + install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; + link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; + uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; + esac + + # Pass back the list of options. + func_quote_for_eval ${1+"$@"} + libtool_options_prep_result=$func_quote_for_eval_result +} +func_add_hook func_options_prep libtool_options_prep + + +# libtool_parse_options [ARG]... +# --------------------------------- +# Provide handling for libtool specific options. +libtool_parse_options () +{ + $debug_cmd + + # Perform our own loop to consume as many options as possible in + # each iteration. + while test $# -gt 0; do + _G_opt=$1 + shift + case $_G_opt in + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + + --config) func_config ;; + + --dlopen|-dlopen) + opt_dlopen="${opt_dlopen+$opt_dlopen +}$1" + shift + ;; + + --preserve-dup-deps) + opt_preserve_dup_deps=: ;; + + --features) func_features ;; + + --finish) set dummy --mode finish ${1+"$@"}; shift ;; + + --help) opt_help=: ;; + + --help-all) opt_help=': help-all' ;; + + --mode) test $# = 0 && func_missing_arg $_G_opt && break + opt_mode=$1 + case $1 in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $_G_opt" + exit_cmd=exit + break + ;; + esac + shift + ;; + + --no-silent|--no-quiet) + opt_quiet=false + func_append preserve_args " $_G_opt" + ;; + + --no-warnings|--no-warning|--no-warn) + opt_warning=false + func_append preserve_args " $_G_opt" + ;; + + --no-verbose) + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --silent|--quiet) + opt_quiet=: + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --tag) test $# = 0 && func_missing_arg $_G_opt && break + opt_tag=$1 + func_append preserve_args " $_G_opt $1" + func_enable_tag "$1" + shift + ;; + + --verbose|-v) opt_quiet=false + opt_verbose=: + func_append preserve_args " $_G_opt" + ;; + + # An option not handled by this hook function: + *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + esac + done + + + # save modified positional parameters for caller + func_quote_for_eval ${1+"$@"} + libtool_parse_options_result=$func_quote_for_eval_result +} +func_add_hook func_parse_options libtool_parse_options + + + +# libtool_validate_options [ARG]... +# --------------------------------- +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +libtool_validate_options () +{ + # save first non-option argument + if test 0 -lt $#; then + nonopt=$1 + shift + fi + + # preserve --debug + test : = "$debug_cmd" || func_append preserve_args " --debug" + + case $host in + # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 + # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 + *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + + $opt_help || { + # Sanity checks first: + func_check_version_match + + test yes != "$build_libtool_libs" \ + && test yes != "$build_old_libs" \ + && func_fatal_configuration "not configured to build any kind of library" + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test execute != "$opt_mode"; then + func_error "unrecognized option '-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help=$help + help="Try '$progname --help --mode=$opt_mode' for more information." + } + + # Pass back the unparsed argument list + func_quote_for_eval ${1+"$@"} + libtool_validate_options_result=$func_quote_for_eval_result +} +func_add_hook func_validate_options libtool_validate_options + + +# Process options as early as possible so that --help and --version +# can return quickly. +func_options ${1+"$@"} +eval set dummy "$func_options_result"; shift + + + +## ----------- ## +## Main. ## +## ----------- ## + +magic='%%%MAGIC variable%%%' +magic_exe='%%%MAGIC EXE variable%%%' + +# Global variables. +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# func_generated_by_libtool +# True iff stdin has been generated by Libtool. This function is only +# a basic sanity check; it will hardly flush out determined imposters. +func_generated_by_libtool_p () +{ + $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + +# func_lalib_p file +# True iff FILE is a libtool '.la' library or '.lo' object file. +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_lalib_p () +{ + test -f "$1" && + $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p +} + +# func_lalib_unsafe_p file +# True iff FILE is a libtool '.la' library or '.lo' object file. +# This function implements the same check as func_lalib_p without +# resorting to external programs. To this end, it redirects stdin and +# closes it afterwards, without saving the original file descriptor. +# As a safety measure, use it only where a negative result would be +# fatal anyway. Works if 'file' does not exist. +func_lalib_unsafe_p () +{ + lalib_p=no + if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then + for lalib_p_l in 1 2 3 4 + do + read lalib_p_line + case $lalib_p_line in + \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; + esac + done + exec 0<&5 5<&- + fi + test yes = "$lalib_p" +} + +# func_ltwrapper_script_p file +# True iff FILE is a libtool wrapper script +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_script_p () +{ + test -f "$1" && + $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p +} + +# func_ltwrapper_executable_p file +# True iff FILE is a libtool wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_executable_p () +{ + func_ltwrapper_exec_suffix= + case $1 in + *.exe) ;; + *) func_ltwrapper_exec_suffix=.exe ;; + esac + $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 +} + +# func_ltwrapper_scriptname file +# Assumes file is an ltwrapper_executable +# uses $file to determine the appropriate filename for a +# temporary ltwrapper_script. +func_ltwrapper_scriptname () +{ + func_dirname_and_basename "$1" "" "." + func_stripname '' '.exe' "$func_basename_result" + func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper +} + +# func_ltwrapper_p file +# True iff FILE is a libtool wrapper script or wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_p () +{ + func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" +} + + +# func_execute_cmds commands fail_cmd +# Execute tilde-delimited COMMANDS. +# If FAIL_CMD is given, eval that upon failure. +# FAIL_CMD may read-access the current command in variable CMD! +func_execute_cmds () +{ + $debug_cmd + + save_ifs=$IFS; IFS='~' + for cmd in $1; do + IFS=$sp$nl + eval cmd=\"$cmd\" + IFS=$save_ifs + func_show_eval "$cmd" "${2-:}" + done + IFS=$save_ifs +} + + +# func_source file +# Source FILE, adding directory component if necessary. +# Note that it is not necessary on cygwin/mingw to append a dot to +# FILE even if both FILE and FILE.exe exist: automatic-append-.exe +# behavior happens only for exec(3), not for open(2)! Also, sourcing +# 'FILE.' does not work on cygwin managed mounts. +func_source () +{ + $debug_cmd + + case $1 in + */* | *\\*) . "$1" ;; + *) . "./$1" ;; + esac +} + + +# func_resolve_sysroot PATH +# Replace a leading = in PATH with a sysroot. Store the result into +# func_resolve_sysroot_result +func_resolve_sysroot () +{ + func_resolve_sysroot_result=$1 + case $func_resolve_sysroot_result in + =*) + func_stripname '=' '' "$func_resolve_sysroot_result" + func_resolve_sysroot_result=$lt_sysroot$func_stripname_result + ;; + esac +} + +# func_replace_sysroot PATH +# If PATH begins with the sysroot, replace it with = and +# store the result into func_replace_sysroot_result. +func_replace_sysroot () +{ + case $lt_sysroot:$1 in + ?*:"$lt_sysroot"*) + func_stripname "$lt_sysroot" '' "$1" + func_replace_sysroot_result='='$func_stripname_result + ;; + *) + # Including no sysroot. + func_replace_sysroot_result=$1 + ;; + esac +} + +# func_infer_tag arg +# Infer tagged configuration to use if any are available and +# if one wasn't chosen via the "--tag" command line option. +# Only attempt this if the compiler in the base compile +# command doesn't match the default compiler. +# arg is usually of the form 'gcc ...' +func_infer_tag () +{ + $debug_cmd + + if test -n "$available_tags" && test -z "$tagname"; then + CC_quoted= + for arg in $CC; do + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case $@ in + # Blanks in the command may have been stripped by the calling shell, + # but not from the CC environment variable when configure was run. + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; + # Blanks at the start of $base_compile will cause this to fail + # if we don't check for them as well. + *) + for z in $available_tags; do + if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then + # Evaluate the configuration. + eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + CC_quoted= + for arg in $CC; do + # Double-quote args containing other shell metacharacters. + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case "$@ " in + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) + # The compiler in the base compile command matches + # the one in the tagged configuration. + # Assume this is the tagged configuration we want. + tagname=$z + break + ;; + esac + fi + done + # If $tagname still isn't set, then no tagged configuration + # was found and let the user know that the "--tag" command + # line option must be used. + if test -z "$tagname"; then + func_echo "unable to infer tagged configuration" + func_fatal_error "specify a tag with '--tag'" +# else +# func_verbose "using $tagname tagged configuration" + fi + ;; + esac + fi +} + + + +# func_write_libtool_object output_name pic_name nonpic_name +# Create a libtool object file (analogous to a ".la" file), +# but don't create it if we're doing a dry run. +func_write_libtool_object () +{ + write_libobj=$1 + if test yes = "$build_libtool_libs"; then + write_lobj=\'$2\' + else + write_lobj=none + fi + + if test yes = "$build_old_libs"; then + write_oldobj=\'$3\' + else + write_oldobj=none + fi + + $opt_dry_run || { + cat >${write_libobj}T </dev/null` + if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then + func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | + $SED -e "$sed_naive_backslashify"` + else + func_convert_core_file_wine_to_w32_result= + fi + fi +} +# end: func_convert_core_file_wine_to_w32 + + +# func_convert_core_path_wine_to_w32 ARG +# Helper function used by path conversion functions when $build is *nix, and +# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly +# configured wine environment available, with the winepath program in $build's +# $PATH. Assumes ARG has no leading or trailing path separator characters. +# +# ARG is path to be converted from $build format to win32. +# Result is available in $func_convert_core_path_wine_to_w32_result. +# Unconvertible file (directory) names in ARG are skipped; if no directory names +# are convertible, then the result may be empty. +func_convert_core_path_wine_to_w32 () +{ + $debug_cmd + + # unfortunately, winepath doesn't convert paths, only file names + func_convert_core_path_wine_to_w32_result= + if test -n "$1"; then + oldIFS=$IFS + IFS=: + for func_convert_core_path_wine_to_w32_f in $1; do + IFS=$oldIFS + func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" + if test -n "$func_convert_core_file_wine_to_w32_result"; then + if test -z "$func_convert_core_path_wine_to_w32_result"; then + func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result + else + func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" + fi + fi + done + IFS=$oldIFS + fi +} +# end: func_convert_core_path_wine_to_w32 + + +# func_cygpath ARGS... +# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when +# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) +# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or +# (2), returns the Cygwin file name or path in func_cygpath_result (input +# file name or path is assumed to be in w32 format, as previously converted +# from $build's *nix or MSYS format). In case (3), returns the w32 file name +# or path in func_cygpath_result (input file name or path is assumed to be in +# Cygwin format). Returns an empty string on error. +# +# ARGS are passed to cygpath, with the last one being the file name or path to +# be converted. +# +# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH +# environment variable; do not put it in $PATH. +func_cygpath () +{ + $debug_cmd + + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then + func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` + if test "$?" -ne 0; then + # on failure, ensure result is empty + func_cygpath_result= + fi + else + func_cygpath_result= + func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" + fi +} +#end: func_cygpath + + +# func_convert_core_msys_to_w32 ARG +# Convert file name or path ARG from MSYS format to w32 format. Return +# result in func_convert_core_msys_to_w32_result. +func_convert_core_msys_to_w32 () +{ + $debug_cmd + + # awkward: cmd appends spaces to result + func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | + $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` +} +#end: func_convert_core_msys_to_w32 + + +# func_convert_file_check ARG1 ARG2 +# Verify that ARG1 (a file name in $build format) was converted to $host +# format in ARG2. Otherwise, emit an error message, but continue (resetting +# func_to_host_file_result to ARG1). +func_convert_file_check () +{ + $debug_cmd + + if test -z "$2" && test -n "$1"; then + func_error "Could not determine host file name corresponding to" + func_error " '$1'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback: + func_to_host_file_result=$1 + fi +} +# end func_convert_file_check + + +# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH +# Verify that FROM_PATH (a path in $build format) was converted to $host +# format in TO_PATH. Otherwise, emit an error message, but continue, resetting +# func_to_host_file_result to a simplistic fallback value (see below). +func_convert_path_check () +{ + $debug_cmd + + if test -z "$4" && test -n "$3"; then + func_error "Could not determine the host path corresponding to" + func_error " '$3'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback. This is a deliberately simplistic "conversion" and + # should not be "improved". See libtool.info. + if test "x$1" != "x$2"; then + lt_replace_pathsep_chars="s|$1|$2|g" + func_to_host_path_result=`echo "$3" | + $SED -e "$lt_replace_pathsep_chars"` + else + func_to_host_path_result=$3 + fi + fi +} +# end func_convert_path_check + + +# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG +# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT +# and appending REPL if ORIG matches BACKPAT. +func_convert_path_front_back_pathsep () +{ + $debug_cmd + + case $4 in + $1 ) func_to_host_path_result=$3$func_to_host_path_result + ;; + esac + case $4 in + $2 ) func_append func_to_host_path_result "$3" + ;; + esac +} +# end func_convert_path_front_back_pathsep + + +################################################## +# $build to $host FILE NAME CONVERSION FUNCTIONS # +################################################## +# invoked via '$to_host_file_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# Result will be available in $func_to_host_file_result. + + +# func_to_host_file ARG +# Converts the file name ARG from $build format to $host format. Return result +# in func_to_host_file_result. +func_to_host_file () +{ + $debug_cmd + + $to_host_file_cmd "$1" +} +# end func_to_host_file + + +# func_to_tool_file ARG LAZY +# converts the file name ARG from $build format to toolchain format. Return +# result in func_to_tool_file_result. If the conversion in use is listed +# in (the comma separated) LAZY, no conversion takes place. +func_to_tool_file () +{ + $debug_cmd + + case ,$2, in + *,"$to_tool_file_cmd",*) + func_to_tool_file_result=$1 + ;; + *) + $to_tool_file_cmd "$1" + func_to_tool_file_result=$func_to_host_file_result + ;; + esac +} +# end func_to_tool_file + + +# func_convert_file_noop ARG +# Copy ARG to func_to_host_file_result. +func_convert_file_noop () +{ + func_to_host_file_result=$1 +} +# end func_convert_file_noop + + +# func_convert_file_msys_to_w32 ARG +# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_file_result. +func_convert_file_msys_to_w32 () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_to_host_file_result=$func_convert_core_msys_to_w32_result + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_w32 + + +# func_convert_file_cygwin_to_w32 ARG +# Convert file name ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_file_cygwin_to_w32 () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + # because $build is cygwin, we call "the" cygpath in $PATH; no need to use + # LT_CYGPATH in this case. + func_to_host_file_result=`cygpath -m "$1"` + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_cygwin_to_w32 + + +# func_convert_file_nix_to_w32 ARG +# Convert file name ARG from *nix to w32 format. Requires a wine environment +# and a working winepath. Returns result in func_to_host_file_result. +func_convert_file_nix_to_w32 () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + func_convert_core_file_wine_to_w32 "$1" + func_to_host_file_result=$func_convert_core_file_wine_to_w32_result + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_w32 + + +# func_convert_file_msys_to_cygwin ARG +# Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_file_msys_to_cygwin () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_cygpath -u "$func_convert_core_msys_to_w32_result" + func_to_host_file_result=$func_cygpath_result + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_cygwin + + +# func_convert_file_nix_to_cygwin ARG +# Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed +# in a wine environment, working winepath, and LT_CYGPATH set. Returns result +# in func_to_host_file_result. +func_convert_file_nix_to_cygwin () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. + func_convert_core_file_wine_to_w32 "$1" + func_cygpath -u "$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result=$func_cygpath_result + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_cygwin + + +############################################# +# $build to $host PATH CONVERSION FUNCTIONS # +############################################# +# invoked via '$to_host_path_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# The result will be available in $func_to_host_path_result. +# +# Path separators are also converted from $build format to $host format. If +# ARG begins or ends with a path separator character, it is preserved (but +# converted to $host format) on output. +# +# All path conversion functions are named using the following convention: +# file name conversion function : func_convert_file_X_to_Y () +# path conversion function : func_convert_path_X_to_Y () +# where, for any given $build/$host combination the 'X_to_Y' value is the +# same. If conversion functions are added for new $build/$host combinations, +# the two new functions must follow this pattern, or func_init_to_host_path_cmd +# will break. + + +# func_init_to_host_path_cmd +# Ensures that function "pointer" variable $to_host_path_cmd is set to the +# appropriate value, based on the value of $to_host_file_cmd. +to_host_path_cmd= +func_init_to_host_path_cmd () +{ + $debug_cmd + + if test -z "$to_host_path_cmd"; then + func_stripname 'func_convert_file_' '' "$to_host_file_cmd" + to_host_path_cmd=func_convert_path_$func_stripname_result + fi +} + + +# func_to_host_path ARG +# Converts the path ARG from $build format to $host format. Return result +# in func_to_host_path_result. +func_to_host_path () +{ + $debug_cmd + + func_init_to_host_path_cmd + $to_host_path_cmd "$1" +} +# end func_to_host_path + + +# func_convert_path_noop ARG +# Copy ARG to func_to_host_path_result. +func_convert_path_noop () +{ + func_to_host_path_result=$1 +} +# end func_convert_path_noop + + +# func_convert_path_msys_to_w32 ARG +# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_path_result. +func_convert_path_msys_to_w32 () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # Remove leading and trailing path separator characters from ARG. MSYS + # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; + # and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result=$func_convert_core_msys_to_w32_result + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_msys_to_w32 + + +# func_convert_path_cygwin_to_w32 ARG +# Convert path ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_path_cygwin_to_w32 () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_cygwin_to_w32 + + +# func_convert_path_nix_to_w32 ARG +# Convert path ARG from *nix to w32 format. Requires a wine environment and +# a working winepath. Returns result in func_to_host_file_result. +func_convert_path_nix_to_w32 () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result=$func_convert_core_path_wine_to_w32_result + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_nix_to_w32 + + +# func_convert_path_msys_to_cygwin ARG +# Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_path_msys_to_cygwin () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_msys_to_w32_result" + func_to_host_path_result=$func_cygpath_result + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_msys_to_cygwin + + +# func_convert_path_nix_to_cygwin ARG +# Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a +# a wine environment, working winepath, and LT_CYGPATH set. Returns result in +# func_to_host_file_result. +func_convert_path_nix_to_cygwin () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # Remove leading and trailing path separator characters from + # ARG. msys behavior is inconsistent here, cygpath turns them + # into '.;' and ';.', and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result=$func_cygpath_result + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_nix_to_cygwin + + +# func_dll_def_p FILE +# True iff FILE is a Windows DLL '.def' file. +# Keep in sync with _LT_DLL_DEF_P in libtool.m4 +func_dll_def_p () +{ + $debug_cmd + + func_dll_def_p_tmp=`$SED -n \ + -e 's/^[ ]*//' \ + -e '/^\(;.*\)*$/d' \ + -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ + -e q \ + "$1"` + test DEF = "$func_dll_def_p_tmp" +} + + +# func_mode_compile arg... +func_mode_compile () +{ + $debug_cmd + + # Get the compilation command and the source file. + base_compile= + srcfile=$nonopt # always keep a non-empty value in "srcfile" + suppress_opt=yes + suppress_output= + arg_mode=normal + libobj= + later= + pie_flag= + + for arg + do + case $arg_mode in + arg ) + # do not "continue". Instead, add this to base_compile + lastarg=$arg + arg_mode=normal + ;; + + target ) + libobj=$arg + arg_mode=normal + continue + ;; + + normal ) + # Accept any command-line options. + case $arg in + -o) + test -n "$libobj" && \ + func_fatal_error "you cannot specify '-o' more than once" + arg_mode=target + continue + ;; + + -pie | -fpie | -fPIE) + func_append pie_flag " $arg" + continue + ;; + + -shared | -static | -prefer-pic | -prefer-non-pic) + func_append later " $arg" + continue + ;; + + -no-suppress) + suppress_opt=no + continue + ;; + + -Xcompiler) + arg_mode=arg # the next one goes into the "base_compile" arg list + continue # The current "srcfile" will either be retained or + ;; # replaced later. I would guess that would be a bug. + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + lastarg= + save_ifs=$IFS; IFS=, + for arg in $args; do + IFS=$save_ifs + func_append_quoted lastarg "$arg" + done + IFS=$save_ifs + func_stripname ' ' '' "$lastarg" + lastarg=$func_stripname_result + + # Add the arguments to base_compile. + func_append base_compile " $lastarg" + continue + ;; + + *) + # Accept the current argument as the source file. + # The previous "srcfile" becomes the current argument. + # + lastarg=$srcfile + srcfile=$arg + ;; + esac # case $arg + ;; + esac # case $arg_mode + + # Aesthetically quote the previous argument. + func_append_quoted base_compile "$lastarg" + done # for arg + + case $arg_mode in + arg) + func_fatal_error "you must specify an argument for -Xcompile" + ;; + target) + func_fatal_error "you must specify a target with '-o'" + ;; + *) + # Get the name of the library object. + test -z "$libobj" && { + func_basename "$srcfile" + libobj=$func_basename_result + } + ;; + esac + + # Recognize several different file suffixes. + # If the user specifies -o file.o, it is replaced with file.lo + case $libobj in + *.[cCFSifmso] | \ + *.ada | *.adb | *.ads | *.asm | \ + *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ + *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) + func_xform "$libobj" + libobj=$func_xform_result + ;; + esac + + case $libobj in + *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; + *) + func_fatal_error "cannot determine name of library object from '$libobj'" + ;; + esac + + func_infer_tag $base_compile + + for arg in $later; do + case $arg in + -shared) + test yes = "$build_libtool_libs" \ + || func_fatal_configuration "cannot build a shared library" + build_old_libs=no + continue + ;; + + -static) + build_libtool_libs=no + build_old_libs=yes + continue + ;; + + -prefer-pic) + pic_mode=yes + continue + ;; + + -prefer-non-pic) + pic_mode=no + continue + ;; + esac + done + + func_quote_for_eval "$libobj" + test "X$libobj" != "X$func_quote_for_eval_result" \ + && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ + && func_warning "libobj name '$libobj' may not contain shell special characters." + func_dirname_and_basename "$obj" "/" "" + objname=$func_basename_result + xdir=$func_dirname_result + lobj=$xdir$objdir/$objname + + test -z "$base_compile" && \ + func_fatal_help "you must specify a compilation command" + + # Delete any leftover library objects. + if test yes = "$build_old_libs"; then + removelist="$obj $lobj $libobj ${libobj}T" + else + removelist="$lobj $libobj ${libobj}T" + fi + + # On Cygwin there's no "real" PIC flag so we must build both object types + case $host_os in + cygwin* | mingw* | pw32* | os2* | cegcc*) + pic_mode=default + ;; + esac + if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then + # non-PIC code in shared libraries is not supported + pic_mode=default + fi + + # Calculate the filename of the output object if compiler does + # not support -o with -c + if test no = "$compiler_c_o"; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext + lockfile=$output_obj.lock + else + output_obj= + need_locks=no + lockfile= + fi + + # Lock this critical section if it is needed + # We use this script file to make the link, it avoids creating a new file + if test yes = "$need_locks"; then + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + elif test warn = "$need_locks"; then + if test -f "$lockfile"; then + $ECHO "\ +*** ERROR, $lockfile exists and contains: +`cat $lockfile 2>/dev/null` + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support '-c' and '-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + func_append removelist " $output_obj" + $ECHO "$srcfile" > "$lockfile" + fi + + $opt_dry_run || $RM $removelist + func_append removelist " $lockfile" + trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 + + func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 + srcfile=$func_to_tool_file_result + func_quote_for_eval "$srcfile" + qsrcfile=$func_quote_for_eval_result + + # Only build a PIC object if we are building libtool libraries. + if test yes = "$build_libtool_libs"; then + # Without this assignment, base_compile gets emptied. + fbsd_hideous_sh_bug=$base_compile + + if test no != "$pic_mode"; then + command="$base_compile $qsrcfile $pic_flag" + else + # Don't build PIC code + command="$base_compile $qsrcfile" + fi + + func_mkdir_p "$xdir$objdir" + + if test -z "$output_obj"; then + # Place PIC objects in $objdir + func_append command " -o $lobj" + fi + + func_show_eval_locale "$command" \ + 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' + + if test warn = "$need_locks" && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support '-c' and '-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed, then go on to compile the next one + if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then + func_show_eval '$MV "$output_obj" "$lobj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + + # Allow error messages only from the first compilation. + if test yes = "$suppress_opt"; then + suppress_output=' >/dev/null 2>&1' + fi + fi + + # Only build a position-dependent object if we build old libraries. + if test yes = "$build_old_libs"; then + if test yes != "$pic_mode"; then + # Don't build PIC code + command="$base_compile $qsrcfile$pie_flag" + else + command="$base_compile $qsrcfile $pic_flag" + fi + if test yes = "$compiler_c_o"; then + func_append command " -o $obj" + fi + + # Suppress compiler output if we already did a PIC compilation. + func_append command "$suppress_output" + func_show_eval_locale "$command" \ + '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' + + if test warn = "$need_locks" && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support '-c' and '-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed + if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then + func_show_eval '$MV "$output_obj" "$obj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + fi + + $opt_dry_run || { + func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" + + # Unlock the critical section if it was locked + if test no != "$need_locks"; then + removelist=$lockfile + $RM "$lockfile" + fi + } + + exit $EXIT_SUCCESS +} + +$opt_help || { + test compile = "$opt_mode" && func_mode_compile ${1+"$@"} +} + +func_mode_help () +{ + # We need to display help for each of the modes. + case $opt_mode in + "") + # Generic help is extracted from the usage comments + # at the start of this file. + func_help + ;; + + clean) + $ECHO \ +"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... + +Remove files from the build directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed +to RM. + +If FILE is a libtool library, object or program, all the files associated +with it are deleted. Otherwise, only FILE itself is deleted using RM." + ;; + + compile) + $ECHO \ +"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE + +Compile a source file into a libtool library object. + +This mode accepts the following additional options: + + -o OUTPUT-FILE set the output file name to OUTPUT-FILE + -no-suppress do not suppress compiler output for multiple passes + -prefer-pic try to build PIC objects only + -prefer-non-pic try to build non-PIC objects only + -shared do not build a '.o' file suitable for static linking + -static only build a '.o' file suitable for static linking + -Wc,FLAG pass FLAG directly to the compiler + +COMPILE-COMMAND is a command to be used in creating a 'standard' object file +from the given SOURCEFILE. + +The output file name is determined by removing the directory component from +SOURCEFILE, then substituting the C source code suffix '.c' with the +library object suffix, '.lo'." + ;; + + execute) + $ECHO \ +"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... + +Automatically set library path, then run a program. + +This mode accepts the following additional options: + + -dlopen FILE add the directory containing FILE to the library path + +This mode sets the library path environment variable according to '-dlopen' +flags. + +If any of the ARGS are libtool executable wrappers, then they are translated +into their corresponding uninstalled binary, and any of their required library +directories are added to the library path. + +Then, COMMAND is executed, with ARGS as arguments." + ;; + + finish) + $ECHO \ +"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... + +Complete the installation of libtool libraries. + +Each LIBDIR is a directory that contains libtool libraries. + +The commands that this mode executes may require superuser privileges. Use +the '--dry-run' option if you just want to see what would be executed." + ;; + + install) + $ECHO \ +"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... + +Install executables or libraries. + +INSTALL-COMMAND is the installation command. The first component should be +either the 'install' or 'cp' program. + +The following components of INSTALL-COMMAND are treated specially: + + -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation + +The rest of the components are interpreted as arguments to that command (only +BSD-compatible install options are recognized)." + ;; + + link) + $ECHO \ +"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... + +Link object files or libraries together to form another library, or to +create an executable program. + +LINK-COMMAND is a command using the C compiler that you would use to create +a program from several object files. + +The following components of LINK-COMMAND are treated specially: + + -all-static do not do any dynamic linking at all + -avoid-version do not add a version suffix if possible + -bindir BINDIR specify path to binaries directory (for systems where + libraries must be found in the PATH setting at runtime) + -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime + -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols + -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) + -export-symbols SYMFILE + try to export only the symbols listed in SYMFILE + -export-symbols-regex REGEX + try to export only the symbols matching REGEX + -LLIBDIR search LIBDIR for required installed libraries + -lNAME OUTPUT-FILE requires the installed library libNAME + -module build a library that can dlopened + -no-fast-install disable the fast-install mode + -no-install link a not-installable executable + -no-undefined declare that a library does not refer to external symbols + -o OUTPUT-FILE create OUTPUT-FILE from the specified objects + -objectlist FILE use a list of object files found in FILE to specify objects + -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) + -precious-files-regex REGEX + don't remove output files matching REGEX + -release RELEASE specify package release information + -rpath LIBDIR the created library will eventually be installed in LIBDIR + -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries + -shared only do dynamic linking of libtool libraries + -shrext SUFFIX override the standard shared library file extension + -static do not do any dynamic linking of uninstalled libtool libraries + -static-libtool-libs + do not do any dynamic linking of libtool libraries + -version-info CURRENT[:REVISION[:AGE]] + specify library version info [each variable defaults to 0] + -weak LIBNAME declare that the target provides the LIBNAME interface + -Wc,FLAG + -Xcompiler FLAG pass linker-specific FLAG directly to the compiler + -Wl,FLAG + -Xlinker FLAG pass linker-specific FLAG directly to the linker + -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) + +All other options (arguments beginning with '-') are ignored. + +Every other argument is treated as a filename. Files ending in '.la' are +treated as uninstalled libtool libraries, other files are standard or library +object files. + +If the OUTPUT-FILE ends in '.la', then a libtool library is created, +only library objects ('.lo' files) may be specified, and '-rpath' is +required, except when creating a convenience library. + +If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created +using 'ar' and 'ranlib', or on Windows using 'lib'. + +If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file +is created, otherwise an executable program is created." + ;; + + uninstall) + $ECHO \ +"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... + +Remove libraries from an installation directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed +to RM. + +If FILE is a libtool library, all the files associated with it are deleted. +Otherwise, only FILE itself is deleted using RM." + ;; + + *) + func_fatal_help "invalid operation mode '$opt_mode'" + ;; + esac + + echo + $ECHO "Try '$progname --help' for more information about other modes." +} + +# Now that we've collected a possible --mode arg, show help if necessary +if $opt_help; then + if test : = "$opt_help"; then + func_mode_help + else + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + func_mode_help + done + } | $SED -n '1p; 2,$s/^Usage:/ or: /p' + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + echo + func_mode_help + done + } | + $SED '1d + /^When reporting/,/^Report/{ + H + d + } + $x + /information about other modes/d + /more detailed .*MODE/d + s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' + fi + exit $? +fi + + +# func_mode_execute arg... +func_mode_execute () +{ + $debug_cmd + + # The first argument is the command name. + cmd=$nonopt + test -z "$cmd" && \ + func_fatal_help "you must specify a COMMAND" + + # Handle -dlopen flags immediately. + for file in $opt_dlopen; do + test -f "$file" \ + || func_fatal_help "'$file' is not a file" + + dir= + case $file in + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "'$lib' is not a valid libtool archive" + + # Read the libtool library. + dlname= + library_names= + func_source "$file" + + # Skip this library if it cannot be dlopened. + if test -z "$dlname"; then + # Warn if it was a shared library. + test -n "$library_names" && \ + func_warning "'$file' was not linked with '-export-dynamic'" + continue + fi + + func_dirname "$file" "" "." + dir=$func_dirname_result + + if test -f "$dir/$objdir/$dlname"; then + func_append dir "/$objdir" + else + if test ! -f "$dir/$dlname"; then + func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" + fi + fi + ;; + + *.lo) + # Just add the directory containing the .lo file. + func_dirname "$file" "" "." + dir=$func_dirname_result + ;; + + *) + func_warning "'-dlopen' is ignored for non-libtool libraries and objects" + continue + ;; + esac + + # Get the absolute pathname. + absdir=`cd "$dir" && pwd` + test -n "$absdir" && dir=$absdir + + # Now add the directory to shlibpath_var. + if eval "test -z \"\$$shlibpath_var\""; then + eval "$shlibpath_var=\"\$dir\"" + else + eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" + fi + done + + # This variable tells wrapper scripts just to set shlibpath_var + # rather than running their programs. + libtool_execute_magic=$magic + + # Check if any of the arguments is a wrapper script. + args= + for file + do + case $file in + -* | *.la | *.lo ) ;; + *) + # Do a test to see if this is really a libtool program. + if func_ltwrapper_script_p "$file"; then + func_source "$file" + # Transform arg to wrapped name. + file=$progdir/$program + elif func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + func_source "$func_ltwrapper_scriptname_result" + # Transform arg to wrapped name. + file=$progdir/$program + fi + ;; + esac + # Quote arguments (to preserve shell metacharacters). + func_append_quoted args "$file" + done + + if $opt_dry_run; then + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + else + if test -n "$shlibpath_var"; then + # Export the shlibpath_var. + eval "export $shlibpath_var" + fi + + # Restore saved environment variables + for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES + do + eval "if test \"\${save_$lt_var+set}\" = set; then + $lt_var=\$save_$lt_var; export $lt_var + else + $lt_unset $lt_var + fi" + done + + # Now prepare to actually exec the command. + exec_cmd=\$cmd$args + fi +} + +test execute = "$opt_mode" && func_mode_execute ${1+"$@"} + + +# func_mode_finish arg... +func_mode_finish () +{ + $debug_cmd + + libs= + libdirs= + admincmds= + + for opt in "$nonopt" ${1+"$@"} + do + if test -d "$opt"; then + func_append libdirs " $opt" + + elif test -f "$opt"; then + if func_lalib_unsafe_p "$opt"; then + func_append libs " $opt" + else + func_warning "'$opt' is not a valid libtool archive" + fi + + else + func_fatal_error "invalid argument '$opt'" + fi + done + + if test -n "$libs"; then + if test -n "$lt_sysroot"; then + sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` + sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" + else + sysroot_cmd= + fi + + # Remove sysroot references + if $opt_dry_run; then + for lib in $libs; do + echo "removing references to $lt_sysroot and '=' prefixes from $lib" + done + else + tmpdir=`func_mktempdir` + for lib in $libs; do + $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + > $tmpdir/tmp-la + mv -f $tmpdir/tmp-la $lib + done + ${RM}r "$tmpdir" + fi + fi + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + for libdir in $libdirs; do + if test -n "$finish_cmds"; then + # Do each command in the finish commands. + func_execute_cmds "$finish_cmds" 'admincmds="$admincmds +'"$cmd"'"' + fi + if test -n "$finish_eval"; then + # Do the single finish_eval. + eval cmds=\"$finish_eval\" + $opt_dry_run || eval "$cmds" || func_append admincmds " + $cmds" + fi + done + fi + + # Exit here if they wanted silent mode. + $opt_quiet && exit $EXIT_SUCCESS + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + echo "----------------------------------------------------------------------" + echo "Libraries have been installed in:" + for libdir in $libdirs; do + $ECHO " $libdir" + done + echo + echo "If you ever happen to want to link against installed libraries" + echo "in a given directory, LIBDIR, you must either use libtool, and" + echo "specify the full pathname of the library, or use the '-LLIBDIR'" + echo "flag during linking and do at least one of the following:" + if test -n "$shlibpath_var"; then + echo " - add LIBDIR to the '$shlibpath_var' environment variable" + echo " during execution" + fi + if test -n "$runpath_var"; then + echo " - add LIBDIR to the '$runpath_var' environment variable" + echo " during linking" + fi + if test -n "$hardcode_libdir_flag_spec"; then + libdir=LIBDIR + eval flag=\"$hardcode_libdir_flag_spec\" + + $ECHO " - use the '$flag' linker flag" + fi + if test -n "$admincmds"; then + $ECHO " - have your system administrator run these commands:$admincmds" + fi + if test -f /etc/ld.so.conf; then + echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" + fi + echo + + echo "See any operating system documentation about shared libraries for" + case $host in + solaris2.[6789]|solaris2.1[0-9]) + echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" + echo "pages." + ;; + *) + echo "more information, such as the ld(1) and ld.so(8) manual pages." + ;; + esac + echo "----------------------------------------------------------------------" + fi + exit $EXIT_SUCCESS +} + +test finish = "$opt_mode" && func_mode_finish ${1+"$@"} + + +# func_mode_install arg... +func_mode_install () +{ + $debug_cmd + + # There may be an optional sh(1) argument at the beginning of + # install_prog (especially on Windows NT). + if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || + # Allow the use of GNU shtool's install command. + case $nonopt in *shtool*) :;; *) false;; esac + then + # Aesthetically quote it. + func_quote_for_eval "$nonopt" + install_prog="$func_quote_for_eval_result " + arg=$1 + shift + else + install_prog= + arg=$nonopt + fi + + # The real first argument should be the name of the installation program. + # Aesthetically quote it. + func_quote_for_eval "$arg" + func_append install_prog "$func_quote_for_eval_result" + install_shared_prog=$install_prog + case " $install_prog " in + *[\\\ /]cp\ *) install_cp=: ;; + *) install_cp=false ;; + esac + + # We need to accept at least all the BSD install flags. + dest= + files= + opts= + prev= + install_type= + isdir=false + stripme= + no_mode=: + for arg + do + arg2= + if test -n "$dest"; then + func_append files " $dest" + dest=$arg + continue + fi + + case $arg in + -d) isdir=: ;; + -f) + if $install_cp; then :; else + prev=$arg + fi + ;; + -g | -m | -o) + prev=$arg + ;; + -s) + stripme=" -s" + continue + ;; + -*) + ;; + *) + # If the previous option needed an argument, then skip it. + if test -n "$prev"; then + if test X-m = "X$prev" && test -n "$install_override_mode"; then + arg2=$install_override_mode + no_mode=false + fi + prev= + else + dest=$arg + continue + fi + ;; + esac + + # Aesthetically quote the argument. + func_quote_for_eval "$arg" + func_append install_prog " $func_quote_for_eval_result" + if test -n "$arg2"; then + func_quote_for_eval "$arg2" + fi + func_append install_shared_prog " $func_quote_for_eval_result" + done + + test -z "$install_prog" && \ + func_fatal_help "you must specify an install program" + + test -n "$prev" && \ + func_fatal_help "the '$prev' option requires an argument" + + if test -n "$install_override_mode" && $no_mode; then + if $install_cp; then :; else + func_quote_for_eval "$install_override_mode" + func_append install_shared_prog " -m $func_quote_for_eval_result" + fi + fi + + if test -z "$files"; then + if test -z "$dest"; then + func_fatal_help "no file or destination specified" + else + func_fatal_help "you must specify a destination" + fi + fi + + # Strip any trailing slash from the destination. + func_stripname '' '/' "$dest" + dest=$func_stripname_result + + # Check to see that the destination is a directory. + test -d "$dest" && isdir=: + if $isdir; then + destdir=$dest + destname= + else + func_dirname_and_basename "$dest" "" "." + destdir=$func_dirname_result + destname=$func_basename_result + + # Not a directory, so check to see that there is only one file specified. + set dummy $files; shift + test "$#" -gt 1 && \ + func_fatal_help "'$dest' is not a directory" + fi + case $destdir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + for file in $files; do + case $file in + *.lo) ;; + *) + func_fatal_help "'$destdir' must be an absolute directory name" + ;; + esac + done + ;; + esac + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic=$magic + + staticlibs= + future_libdirs= + current_libdirs= + for file in $files; do + + # Do each installation. + case $file in + *.$libext) + # Do the static libraries later. + func_append staticlibs " $file" + ;; + + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "'$file' is not a valid libtool archive" + + library_names= + old_library= + relink_command= + func_source "$file" + + # Add the libdir to current_libdirs if it is the destination. + if test "X$destdir" = "X$libdir"; then + case "$current_libdirs " in + *" $libdir "*) ;; + *) func_append current_libdirs " $libdir" ;; + esac + else + # Note the libdir as a future libdir. + case "$future_libdirs " in + *" $libdir "*) ;; + *) func_append future_libdirs " $libdir" ;; + esac + fi + + func_dirname "$file" "/" "" + dir=$func_dirname_result + func_append dir "$objdir" + + if test -n "$relink_command"; then + # Determine the prefix the user has applied to our future dir. + inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` + + # Don't allow the user to place us outside of our expected + # location b/c this prevents finding dependent libraries that + # are installed to the same prefix. + # At present, this check doesn't affect windows .dll's that + # are installed into $libdir/../bin (currently, that works fine) + # but it's something to keep an eye on. + test "$inst_prefix_dir" = "$destdir" && \ + func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" + + if test -n "$inst_prefix_dir"; then + # Stick the inst_prefix_dir data into the link command. + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` + else + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` + fi + + func_warning "relinking '$file'" + func_show_eval "$relink_command" \ + 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' + fi + + # See the names of the shared library. + set dummy $library_names; shift + if test -n "$1"; then + realname=$1 + shift + + srcname=$realname + test -n "$relink_command" && srcname=${realname}T + + # Install the shared library and build the symlinks. + func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ + 'exit $?' + tstripme=$stripme + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + case $realname in + *.dll.a) + tstripme= + ;; + esac + ;; + os2*) + case $realname in + *_dll.a) + tstripme= + ;; + esac + ;; + esac + if test -n "$tstripme" && test -n "$striplib"; then + func_show_eval "$striplib $destdir/$realname" 'exit $?' + fi + + if test "$#" -gt 0; then + # Delete the old symlinks, and create new ones. + # Try 'ln -sf' first, because the 'ln' binary might depend on + # the symlink we replace! Solaris /bin/ln does not understand -f, + # so we also need to try rm && ln -s. + for linkname + do + test "$linkname" != "$realname" \ + && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" + done + fi + + # Do each command in the postinstall commands. + lib=$destdir/$realname + func_execute_cmds "$postinstall_cmds" 'exit $?' + fi + + # Install the pseudo-library for information purposes. + func_basename "$file" + name=$func_basename_result + instname=$dir/${name}i + func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' + + # Maybe install the static library, too. + test -n "$old_library" && func_append staticlibs " $dir/$old_library" + ;; + + *.lo) + # Install (i.e. copy) a libtool object. + + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile=$destdir/$destname + else + func_basename "$file" + destfile=$func_basename_result + destfile=$destdir/$destfile + fi + + # Deduce the name of the destination old-style object file. + case $destfile in + *.lo) + func_lo2o "$destfile" + staticdest=$func_lo2o_result + ;; + *.$objext) + staticdest=$destfile + destfile= + ;; + *) + func_fatal_help "cannot copy a libtool object to '$destfile'" + ;; + esac + + # Install the libtool object if requested. + test -n "$destfile" && \ + func_show_eval "$install_prog $file $destfile" 'exit $?' + + # Install the old object if enabled. + if test yes = "$build_old_libs"; then + # Deduce the name of the old-style object file. + func_lo2o "$file" + staticobj=$func_lo2o_result + func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' + fi + exit $EXIT_SUCCESS + ;; + + *) + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile=$destdir/$destname + else + func_basename "$file" + destfile=$func_basename_result + destfile=$destdir/$destfile + fi + + # If the file is missing, and there is a .exe on the end, strip it + # because it is most likely a libtool script we actually want to + # install + stripped_ext= + case $file in + *.exe) + if test ! -f "$file"; then + func_stripname '' '.exe' "$file" + file=$func_stripname_result + stripped_ext=.exe + fi + ;; + esac + + # Do a test to see if this is really a libtool program. + case $host in + *cygwin* | *mingw*) + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + wrapper=$func_ltwrapper_scriptname_result + else + func_stripname '' '.exe' "$file" + wrapper=$func_stripname_result + fi + ;; + *) + wrapper=$file + ;; + esac + if func_ltwrapper_script_p "$wrapper"; then + notinst_deplibs= + relink_command= + + func_source "$wrapper" + + # Check the variables that should have been set. + test -z "$generated_by_libtool_version" && \ + func_fatal_error "invalid libtool wrapper script '$wrapper'" + + finalize=: + for lib in $notinst_deplibs; do + # Check to see that each library is installed. + libdir= + if test -f "$lib"; then + func_source "$lib" + fi + libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` + if test -n "$libdir" && test ! -f "$libfile"; then + func_warning "'$lib' has not been installed in '$libdir'" + finalize=false + fi + done + + relink_command= + func_source "$wrapper" + + outputname= + if test no = "$fast_install" && test -n "$relink_command"; then + $opt_dry_run || { + if $finalize; then + tmpdir=`func_mktempdir` + func_basename "$file$stripped_ext" + file=$func_basename_result + outputname=$tmpdir/$file + # Replace the output file specification. + relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` + + $opt_quiet || { + func_quote_for_expand "$relink_command" + eval "func_echo $func_quote_for_expand_result" + } + if eval "$relink_command"; then : + else + func_error "error: relink '$file' with the above command before installing it" + $opt_dry_run || ${RM}r "$tmpdir" + continue + fi + file=$outputname + else + func_warning "cannot relink '$file'" + fi + } + else + # Install the binary that we compiled earlier. + file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` + fi + fi + + # remove .exe since cygwin /usr/bin/install will append another + # one anyway + case $install_prog,$host in + */usr/bin/install*,*cygwin*) + case $file:$destfile in + *.exe:*.exe) + # this is ok + ;; + *.exe:*) + destfile=$destfile.exe + ;; + *:*.exe) + func_stripname '' '.exe' "$destfile" + destfile=$func_stripname_result + ;; + esac + ;; + esac + func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' + $opt_dry_run || if test -n "$outputname"; then + ${RM}r "$tmpdir" + fi + ;; + esac + done + + for file in $staticlibs; do + func_basename "$file" + name=$func_basename_result + + # Set up the ranlib parameters. + oldlib=$destdir/$name + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + + func_show_eval "$install_prog \$file \$oldlib" 'exit $?' + + if test -n "$stripme" && test -n "$old_striplib"; then + func_show_eval "$old_striplib $tool_oldlib" 'exit $?' + fi + + # Do each command in the postinstall commands. + func_execute_cmds "$old_postinstall_cmds" 'exit $?' + done + + test -n "$future_libdirs" && \ + func_warning "remember to run '$progname --finish$future_libdirs'" + + if test -n "$current_libdirs"; then + # Maybe just do a dry run. + $opt_dry_run && current_libdirs=" -n$current_libdirs" + exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' + else + exit $EXIT_SUCCESS + fi +} + +test install = "$opt_mode" && func_mode_install ${1+"$@"} + + +# func_generate_dlsyms outputname originator pic_p +# Extract symbols from dlprefiles and create ${outputname}S.o with +# a dlpreopen symbol table. +func_generate_dlsyms () +{ + $debug_cmd + + my_outputname=$1 + my_originator=$2 + my_pic_p=${3-false} + my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` + my_dlsyms= + + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + if test -n "$NM" && test -n "$global_symbol_pipe"; then + my_dlsyms=${my_outputname}S.c + else + func_error "not configured to extract global symbols from dlpreopened files" + fi + fi + + if test -n "$my_dlsyms"; then + case $my_dlsyms in + "") ;; + *.c) + # Discover the nlist of each of the dlfiles. + nlist=$output_objdir/$my_outputname.nm + + func_show_eval "$RM $nlist ${nlist}S ${nlist}T" + + # Parse the name list into a source file. + func_verbose "creating $output_objdir/$my_dlsyms" + + $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ +/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ + +#ifdef __cplusplus +extern \"C\" { +#endif + +#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#pragma GCC diagnostic ignored \"-Wstrict-prototypes\" +#endif + +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined __osf__ +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + +/* External symbol declarations for the compiler. */\ +" + + if test yes = "$dlself"; then + func_verbose "generating symbol list for '$output'" + + $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" + + # Add our own program objects to the symbol list. + progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` + for progfile in $progfiles; do + func_to_tool_file "$progfile" func_convert_file_msys_to_w32 + func_verbose "extracting global C symbols from '$func_to_tool_file_result'" + $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" + done + + if test -n "$exclude_expsyms"; then + $opt_dry_run || { + eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + if test -n "$export_symbols_regex"; then + $opt_dry_run || { + eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + export_symbols=$output_objdir/$outputname.exp + $opt_dry_run || { + $RM $export_symbols + eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' + ;; + esac + } + else + $opt_dry_run || { + eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' + ;; + esac + } + fi + fi + + for dlprefile in $dlprefiles; do + func_verbose "extracting global C symbols from '$dlprefile'" + func_basename "$dlprefile" + name=$func_basename_result + case $host in + *cygwin* | *mingw* | *cegcc* ) + # if an import library, we need to obtain dlname + if func_win32_import_lib_p "$dlprefile"; then + func_tr_sh "$dlprefile" + eval "curr_lafile=\$libfile_$func_tr_sh_result" + dlprefile_dlbasename= + if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then + # Use subshell, to avoid clobbering current variable values + dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` + if test -n "$dlprefile_dlname"; then + func_basename "$dlprefile_dlname" + dlprefile_dlbasename=$func_basename_result + else + # no lafile. user explicitly requested -dlpreopen . + $sharedlib_from_linklib_cmd "$dlprefile" + dlprefile_dlbasename=$sharedlib_from_linklib_result + fi + fi + $opt_dry_run || { + if test -n "$dlprefile_dlbasename"; then + eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' + else + func_warning "Could not compute DLL name from $name" + eval '$ECHO ": $name " >> "$nlist"' + fi + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | + $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" + } + else # not an import lib + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + fi + ;; + *) + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + ;; + esac + done + + $opt_dry_run || { + # Make sure we have at least an empty file. + test -f "$nlist" || : > "$nlist" + + if test -n "$exclude_expsyms"; then + $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T + $MV "$nlist"T "$nlist" + fi + + # Try sorting and uniquifying the output. + if $GREP -v "^: " < "$nlist" | + if sort -k 3 /dev/null 2>&1; then + sort -k 3 + else + sort +2 + fi | + uniq > "$nlist"S; then + : + else + $GREP -v "^: " < "$nlist" > "$nlist"S + fi + + if test -f "$nlist"S; then + eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' + else + echo '/* NONE */' >> "$output_objdir/$my_dlsyms" + fi + + func_show_eval '$RM "${nlist}I"' + if test -n "$global_symbol_to_import"; then + eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' + fi + + echo >> "$output_objdir/$my_dlsyms" "\ + +/* The mapping between symbol names and symbols. */ +typedef struct { + const char *name; + void *address; +} lt_dlsymlist; +extern LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[];\ +" + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ +static void lt_syminit(void) +{ + LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; + for (; symbol->name; ++symbol) + {" + $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" + echo >> "$output_objdir/$my_dlsyms" "\ + } +}" + fi + echo >> "$output_objdir/$my_dlsyms" "\ +LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[] = +{ {\"$my_originator\", (void *) 0}," + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ + {\"@INIT@\", (void *) <_syminit}," + fi + + case $need_lib_prefix in + no) + eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + *) + eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + esac + echo >> "$output_objdir/$my_dlsyms" "\ + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt_${my_prefix}_LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif\ +" + } # !$opt_dry_run + + pic_flag_for_symtable= + case "$compile_command " in + *" -static "*) ;; + *) + case $host in + # compiling the symbol table file with pic_flag works around + # a FreeBSD bug that causes programs to crash when -lm is + # linked before any other PIC object. But we must not use + # pic_flag when linking with -static. The problem exists in + # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. + *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) + pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; + *-*-hpux*) + pic_flag_for_symtable=" $pic_flag" ;; + *) + $my_pic_p && pic_flag_for_symtable=" $pic_flag" + ;; + esac + ;; + esac + symtab_cflags= + for arg in $LTCFLAGS; do + case $arg in + -pie | -fpie | -fPIE) ;; + *) func_append symtab_cflags " $arg" ;; + esac + done + + # Now compile the dynamic symbol file. + func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' + + # Clean up the generated files. + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' + + # Transform the symbol file into the correct name. + symfileobj=$output_objdir/${my_outputname}S.$objext + case $host in + *cygwin* | *mingw* | *cegcc* ) + if test -f "$output_objdir/$my_outputname.def"; then + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + else + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + fi + ;; + *) + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + ;; + esac + ;; + *) + func_fatal_error "unknown suffix for '$my_dlsyms'" + ;; + esac + else + # We keep going just in case the user didn't refer to + # lt_preloaded_symbols. The linker will fail if global_symbol_pipe + # really was required. + + # Nullify the symbol file. + compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` + fi +} + +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + +# func_win32_libid arg +# return the library type of file 'arg' +# +# Need a lot of goo to handle *both* DLLs and import libs +# Has to be a shell function in order to 'eat' the argument +# that is supplied when $file_magic_command is called. +# Despite the name, also deal with 64 bit binaries. +func_win32_libid () +{ + $debug_cmd + + win32_libid_type=unknown + win32_fileres=`file -L $1 2>/dev/null` + case $win32_fileres in + *ar\ archive\ import\ library*) # definitely import + win32_libid_type="x86 archive import" + ;; + *ar\ archive*) # could be an import, or static + # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. + if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | + $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then + case $nm_interface in + "MS dumpbin") + if func_cygming_ms_implib_p "$1" || + func_cygming_gnu_implib_p "$1" + then + win32_nmres=import + else + win32_nmres= + fi + ;; + *) + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' + 1,100{ + / I /{ + s|.*|import| + p + q + } + }'` + ;; + esac + case $win32_nmres in + import*) win32_libid_type="x86 archive import";; + *) win32_libid_type="x86 archive static";; + esac + fi + ;; + *DLL*) + win32_libid_type="x86 DLL" + ;; + *executable*) # but shell scripts are "executable" too... + case $win32_fileres in + *MS\ Windows\ PE\ Intel*) + win32_libid_type="x86 DLL" + ;; + esac + ;; + esac + $ECHO "$win32_libid_type" +} + +# func_cygming_dll_for_implib ARG +# +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib () +{ + $debug_cmd + + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` +} + +# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs +# +# The is the core of a fallback implementation of a +# platform-specific function to extract the name of the +# DLL associated with the specified import library LIBNAME. +# +# SECTION_NAME is either .idata$6 or .idata$7, depending +# on the platform and compiler that created the implib. +# +# Echos the name of the DLL associated with the +# specified import library. +func_cygming_dll_for_implib_fallback_core () +{ + $debug_cmd + + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` + $OBJDUMP -s --section "$1" "$2" 2>/dev/null | + $SED '/^Contents of section '"$match_literal"':/{ + # Place marker at beginning of archive member dllname section + s/.*/====MARK====/ + p + d + } + # These lines can sometimes be longer than 43 characters, but + # are always uninteresting + /:[ ]*file format pe[i]\{,1\}-/d + /^In archive [^:]*:/d + # Ensure marker is printed + /^====MARK====/p + # Remove all lines with less than 43 characters + /^.\{43\}/!d + # From remaining lines, remove first 43 characters + s/^.\{43\}//' | + $SED -n ' + # Join marker and all lines until next marker into a single line + /^====MARK====/ b para + H + $ b para + b + :para + x + s/\n//g + # Remove the marker + s/^====MARK====// + # Remove trailing dots and whitespace + s/[\. \t]*$// + # Print + /./p' | + # we now have a list, one entry per line, of the stringified + # contents of the appropriate section of all members of the + # archive that possess that section. Heuristic: eliminate + # all those that have a first or second character that is + # a '.' (that is, objdump's representation of an unprintable + # character.) This should work for all archives with less than + # 0x302f exports -- but will fail for DLLs whose name actually + # begins with a literal '.' or a single character followed by + # a '.'. + # + # Of those that remain, print the first one. + $SED -e '/^\./d;/^.\./d;q' +} + +# func_cygming_dll_for_implib_fallback ARG +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# +# This fallback implementation is for use when $DLLTOOL +# does not support the --identify-strict option. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib_fallback () +{ + $debug_cmd + + if func_cygming_gnu_implib_p "$1"; then + # binutils import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` + elif func_cygming_ms_implib_p "$1"; then + # ms-generated import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` + else + # unknown + sharedlib_from_linklib_result= + fi +} + + +# func_extract_an_archive dir oldlib +func_extract_an_archive () +{ + $debug_cmd + + f_ex_an_ar_dir=$1; shift + f_ex_an_ar_oldlib=$1 + if test yes = "$lock_old_archive_extraction"; then + lockfile=$f_ex_an_ar_oldlib.lock + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + fi + func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ + 'stat=$?; rm -f "$lockfile"; exit $stat' + if test yes = "$lock_old_archive_extraction"; then + $opt_dry_run || rm -f "$lockfile" + fi + if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then + : + else + func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" + fi +} + + +# func_extract_archives gentop oldlib ... +func_extract_archives () +{ + $debug_cmd + + my_gentop=$1; shift + my_oldlibs=${1+"$@"} + my_oldobjs= + my_xlib= + my_xabs= + my_xdir= + + for my_xlib in $my_oldlibs; do + # Extract the objects. + case $my_xlib in + [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; + *) my_xabs=`pwd`"/$my_xlib" ;; + esac + func_basename "$my_xlib" + my_xlib=$func_basename_result + my_xlib_u=$my_xlib + while :; do + case " $extracted_archives " in + *" $my_xlib_u "*) + func_arith $extracted_serial + 1 + extracted_serial=$func_arith_result + my_xlib_u=lt$extracted_serial-$my_xlib ;; + *) break ;; + esac + done + extracted_archives="$extracted_archives $my_xlib_u" + my_xdir=$my_gentop/$my_xlib_u + + func_mkdir_p "$my_xdir" + + case $host in + *-darwin*) + func_verbose "Extracting $my_xabs" + # Do not bother doing anything if just a dry run + $opt_dry_run || { + darwin_orig_dir=`pwd` + cd $my_xdir || exit $? + darwin_archive=$my_xabs + darwin_curdir=`pwd` + func_basename "$darwin_archive" + darwin_base_archive=$func_basename_result + darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` + if test -n "$darwin_arches"; then + darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` + darwin_arch= + func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" + for darwin_arch in $darwin_arches; do + func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" + $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" + cd "unfat-$$/$darwin_base_archive-$darwin_arch" + func_extract_an_archive "`pwd`" "$darwin_base_archive" + cd "$darwin_curdir" + $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" + done # $darwin_arches + ## Okay now we've a bunch of thin objects, gotta fatten them up :) + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` + darwin_file= + darwin_files= + for darwin_file in $darwin_filelist; do + darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` + $LIPO -create -output "$darwin_file" $darwin_files + done # $darwin_filelist + $RM -rf unfat-$$ + cd "$darwin_orig_dir" + else + cd $darwin_orig_dir + func_extract_an_archive "$my_xdir" "$my_xabs" + fi # $darwin_arches + } # !$opt_dry_run + ;; + *) + func_extract_an_archive "$my_xdir" "$my_xabs" + ;; + esac + my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` + done + + func_extract_archives_result=$my_oldobjs +} + + +# func_emit_wrapper [arg=no] +# +# Emit a libtool wrapper script on stdout. +# Don't directly open a file because we may want to +# incorporate the script contents within a cygwin/mingw +# wrapper executable. Must ONLY be called from within +# func_mode_link because it depends on a number of variables +# set therein. +# +# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR +# variable will take. If 'yes', then the emitted script +# will assume that the directory where it is stored is +# the $objdir directory. This is a cygwin/mingw-specific +# behavior. +func_emit_wrapper () +{ + func_emit_wrapper_arg1=${1-no} + + $ECHO "\ +#! $SHELL + +# $output - temporary wrapper script for $objdir/$outputname +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION +# +# The $output program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='$sed_quote_subst' + +# Be Bourne compatible +if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command=\"$relink_command\" + +# This environment variable determines our operation mode. +if test \"\$libtool_install_magic\" = \"$magic\"; then + # install mode needs the following variables: + generated_by_libtool_version='$macro_version' + notinst_deplibs='$notinst_deplibs' +else + # When we are sourced in execute mode, \$file and \$ECHO are already set. + if test \"\$libtool_execute_magic\" != \"$magic\"; then + file=\"\$0\"" + + qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` + $ECHO "\ + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + ECHO=\"$qECHO\" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string "--lt-" +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's $0 value, followed by "$@". +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=\$0 + shift + for lt_opt + do + case \"\$lt_opt\" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` + test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. + lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` + cat \"\$lt_dump_D/\$lt_dump_F\" + exit 0 + ;; + --lt-*) + \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n \"\$lt_option_debug\"; then + echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" + lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ +" + case $host in + # Backslashes separate directories on plain windows + *-*-mingw | *-*-os2* | *-cegcc*) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} +" + ;; + + *) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir/\$program\" \${1+\"\$@\"} +" + ;; + esac + $ECHO "\ + \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from \$@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case \" \$* \" in + *\\ --lt-*) + for lt_wr_arg + do + case \$lt_wr_arg in + --lt-*) ;; + *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; + esac + shift + done ;; + esac + func_exec_program_core \${1+\"\$@\"} +} + + # Parse options + func_parse_lt_options \"\$0\" \${1+\"\$@\"} + + # Find the directory that this script lives in. + thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` + test \"x\$thisdir\" = \"x\$file\" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` + while test -n \"\$file\"; do + destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` + + # If there was a directory component, then change thisdir. + if test \"x\$destdir\" != \"x\$file\"; then + case \"\$destdir\" in + [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; + *) thisdir=\"\$thisdir/\$destdir\" ;; + esac + fi + + file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` + file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 + if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then + # special case for '.' + if test \"\$thisdir\" = \".\"; then + thisdir=\`pwd\` + fi + # remove .libs from thisdir + case \"\$thisdir\" in + *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; + $objdir ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=\`cd \"\$thisdir\" && pwd\` + test -n \"\$absdir\" && thisdir=\"\$absdir\" +" + + if test yes = "$fast_install"; then + $ECHO "\ + program=lt-'$outputname'$exeext + progdir=\"\$thisdir/$objdir\" + + if test ! -f \"\$progdir/\$program\" || + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ + test \"X\$file\" != \"X\$progdir/\$program\"; }; then + + file=\"\$\$-\$program\" + + if test ! -d \"\$progdir\"; then + $MKDIR \"\$progdir\" + else + $RM \"\$progdir/\$file\" + fi" + + $ECHO "\ + + # relink executable if necessary + if test -n \"\$relink_command\"; then + if relink_command_output=\`eval \$relink_command 2>&1\`; then : + else + \$ECHO \"\$relink_command_output\" >&2 + $RM \"\$progdir/\$file\" + exit 1 + fi + fi + + $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || + { $RM \"\$progdir/\$program\"; + $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } + $RM \"\$progdir/\$file\" + fi" + else + $ECHO "\ + program='$outputname' + progdir=\"\$thisdir/$objdir\" +" + fi + + $ECHO "\ + + if test -f \"\$progdir/\$program\"; then" + + # fixup the dll searchpath if we need to. + # + # Fix the DLL searchpath if we need to. Do this before prepending + # to shlibpath, because on Windows, both are PATH and uninstalled + # libraries must come first. + if test -n "$dllsearchpath"; then + $ECHO "\ + # Add the dll search path components to the executable PATH + PATH=$dllsearchpath:\$PATH +" + fi + + # Export our shlibpath_var if we have one. + if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + $ECHO "\ + # Add our own library path to $shlibpath_var + $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" + + # Some systems cannot cope with colon-terminated $shlibpath_var + # The second colon is a workaround for a bug in BeOS R4 sed + $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` + + export $shlibpath_var +" + fi + + $ECHO "\ + if test \"\$libtool_execute_magic\" != \"$magic\"; then + # Run the actual program with our arguments. + func_exec_program \${1+\"\$@\"} + fi + else + # The program doesn't exist. + \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 + \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 + exit 1 + fi +fi\ +" +} + + +# func_emit_cwrapperexe_src +# emit the source code for a wrapper executable on stdout +# Must ONLY be called from within func_mode_link because +# it depends on a number of variable set therein. +func_emit_cwrapperexe_src () +{ + cat < +#include +#ifdef _MSC_VER +# include +# include +# include +#else +# include +# include +# ifdef __CYGWIN__ +# include +# endif +#endif +#include +#include +#include +#include +#include +#include +#include +#include + +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + +/* declarations of non-ANSI functions */ +#if defined __MINGW32__ +# ifdef __STRICT_ANSI__ +int _putenv (const char *); +# endif +#elif defined __CYGWIN__ +# ifdef __STRICT_ANSI__ +char *realpath (const char *, char *); +int putenv (char *); +int setenv (const char *, const char *, int); +# endif +/* #elif defined other_platform || defined ... */ +#endif + +/* portability defines, excluding path handling macros */ +#if defined _MSC_VER +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +# define S_IXUSR _S_IEXEC +#elif defined __MINGW32__ +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +#elif defined __CYGWIN__ +# define HAVE_SETENV +# define FOPEN_WB "wb" +/* #elif defined other platforms ... */ +#endif + +#if defined PATH_MAX +# define LT_PATHMAX PATH_MAX +#elif defined MAXPATHLEN +# define LT_PATHMAX MAXPATHLEN +#else +# define LT_PATHMAX 1024 +#endif + +#ifndef S_IXOTH +# define S_IXOTH 0 +#endif +#ifndef S_IXGRP +# define S_IXGRP 0 +#endif + +/* path handling portability macros */ +#ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' +# define PATH_SEPARATOR ':' +#endif + +#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ + defined __OS2__ +# define HAVE_DOS_BASED_FILE_SYSTEM +# define FOPEN_WB "wb" +# ifndef DIR_SEPARATOR_2 +# define DIR_SEPARATOR_2 '\\' +# endif +# ifndef PATH_SEPARATOR_2 +# define PATH_SEPARATOR_2 ';' +# endif +#endif + +#ifndef DIR_SEPARATOR_2 +# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) +#else /* DIR_SEPARATOR_2 */ +# define IS_DIR_SEPARATOR(ch) \ + (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) +#endif /* DIR_SEPARATOR_2 */ + +#ifndef PATH_SEPARATOR_2 +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) +#else /* PATH_SEPARATOR_2 */ +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) +#endif /* PATH_SEPARATOR_2 */ + +#ifndef FOPEN_WB +# define FOPEN_WB "w" +#endif +#ifndef _O_BINARY +# define _O_BINARY 0 +#endif + +#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) +#define XFREE(stale) do { \ + if (stale) { free (stale); stale = 0; } \ +} while (0) + +#if defined LT_DEBUGWRAPPER +static int lt_debug = 1; +#else +static int lt_debug = 0; +#endif + +const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ + +void *xmalloc (size_t num); +char *xstrdup (const char *string); +const char *base_name (const char *name); +char *find_executable (const char *wrapper); +char *chase_symlinks (const char *pathspec); +int make_executable (const char *path); +int check_executable (const char *path); +char *strendzap (char *str, const char *pat); +void lt_debugprintf (const char *file, int line, const char *fmt, ...); +void lt_fatal (const char *file, int line, const char *message, ...); +static const char *nonnull (const char *s); +static const char *nonempty (const char *s); +void lt_setenv (const char *name, const char *value); +char *lt_extend_str (const char *orig_value, const char *add, int to_end); +void lt_update_exe_path (const char *name, const char *value); +void lt_update_lib_path (const char *name, const char *value); +char **prepare_spawn (char **argv); +void lt_dump_script (FILE *f); +EOF + + cat <= 0) + && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return 1; + else + return 0; +} + +int +make_executable (const char *path) +{ + int rval = 0; + struct stat st; + + lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", + nonempty (path)); + if ((!path) || (!*path)) + return 0; + + if (stat (path, &st) >= 0) + { + rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); + } + return rval; +} + +/* Searches for the full path of the wrapper. Returns + newly allocated full path name if found, NULL otherwise + Does not chase symlinks, even on platforms that support them. +*/ +char * +find_executable (const char *wrapper) +{ + int has_slash = 0; + const char *p; + const char *p_next; + /* static buffer for getcwd */ + char tmp[LT_PATHMAX + 1]; + size_t tmp_len; + char *concat_name; + + lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", + nonempty (wrapper)); + + if ((wrapper == NULL) || (*wrapper == '\0')) + return NULL; + + /* Absolute path? */ +#if defined HAVE_DOS_BASED_FILE_SYSTEM + if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + else + { +#endif + if (IS_DIR_SEPARATOR (wrapper[0])) + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } +#if defined HAVE_DOS_BASED_FILE_SYSTEM + } +#endif + + for (p = wrapper; *p; p++) + if (*p == '/') + { + has_slash = 1; + break; + } + if (!has_slash) + { + /* no slashes; search PATH */ + const char *path = getenv ("PATH"); + if (path != NULL) + { + for (p = path; *p; p = p_next) + { + const char *q; + size_t p_len; + for (q = p; *q; q++) + if (IS_PATH_SEPARATOR (*q)) + break; + p_len = (size_t) (q - p); + p_next = (*q == '\0' ? q : q + 1); + if (p_len == 0) + { + /* empty path: current directory */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = + XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + } + else + { + concat_name = + XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, p, p_len); + concat_name[p_len] = '/'; + strcpy (concat_name + p_len + 1, wrapper); + } + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + } + /* not found in PATH; assume curdir */ + } + /* Relative path | not found in path: prepend cwd */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + return NULL; +} + +char * +chase_symlinks (const char *pathspec) +{ +#ifndef S_ISLNK + return xstrdup (pathspec); +#else + char buf[LT_PATHMAX]; + struct stat s; + char *tmp_pathspec = xstrdup (pathspec); + char *p; + int has_symlinks = 0; + while (strlen (tmp_pathspec) && !has_symlinks) + { + lt_debugprintf (__FILE__, __LINE__, + "checking path component for symlinks: %s\n", + tmp_pathspec); + if (lstat (tmp_pathspec, &s) == 0) + { + if (S_ISLNK (s.st_mode) != 0) + { + has_symlinks = 1; + break; + } + + /* search backwards for last DIR_SEPARATOR */ + p = tmp_pathspec + strlen (tmp_pathspec) - 1; + while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + p--; + if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + { + /* no more DIR_SEPARATORS left */ + break; + } + *p = '\0'; + } + else + { + lt_fatal (__FILE__, __LINE__, + "error accessing file \"%s\": %s", + tmp_pathspec, nonnull (strerror (errno))); + } + } + XFREE (tmp_pathspec); + + if (!has_symlinks) + { + return xstrdup (pathspec); + } + + tmp_pathspec = realpath (pathspec, buf); + if (tmp_pathspec == 0) + { + lt_fatal (__FILE__, __LINE__, + "could not follow symlinks for %s", pathspec); + } + return xstrdup (tmp_pathspec); +#endif +} + +char * +strendzap (char *str, const char *pat) +{ + size_t len, patlen; + + assert (str != NULL); + assert (pat != NULL); + + len = strlen (str); + patlen = strlen (pat); + + if (patlen <= len) + { + str += len - patlen; + if (STREQ (str, pat)) + *str = '\0'; + } + return str; +} + +void +lt_debugprintf (const char *file, int line, const char *fmt, ...) +{ + va_list args; + if (lt_debug) + { + (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); + va_start (args, fmt); + (void) vfprintf (stderr, fmt, args); + va_end (args); + } +} + +static void +lt_error_core (int exit_status, const char *file, + int line, const char *mode, + const char *message, va_list ap) +{ + fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); + vfprintf (stderr, message, ap); + fprintf (stderr, ".\n"); + + if (exit_status >= 0) + exit (exit_status); +} + +void +lt_fatal (const char *file, int line, const char *message, ...) +{ + va_list ap; + va_start (ap, message); + lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); + va_end (ap); +} + +static const char * +nonnull (const char *s) +{ + return s ? s : "(null)"; +} + +static const char * +nonempty (const char *s) +{ + return (s && !*s) ? "(empty)" : nonnull (s); +} + +void +lt_setenv (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_setenv) setting '%s' to '%s'\n", + nonnull (name), nonnull (value)); + { +#ifdef HAVE_SETENV + /* always make a copy, for consistency with !HAVE_SETENV */ + char *str = xstrdup (value); + setenv (name, str, 1); +#else + size_t len = strlen (name) + 1 + strlen (value) + 1; + char *str = XMALLOC (char, len); + sprintf (str, "%s=%s", name, value); + if (putenv (str) != EXIT_SUCCESS) + { + XFREE (str); + } +#endif + } +} + +char * +lt_extend_str (const char *orig_value, const char *add, int to_end) +{ + char *new_value; + if (orig_value && *orig_value) + { + size_t orig_value_len = strlen (orig_value); + size_t add_len = strlen (add); + new_value = XMALLOC (char, add_len + orig_value_len + 1); + if (to_end) + { + strcpy (new_value, orig_value); + strcpy (new_value + orig_value_len, add); + } + else + { + strcpy (new_value, add); + strcpy (new_value + add_len, orig_value); + } + } + else + { + new_value = xstrdup (add); + } + return new_value; +} + +void +lt_update_exe_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + /* some systems can't cope with a ':'-terminated path #' */ + size_t len = strlen (new_value); + while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) + { + new_value[--len] = '\0'; + } + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +void +lt_update_lib_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +EOF + case $host_os in + mingw*) + cat <<"EOF" + +/* Prepares an argument vector before calling spawn(). + Note that spawn() does not by itself call the command interpreter + (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : + ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); + GetVersionEx(&v); + v.dwPlatformId == VER_PLATFORM_WIN32_NT; + }) ? "cmd.exe" : "command.com"). + Instead it simply concatenates the arguments, separated by ' ', and calls + CreateProcess(). We must quote the arguments since Win32 CreateProcess() + interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a + special way: + - Space and tab are interpreted as delimiters. They are not treated as + delimiters if they are surrounded by double quotes: "...". + - Unescaped double quotes are removed from the input. Their only effect is + that within double quotes, space and tab are treated like normal + characters. + - Backslashes not followed by double quotes are not special. + - But 2*n+1 backslashes followed by a double quote become + n backslashes followed by a double quote (n >= 0): + \" -> " + \\\" -> \" + \\\\\" -> \\" + */ +#define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +#define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +char ** +prepare_spawn (char **argv) +{ + size_t argc; + char **new_argv; + size_t i; + + /* Count number of arguments. */ + for (argc = 0; argv[argc] != NULL; argc++) + ; + + /* Allocate new argument vector. */ + new_argv = XMALLOC (char *, argc + 1); + + /* Put quoted arguments into the new argument vector. */ + for (i = 0; i < argc; i++) + { + const char *string = argv[i]; + + if (string[0] == '\0') + new_argv[i] = xstrdup ("\"\""); + else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) + { + int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); + size_t length; + unsigned int backslashes; + const char *s; + char *quoted_string; + char *p; + + length = 0; + backslashes = 0; + if (quote_around) + length++; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + length += backslashes + 1; + length++; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + length += backslashes + 1; + + quoted_string = XMALLOC (char, length + 1); + + p = quoted_string; + backslashes = 0; + if (quote_around) + *p++ = '"'; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + { + unsigned int j; + for (j = backslashes + 1; j > 0; j--) + *p++ = '\\'; + } + *p++ = c; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + { + unsigned int j; + for (j = backslashes; j > 0; j--) + *p++ = '\\'; + *p++ = '"'; + } + *p = '\0'; + + new_argv[i] = quoted_string; + } + else + new_argv[i] = (char *) string; + } + new_argv[argc] = NULL; + + return new_argv; +} +EOF + ;; + esac + + cat <<"EOF" +void lt_dump_script (FILE* f) +{ +EOF + func_emit_wrapper yes | + $SED -n -e ' +s/^\(.\{79\}\)\(..*\)/\1\ +\2/ +h +s/\([\\"]\)/\\\1/g +s/$/\\n/ +s/\([^\n]*\).*/ fputs ("\1", f);/p +g +D' + cat <<"EOF" +} +EOF +} +# end: func_emit_cwrapperexe_src + +# func_win32_import_lib_p ARG +# True if ARG is an import lib, as indicated by $file_magic_cmd +func_win32_import_lib_p () +{ + $debug_cmd + + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in + *import*) : ;; + *) false ;; + esac +} + +# func_suncc_cstd_abi +# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! +# Several compiler flags select an ABI that is incompatible with the +# Cstd library. Avoid specifying it if any are in CXXFLAGS. +func_suncc_cstd_abi () +{ + $debug_cmd + + case " $compile_command " in + *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) + suncc_use_cstd_abi=no + ;; + *) + suncc_use_cstd_abi=yes + ;; + esac +} + +# func_mode_link arg... +func_mode_link () +{ + $debug_cmd + + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + # It is impossible to link a dll without this setting, and + # we shouldn't force the makefile maintainer to figure out + # what system we are compiling for in order to pass an extra + # flag for every libtool invocation. + # allow_undefined=no + + # FIXME: Unfortunately, there are problems with the above when trying + # to make a dll that has undefined symbols, in which case not + # even a static library is built. For now, we need to specify + # -no-undefined on the libtool link line when we can be certain + # that all symbols are satisfied, otherwise we get a static library. + allow_undefined=yes + ;; + *) + allow_undefined=yes + ;; + esac + libtool_args=$nonopt + base_compile="$nonopt $@" + compile_command=$nonopt + finalize_command=$nonopt + + compile_rpath= + finalize_rpath= + compile_shlibpath= + finalize_shlibpath= + convenience= + old_convenience= + deplibs= + old_deplibs= + compiler_flags= + linker_flags= + dllsearchpath= + lib_search_path=`pwd` + inst_prefix_dir= + new_inherited_linker_flags= + + avoid_version=no + bindir= + dlfiles= + dlprefiles= + dlself=no + export_dynamic=no + export_symbols= + export_symbols_regex= + generated= + libobjs= + ltlibs= + module=no + no_install=no + objs= + os2dllname= + non_pic_objects= + precious_files_regex= + prefer_static_libs=no + preload=false + prev= + prevarg= + release= + rpath= + xrpath= + perm_rpath= + temp_rpath= + thread_safe=no + vinfo= + vinfo_number=no + weak_libs= + single_module=$wl-single_module + func_infer_tag $base_compile + + # We need to know -static, to get the right output filenames. + for arg + do + case $arg in + -shared) + test yes != "$build_libtool_libs" \ + && func_fatal_configuration "cannot build a shared library" + build_old_libs=no + break + ;; + -all-static | -static | -static-libtool-libs) + case $arg in + -all-static) + if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then + func_warning "complete static linking is impossible in this configuration" + fi + if test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + -static) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=built + ;; + -static-libtool-libs) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + esac + build_libtool_libs=no + build_old_libs=yes + break + ;; + esac + done + + # See if our shared archives depend on static archives. + test -n "$old_archive_from_new_cmds" && build_old_libs=yes + + # Go through the arguments, transforming them on the way. + while test "$#" -gt 0; do + arg=$1 + shift + func_quote_for_eval "$arg" + qarg=$func_quote_for_eval_unquoted_result + func_append libtool_args " $func_quote_for_eval_result" + + # If the previous option needs an argument, assign it. + if test -n "$prev"; then + case $prev in + output) + func_append compile_command " @OUTPUT@" + func_append finalize_command " @OUTPUT@" + ;; + esac + + case $prev in + bindir) + bindir=$arg + prev= + continue + ;; + dlfiles|dlprefiles) + $preload || { + # Add the symbol object into the linking commands. + func_append compile_command " @SYMFILE@" + func_append finalize_command " @SYMFILE@" + preload=: + } + case $arg in + *.la | *.lo) ;; # We handle these cases below. + force) + if test no = "$dlself"; then + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + self) + if test dlprefiles = "$prev"; then + dlself=yes + elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then + dlself=yes + else + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + *) + if test dlfiles = "$prev"; then + func_append dlfiles " $arg" + else + func_append dlprefiles " $arg" + fi + prev= + continue + ;; + esac + ;; + expsyms) + export_symbols=$arg + test -f "$arg" \ + || func_fatal_error "symbol file '$arg' does not exist" + prev= + continue + ;; + expsyms_regex) + export_symbols_regex=$arg + prev= + continue + ;; + framework) + case $host in + *-*-darwin*) + case "$deplibs " in + *" $qarg.ltframework "*) ;; + *) func_append deplibs " $qarg.ltframework" # this is fixed later + ;; + esac + ;; + esac + prev= + continue + ;; + inst_prefix) + inst_prefix_dir=$arg + prev= + continue + ;; + mllvm) + # Clang does not use LLVM to link, so we can simply discard any + # '-mllvm $arg' options when doing the link step. + prev= + continue + ;; + objectlist) + if test -f "$arg"; then + save_arg=$arg + moreargs= + for fil in `cat "$save_arg"` + do +# func_append moreargs " $fil" + arg=$fil + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir=$func_dirname_result + + if test none != "$pic_object"; then + # Prepend the subdirectory the object is found in. + pic_object=$xdir$pic_object + + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test dlprefiles = "$prev"; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg=$pic_object + fi + + # Non-PIC object. + if test none != "$non_pic_object"; then + # Prepend the subdirectory the object is found in. + non_pic_object=$xdir$non_pic_object + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object=$pic_object + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir=$func_dirname_result + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "'$arg' is not a valid libtool object" + fi + fi + done + else + func_fatal_error "link input file '$arg' does not exist" + fi + arg=$save_arg + prev= + continue + ;; + os2dllname) + os2dllname=$arg + prev= + continue + ;; + precious_regex) + precious_files_regex=$arg + prev= + continue + ;; + release) + release=-$arg + prev= + continue + ;; + rpath | xrpath) + # We need an absolute path. + case $arg in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + if test rpath = "$prev"; then + case "$rpath " in + *" $arg "*) ;; + *) func_append rpath " $arg" ;; + esac + else + case "$xrpath " in + *" $arg "*) ;; + *) func_append xrpath " $arg" ;; + esac + fi + prev= + continue + ;; + shrext) + shrext_cmds=$arg + prev= + continue + ;; + weak) + func_append weak_libs " $arg" + prev= + continue + ;; + xcclinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xcompiler) + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xlinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $wl$qarg" + prev= + func_append compile_command " $wl$qarg" + func_append finalize_command " $wl$qarg" + continue + ;; + *) + eval "$prev=\"\$arg\"" + prev= + continue + ;; + esac + fi # test -n "$prev" + + prevarg=$arg + + case $arg in + -all-static) + if test -n "$link_static_flag"; then + # See comment for -static flag below, for more details. + func_append compile_command " $link_static_flag" + func_append finalize_command " $link_static_flag" + fi + continue + ;; + + -allow-undefined) + # FIXME: remove this flag sometime in the future. + func_fatal_error "'-allow-undefined' must not be used because it is the default" + ;; + + -avoid-version) + avoid_version=yes + continue + ;; + + -bindir) + prev=bindir + continue + ;; + + -dlopen) + prev=dlfiles + continue + ;; + + -dlpreopen) + prev=dlprefiles + continue + ;; + + -export-dynamic) + export_dynamic=yes + continue + ;; + + -export-symbols | -export-symbols-regex) + if test -n "$export_symbols" || test -n "$export_symbols_regex"; then + func_fatal_error "more than one -exported-symbols argument is not allowed" + fi + if test X-export-symbols = "X$arg"; then + prev=expsyms + else + prev=expsyms_regex + fi + continue + ;; + + -framework) + prev=framework + continue + ;; + + -inst-prefix-dir) + prev=inst_prefix + continue + ;; + + # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* + # so, if we see these flags be careful not to treat them like -L + -L[A-Z][A-Z]*:*) + case $with_gcc/$host in + no/*-*-irix* | /*-*-irix*) + func_append compile_command " $arg" + func_append finalize_command " $arg" + ;; + esac + continue + ;; + + -L*) + func_stripname "-L" '' "$arg" + if test -z "$func_stripname_result"; then + if test "$#" -gt 0; then + func_fatal_error "require no space between '-L' and '$1'" + else + func_fatal_error "need path for '-L' option" + fi + fi + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + absdir=`cd "$dir" && pwd` + test -z "$absdir" && \ + func_fatal_error "cannot determine absolute directory name of '$dir'" + dir=$absdir + ;; + esac + case "$deplibs " in + *" -L$dir "* | *" $arg "*) + # Will only happen for absolute or sysroot arguments + ;; + *) + # Preserve sysroot, but never include relative directories + case $dir in + [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; + *) func_append deplibs " -L$dir" ;; + esac + func_append lib_search_path " $dir" + ;; + esac + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$dir:"*) ;; + ::) dllsearchpath=$dir;; + *) func_append dllsearchpath ":$dir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + continue + ;; + + -l*) + if test X-lc = "X$arg" || test X-lm = "X$arg"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) + # These systems don't actually have a C or math library (as such) + continue + ;; + *-*-os2*) + # These systems don't actually have a C library (as such) + test X-lc = "X$arg" && continue + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) + # Do not include libc due to us having libc/libc_r. + test X-lc = "X$arg" && continue + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C and math libraries are in the System framework + func_append deplibs " System.ltframework" + continue + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + test X-lc = "X$arg" && continue + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + test X-lc = "X$arg" && continue + ;; + esac + elif test X-lc_r = "X$arg"; then + case $host in + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) + # Do not include libc_r directly, use -pthread flag. + continue + ;; + esac + fi + func_append deplibs " $arg" + continue + ;; + + -mllvm) + prev=mllvm + continue + ;; + + -module) + module=yes + continue + ;; + + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + # Darwin uses the -arch flag to determine output architecture. + -model|-arch|-isysroot|--sysroot) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + prev=xcompiler + continue + ;; + + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case "$new_inherited_linker_flags " in + *" $arg "*) ;; + * ) func_append new_inherited_linker_flags " $arg" ;; + esac + continue + ;; + + -multi_module) + single_module=$wl-multi_module + continue + ;; + + -no-fast-install) + fast_install=no + continue + ;; + + -no-install) + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) + # The PATH hackery in wrapper scripts is required on Windows + # and Darwin in order for the loader to find any dlls it needs. + func_warning "'-no-install' is ignored for $host" + func_warning "assuming '-no-fast-install' instead" + fast_install=no + ;; + *) no_install=yes ;; + esac + continue + ;; + + -no-undefined) + allow_undefined=no + continue + ;; + + -objectlist) + prev=objectlist + continue + ;; + + -os2dllname) + prev=os2dllname + continue + ;; + + -o) prev=output ;; + + -precious-files-regex) + prev=precious_regex + continue + ;; + + -release) + prev=release + continue + ;; + + -rpath) + prev=rpath + continue + ;; + + -R) + prev=xrpath + continue + ;; + + -R*) + func_stripname '-R' '' "$arg" + dir=$func_stripname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + =*) + func_stripname '=' '' "$dir" + dir=$lt_sysroot$func_stripname_result + ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + continue + ;; + + -shared) + # The effects of -shared are defined in a previous loop. + continue + ;; + + -shrext) + prev=shrext + continue + ;; + + -static | -static-libtool-libs) + # The effects of -static are defined in a previous loop. + # We used to do the same as -all-static on platforms that + # didn't have a PIC flag, but the assumption that the effects + # would be equivalent was wrong. It would break on at least + # Digital Unix and AIX. + continue + ;; + + -thread-safe) + thread_safe=yes + continue + ;; + + -version-info) + prev=vinfo + continue + ;; + + -version-number) + prev=vinfo + vinfo_number=yes + continue + ;; + + -weak) + prev=weak + continue + ;; + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs=$IFS; IFS=, + for flag in $args; do + IFS=$save_ifs + func_quote_for_eval "$flag" + func_append arg " $func_quote_for_eval_result" + func_append compiler_flags " $func_quote_for_eval_result" + done + IFS=$save_ifs + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Wl,*) + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs=$IFS; IFS=, + for flag in $args; do + IFS=$save_ifs + func_quote_for_eval "$flag" + func_append arg " $wl$func_quote_for_eval_result" + func_append compiler_flags " $wl$func_quote_for_eval_result" + func_append linker_flags " $func_quote_for_eval_result" + done + IFS=$save_ifs + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Xcompiler) + prev=xcompiler + continue + ;; + + -Xlinker) + prev=xlinker + continue + ;; + + -XCClinker) + prev=xcclinker + continue + ;; + + # -msg_* for osf cc + -msg_*) + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + ;; + + # Flags to be passed through unchanged, with rationale: + # -64, -mips[0-9] enable 64-bit mode for the SGI compiler + # -r[0-9][0-9]* specify processor for the SGI compiler + # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler + # +DA*, +DD* enable 64-bit mode for the HP compiler + # -q* compiler args for the IBM compiler + # -m*, -t[45]*, -txscale* architecture-specific flags for GCC + # -F/path path to uninstalled frameworks, gcc on darwin + # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # -fstack-protector* stack protector flags for GCC + # @file GCC response files + # -tp=* Portland pgcc target processor selection + # --sysroot=* for sysroot support + # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -specs=* GCC specs files + # -stdlib=* select c++ std lib with clang + # -fsanitize=* Clang/GCC memory and address sanitizer + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ + -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ + -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ + -specs=*|-fsanitize=*) + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + func_append compile_command " $arg" + func_append finalize_command " $arg" + func_append compiler_flags " $arg" + continue + ;; + + -Z*) + if test os2 = "`expr $host : '.*\(os2\)'`"; then + # OS/2 uses -Zxxx to specify OS/2-specific options + compiler_flags="$compiler_flags $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case $arg in + -Zlinker | -Zstack) + prev=xcompiler + ;; + esac + continue + else + # Otherwise treat like 'Some other compiler flag' below + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + fi + ;; + + # Some other compiler flag. + -* | +*) + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + ;; + + *.$objext) + # A standard object. + func_append objs " $arg" + ;; + + *.lo) + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir=$func_dirname_result + + test none = "$pic_object" || { + # Prepend the subdirectory the object is found in. + pic_object=$xdir$pic_object + + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test dlprefiles = "$prev"; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg=$pic_object + } + + # Non-PIC object. + if test none != "$non_pic_object"; then + # Prepend the subdirectory the object is found in. + non_pic_object=$xdir$non_pic_object + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object=$pic_object + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir=$func_dirname_result + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "'$arg' is not a valid libtool object" + fi + fi + ;; + + *.$libext) + # An archive. + func_append deplibs " $arg" + func_append old_deplibs " $arg" + continue + ;; + + *.la) + # A libtool-controlled library. + + func_resolve_sysroot "$arg" + if test dlfiles = "$prev"; then + # This library was specified with -dlopen. + func_append dlfiles " $func_resolve_sysroot_result" + prev= + elif test dlprefiles = "$prev"; then + # The library was specified with -dlpreopen. + func_append dlprefiles " $func_resolve_sysroot_result" + prev= + else + func_append deplibs " $func_resolve_sysroot_result" + fi + continue + ;; + + # Some other compiler argument. + *) + # Unknown arguments in both finalize_command and compile_command need + # to be aesthetically quoted because they are evaled later. + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + ;; + esac # arg + + # Now actually substitute the argument into the commands. + if test -n "$arg"; then + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + done # argument parsing loop + + test -n "$prev" && \ + func_fatal_help "the '$prevarg' option requires an argument" + + if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then + eval arg=\"$export_dynamic_flag_spec\" + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + + oldlibs= + # calculate the name of the file, without its directory + func_basename "$output" + outputname=$func_basename_result + libobjs_save=$libobjs + + if test -n "$shlibpath_var"; then + # get the directories listed in $shlibpath_var + eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` + else + shlib_search_path= + fi + eval sys_lib_search_path=\"$sys_lib_search_path_spec\" + eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + + # Definition is injected by LT_CONFIG during libtool generation. + func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" + + func_dirname "$output" "/" "" + output_objdir=$func_dirname_result$objdir + func_to_tool_file "$output_objdir/" + tool_output_objdir=$func_to_tool_file_result + # Create the object directory. + func_mkdir_p "$output_objdir" + + # Determine the type of output + case $output in + "") + func_fatal_help "you must specify an output file" + ;; + *.$libext) linkmode=oldlib ;; + *.lo | *.$objext) linkmode=obj ;; + *.la) linkmode=lib ;; + *) linkmode=prog ;; # Anything else should be a program. + esac + + specialdeplibs= + + libs= + # Find all interdependent deplibs by searching for libraries + # that are linked more than once (e.g. -la -lb -la) + for deplib in $deplibs; do + if $opt_preserve_dup_deps; then + case "$libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append libs " $deplib" + done + + if test lib = "$linkmode"; then + libs="$predeps $libs $compiler_lib_search_path $postdeps" + + # Compute libraries that are listed more than once in $predeps + # $postdeps and mark them as special (i.e., whose duplicates are + # not to be eliminated). + pre_post_deps= + if $opt_duplicate_compiler_generated_deps; then + for pre_post_dep in $predeps $postdeps; do + case "$pre_post_deps " in + *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; + esac + func_append pre_post_deps " $pre_post_dep" + done + fi + pre_post_deps= + fi + + deplibs= + newdependency_libs= + newlib_search_path= + need_relink=no # whether we're linking any uninstalled libtool libraries + notinst_deplibs= # not-installed libtool libraries + notinst_path= # paths that contain not-installed libtool libraries + + case $linkmode in + lib) + passes="conv dlpreopen link" + for file in $dlfiles $dlprefiles; do + case $file in + *.la) ;; + *) + func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" + ;; + esac + done + ;; + prog) + compile_deplibs= + finalize_deplibs= + alldeplibs=false + newdlfiles= + newdlprefiles= + passes="conv scan dlopen dlpreopen link" + ;; + *) passes="conv" + ;; + esac + + for pass in $passes; do + # The preopen pass in lib mode reverses $deplibs; put it back here + # so that -L comes before libs that need it for instance... + if test lib,link = "$linkmode,$pass"; then + ## FIXME: Find the place where the list is rebuilt in the wrong + ## order, and fix it there properly + tmp_deplibs= + for deplib in $deplibs; do + tmp_deplibs="$deplib $tmp_deplibs" + done + deplibs=$tmp_deplibs + fi + + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass"; then + libs=$deplibs + deplibs= + fi + if test prog = "$linkmode"; then + case $pass in + dlopen) libs=$dlfiles ;; + dlpreopen) libs=$dlprefiles ;; + link) + libs="$deplibs %DEPLIBS%" + test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" + ;; + esac + fi + if test lib,dlpreopen = "$linkmode,$pass"; then + # Collect and forward deplibs of preopened libtool libs + for lib in $dlprefiles; do + # Ignore non-libtool-libs + dependency_libs= + func_resolve_sysroot "$lib" + case $lib in + *.la) func_source "$func_resolve_sysroot_result" ;; + esac + + # Collect preopened libtool deplibs, except any this library + # has declared as weak libs + for deplib in $dependency_libs; do + func_basename "$deplib" + deplib_base=$func_basename_result + case " $weak_libs " in + *" $deplib_base "*) ;; + *) func_append deplibs " $deplib" ;; + esac + done + done + libs=$dlprefiles + fi + if test dlopen = "$pass"; then + # Collect dlpreopened libraries + save_deplibs=$deplibs + deplibs= + fi + + for deplib in $libs; do + lib= + found=false + case $deplib in + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append compiler_flags " $deplib" + if test lib = "$linkmode"; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -l*) + if test lib != "$linkmode" && test prog != "$linkmode"; then + func_warning "'-l' is ignored for archives/objects" + continue + fi + func_stripname '-l' '' "$deplib" + name=$func_stripname_result + if test lib = "$linkmode"; then + searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" + else + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do + for search_ext in .la $std_shrext .so .a; do + # Search the libtool library + lib=$searchdir/lib$name$search_ext + if test -f "$lib"; then + if test .la = "$search_ext"; then + found=: + else + found=false + fi + break 2 + fi + done + done + if $found; then + # deplib is a libtool library + # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, + # We need to do some special things here, and not later. + if test yes = "$allow_libtool_libs_with_static_runtimes"; then + case " $predeps $postdeps " in + *" $deplib "*) + if func_lalib_p "$lib"; then + library_names= + old_library= + func_source "$lib" + for l in $old_library $library_names; do + ll=$l + done + if test "X$ll" = "X$old_library"; then # only static version available + found=false + func_dirname "$lib" "" "." + ladir=$func_dirname_result + lib=$ladir/$old_library + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + fi + ;; + *) ;; + esac + fi + else + # deplib doesn't seem to be a libtool library + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + ;; # -l + *.ltframework) + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + if test lib = "$linkmode"; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -L*) + case $linkmode in + lib) + deplibs="$deplib $deplibs" + test conv = "$pass" && continue + newdependency_libs="$deplib $newdependency_libs" + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + prog) + if test conv = "$pass"; then + deplibs="$deplib $deplibs" + continue + fi + if test scan = "$pass"; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + *) + func_warning "'-L' is ignored for archives/objects" + ;; + esac # linkmode + continue + ;; # -L + -R*) + if test link = "$pass"; then + func_stripname '-R' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # Make sure the xrpath contains only unique directories. + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + fi + deplibs="$deplib $deplibs" + continue + ;; + *.la) + func_resolve_sysroot "$deplib" + lib=$func_resolve_sysroot_result + ;; + *.$libext) + if test conv = "$pass"; then + deplibs="$deplib $deplibs" + continue + fi + case $linkmode in + lib) + # Linking convenience modules into shared libraries is allowed, + # but linking other static libraries is non-portable. + case " $dlpreconveniencelibs " in + *" $deplib "*) ;; + *) + valid_a_lib=false + case $deplibs_check_method in + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ + | $EGREP "$match_pattern_regex" > /dev/null; then + valid_a_lib=: + fi + ;; + pass_all) + valid_a_lib=: + ;; + esac + if $valid_a_lib; then + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + else + echo + $ECHO "*** Warning: Trying to link with static lib archive $deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because the file extensions .$libext of this argument makes me believe" + echo "*** that it is just a static archive that I should not use here." + fi + ;; + esac + continue + ;; + prog) + if test link != "$pass"; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + continue + ;; + esac # linkmode + ;; # *.$libext + *.lo | *.$objext) + if test conv = "$pass"; then + deplibs="$deplib $deplibs" + elif test prog = "$linkmode"; then + if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then + # If there is no dlopen support or we're linking statically, + # we need to preload. + func_append newdlprefiles " $deplib" + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append newdlfiles " $deplib" + fi + fi + continue + ;; + %DEPLIBS%) + alldeplibs=: + continue + ;; + esac # case $deplib + + $found || test -f "$lib" \ + || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$lib" \ + || func_fatal_error "'$lib' is not a valid libtool archive" + + func_dirname "$lib" "" "." + ladir=$func_dirname_result + + dlname= + dlopen= + dlpreopen= + libdir= + library_names= + old_library= + inherited_linker_flags= + # If the library was installed with an old release of libtool, + # it will not redefine variables installed, or shouldnotlink + installed=yes + shouldnotlink=no + avoidtemprpath= + + + # Read the .la file + func_source "$lib" + + # Convert "-framework foo" to "foo.ltframework" + if test -n "$inherited_linker_flags"; then + tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` + for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do + case " $new_inherited_linker_flags " in + *" $tmp_inherited_linker_flag "*) ;; + *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; + esac + done + fi + dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass" || + { test prog != "$linkmode" && test lib != "$linkmode"; }; then + test -n "$dlopen" && func_append dlfiles " $dlopen" + test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" + fi + + if test conv = "$pass"; then + # Only check for convenience libraries + deplibs="$lib $deplibs" + if test -z "$libdir"; then + if test -z "$old_library"; then + func_fatal_error "cannot find name of link library for '$lib'" + fi + # It is a libtool convenience library, so add in its objects. + func_append convenience " $ladir/$objdir/$old_library" + func_append old_convenience " $ladir/$objdir/$old_library" + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_preserve_dup_deps; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done + elif test prog != "$linkmode" && test lib != "$linkmode"; then + func_fatal_error "'$lib' is not a convenience library" + fi + continue + fi # $pass = conv + + + # Get the name of the library we link against. + linklib= + if test -n "$old_library" && + { test yes = "$prefer_static_libs" || + test built,no = "$prefer_static_libs,$installed"; }; then + linklib=$old_library + else + for l in $old_library $library_names; do + linklib=$l + done + fi + if test -z "$linklib"; then + func_fatal_error "cannot find name of link library for '$lib'" + fi + + # This library was specified with -dlopen. + if test dlopen = "$pass"; then + test -z "$libdir" \ + && func_fatal_error "cannot -dlopen a convenience library: '$lib'" + if test -z "$dlname" || + test yes != "$dlopen_support" || + test no = "$build_libtool_libs" + then + # If there is no dlname, no dlopen support or we're linking + # statically, we need to preload. We also need to preload any + # dependent libraries so libltdl's deplib preloader doesn't + # bomb out in the load deplibs phase. + func_append dlprefiles " $lib $dependency_libs" + else + func_append newdlfiles " $lib" + fi + continue + fi # $pass = dlopen + + # We need an absolute path. + case $ladir in + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; + *) + abs_ladir=`cd "$ladir" && pwd` + if test -z "$abs_ladir"; then + func_warning "cannot determine absolute directory name of '$ladir'" + func_warning "passing it literally to the linker, although it might fail" + abs_ladir=$ladir + fi + ;; + esac + func_basename "$lib" + laname=$func_basename_result + + # Find the relevant object directory and library name. + if test yes = "$installed"; then + if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then + func_warning "library '$lib' was moved." + dir=$ladir + absdir=$abs_ladir + libdir=$abs_ladir + else + dir=$lt_sysroot$libdir + absdir=$lt_sysroot$libdir + fi + test yes = "$hardcode_automatic" && avoidtemprpath=yes + else + if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then + dir=$ladir + absdir=$abs_ladir + # Remove this search path later + func_append notinst_path " $abs_ladir" + else + dir=$ladir/$objdir + absdir=$abs_ladir/$objdir + # Remove this search path later + func_append notinst_path " $abs_ladir" + fi + fi # $installed = yes + func_stripname 'lib' '.la' "$laname" + name=$func_stripname_result + + # This library was specified with -dlpreopen. + if test dlpreopen = "$pass"; then + if test -z "$libdir" && test prog = "$linkmode"; then + func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" + fi + case $host in + # special handling for platforms with PE-DLLs. + *cygwin* | *mingw* | *cegcc* ) + # Linker will automatically link against shared library if both + # static and shared are present. Therefore, ensure we extract + # symbols from the import library if a shared library is present + # (otherwise, the dlopen module name will be incorrect). We do + # this by putting the import library name into $newdlprefiles. + # We recover the dlopen module name by 'saving' the la file + # name in a special purpose variable, and (later) extracting the + # dlname from the la file. + if test -n "$dlname"; then + func_tr_sh "$dir/$linklib" + eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" + func_append newdlprefiles " $dir/$linklib" + else + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + fi + ;; + * ) + # Prefer using a static library (so that no silly _DYNAMIC symbols + # are required to link). + if test -n "$old_library"; then + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + # Otherwise, use the dlname, so that lt_dlopen finds it. + elif test -n "$dlname"; then + func_append newdlprefiles " $dir/$dlname" + else + func_append newdlprefiles " $dir/$linklib" + fi + ;; + esac + fi # $pass = dlpreopen + + if test -z "$libdir"; then + # Link the convenience library + if test lib = "$linkmode"; then + deplibs="$dir/$old_library $deplibs" + elif test prog,link = "$linkmode,$pass"; then + compile_deplibs="$dir/$old_library $compile_deplibs" + finalize_deplibs="$dir/$old_library $finalize_deplibs" + else + deplibs="$lib $deplibs" # used for prog,scan pass + fi + continue + fi + + + if test prog = "$linkmode" && test link != "$pass"; then + func_append newlib_search_path " $ladir" + deplibs="$lib $deplibs" + + linkalldeplibs=false + if test no != "$link_all_deplibs" || test -z "$library_names" || + test no = "$build_libtool_libs"; then + linkalldeplibs=: + fi + + tmp_libs= + for deplib in $dependency_libs; do + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + esac + # Need to link against all dependency_libs? + if $linkalldeplibs; then + deplibs="$deplib $deplibs" + else + # Need to hardcode shared library paths + # or/and link against static libraries + newdependency_libs="$deplib $newdependency_libs" + fi + if $opt_preserve_dup_deps; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done # for deplib + continue + fi # $linkmode = prog... + + if test prog,link = "$linkmode,$pass"; then + if test -n "$library_names" && + { { test no = "$prefer_static_libs" || + test built,yes = "$prefer_static_libs,$installed"; } || + test -z "$old_library"; }; then + # We need to hardcode the library path + if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then + # Make sure the rpath contains only unique directories. + case $temp_rpath: in + *"$absdir:"*) ;; + *) func_append temp_rpath "$absdir:" ;; + esac + fi + + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi # $linkmode,$pass = prog,link... + + if $alldeplibs && + { test pass_all = "$deplibs_check_method" || + { test yes = "$build_libtool_libs" && + test -n "$library_names"; }; }; then + # We only need to search for static libraries + continue + fi + fi + + link_static=no # Whether the deplib will be linked statically + use_static_libs=$prefer_static_libs + if test built = "$use_static_libs" && test yes = "$installed"; then + use_static_libs=no + fi + if test -n "$library_names" && + { test no = "$use_static_libs" || test -z "$old_library"; }; then + case $host in + *cygwin* | *mingw* | *cegcc* | *os2*) + # No point in relinking DLLs because paths are not encoded + func_append notinst_deplibs " $lib" + need_relink=no + ;; + *) + if test no = "$installed"; then + func_append notinst_deplibs " $lib" + need_relink=yes + fi + ;; + esac + # This is a shared library + + # Warn about portability, can't link against -module's on some + # systems (darwin). Don't bleat about dlopened modules though! + dlopenmodule= + for dlpremoduletest in $dlprefiles; do + if test "X$dlpremoduletest" = "X$lib"; then + dlopenmodule=$dlpremoduletest + break + fi + done + if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then + echo + if test prog = "$linkmode"; then + $ECHO "*** Warning: Linking the executable $output against the loadable module" + else + $ECHO "*** Warning: Linking the shared library $output against the loadable module" + fi + $ECHO "*** $linklib is not portable!" + fi + if test lib = "$linkmode" && + test yes = "$hardcode_into_libs"; then + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi + + if test -n "$old_archive_from_expsyms_cmds"; then + # figure out the soname + set dummy $library_names + shift + realname=$1 + shift + libname=`eval "\\$ECHO \"$libname_spec\""` + # use dlname if we got it. it's perfectly good, no? + if test -n "$dlname"; then + soname=$dlname + elif test -n "$soname_spec"; then + # bleh windows + case $host in + *cygwin* | mingw* | *cegcc* | *os2*) + func_arith $current - $age + major=$func_arith_result + versuffix=-$major + ;; + esac + eval soname=\"$soname_spec\" + else + soname=$realname + fi + + # Make a new name for the extract_expsyms_cmds to use + soroot=$soname + func_basename "$soroot" + soname=$func_basename_result + func_stripname 'lib' '.dll' "$soname" + newlib=libimp-$func_stripname_result.a + + # If the library has no export list, then create one now + if test -f "$output_objdir/$soname-def"; then : + else + func_verbose "extracting exported symbol list from '$soname'" + func_execute_cmds "$extract_expsyms_cmds" 'exit $?' + fi + + # Create $newlib + if test -f "$output_objdir/$newlib"; then :; else + func_verbose "generating import library for '$soname'" + func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' + fi + # make sure the library variables are pointing to the new library + dir=$output_objdir + linklib=$newlib + fi # test -n "$old_archive_from_expsyms_cmds" + + if test prog = "$linkmode" || test relink != "$opt_mode"; then + add_shlibpath= + add_dir= + add= + lib_linked=yes + case $hardcode_action in + immediate | unsupported) + if test no = "$hardcode_direct"; then + add=$dir/$linklib + case $host in + *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; + *-*-sysv4*uw2*) add_dir=-L$dir ;; + *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ + *-*-unixware7*) add_dir=-L$dir ;; + *-*-darwin* ) + # if the lib is a (non-dlopened) module then we cannot + # link against it, someone is ignoring the earlier warnings + if /usr/bin/file -L $add 2> /dev/null | + $GREP ": [^:]* bundle" >/dev/null; then + if test "X$dlopenmodule" != "X$lib"; then + $ECHO "*** Warning: lib $linklib is a module, not a shared library" + if test -z "$old_library"; then + echo + echo "*** And there doesn't seem to be a static archive available" + echo "*** The link will probably fail, sorry" + else + add=$dir/$old_library + fi + elif test -n "$old_library"; then + add=$dir/$old_library + fi + fi + esac + elif test no = "$hardcode_minus_L"; then + case $host in + *-*-sunos*) add_shlibpath=$dir ;; + esac + add_dir=-L$dir + add=-l$name + elif test no = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name + else + lib_linked=no + fi + ;; + relink) + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$dir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$absdir + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name + else + lib_linked=no + fi + ;; + *) lib_linked=no ;; + esac + + if test yes != "$lib_linked"; then + func_fatal_configuration "unsupported hardcode properties" + fi + + if test -n "$add_shlibpath"; then + case :$compile_shlibpath: in + *":$add_shlibpath:"*) ;; + *) func_append compile_shlibpath "$add_shlibpath:" ;; + esac + fi + if test prog = "$linkmode"; then + test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" + test -n "$add" && compile_deplibs="$add $compile_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + if test yes != "$hardcode_direct" && + test yes != "$hardcode_minus_L" && + test yes = "$hardcode_shlibpath_var"; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + fi + fi + fi + + if test prog = "$linkmode" || test relink = "$opt_mode"; then + add_shlibpath= + add_dir= + add= + # Finalize command for both is simple: just hardcode it. + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$libdir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$libdir + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + add=-l$name + elif test yes = "$hardcode_automatic"; then + if test -n "$inst_prefix_dir" && + test -f "$inst_prefix_dir$libdir/$linklib"; then + add=$inst_prefix_dir$libdir/$linklib + else + add=$libdir/$linklib + fi + else + # We cannot seem to hardcode it, guess we'll fake it. + add_dir=-L$libdir + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add=-l$name + fi + + if test prog = "$linkmode"; then + test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" + test -n "$add" && finalize_deplibs="$add $finalize_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + fi + fi + elif test prog = "$linkmode"; then + # Here we assume that one of hardcode_direct or hardcode_minus_L + # is not unsupported. This is valid on all known static and + # shared platforms. + if test unsupported != "$hardcode_direct"; then + test -n "$old_library" && linklib=$old_library + compile_deplibs="$dir/$linklib $compile_deplibs" + finalize_deplibs="$dir/$linklib $finalize_deplibs" + else + compile_deplibs="-l$name -L$dir $compile_deplibs" + finalize_deplibs="-l$name -L$dir $finalize_deplibs" + fi + elif test yes = "$build_libtool_libs"; then + # Not a shared library + if test pass_all != "$deplibs_check_method"; then + # We're trying link a shared library against a static one + # but the system doesn't support it. + + # Just print a warning and add the library to dependency_libs so + # that the program can be linked against the static library. + echo + $ECHO "*** Warning: This system cannot link to static lib archive $lib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have." + if test yes = "$module"; then + echo "*** But as you try to build a module library, libtool will still create " + echo "*** a static module, that should work as long as the dlopening application" + echo "*** is linked with the -dlopen flag to resolve symbols at runtime." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** 'nm' from GNU binutils and a full rebuild may help." + fi + if test no = "$build_old_libs"; then + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + else + deplibs="$dir/$old_library $deplibs" + link_static=yes + fi + fi # link shared/static library? + + if test lib = "$linkmode"; then + if test -n "$dependency_libs" && + { test yes != "$hardcode_into_libs" || + test yes = "$build_old_libs" || + test yes = "$link_static"; }; then + # Extract -R from dependency_libs + temp_deplibs= + for libdir in $dependency_libs; do + case $libdir in + -R*) func_stripname '-R' '' "$libdir" + temp_xrpath=$func_stripname_result + case " $xrpath " in + *" $temp_xrpath "*) ;; + *) func_append xrpath " $temp_xrpath";; + esac;; + *) func_append temp_deplibs " $libdir";; + esac + done + dependency_libs=$temp_deplibs + fi + + func_append newlib_search_path " $absdir" + # Link against this library + test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + # ... and its dependency_libs + tmp_libs= + for deplib in $dependency_libs; do + newdependency_libs="$deplib $newdependency_libs" + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result";; + *) func_resolve_sysroot "$deplib" ;; + esac + if $opt_preserve_dup_deps; then + case "$tmp_libs " in + *" $func_resolve_sysroot_result "*) + func_append specialdeplibs " $func_resolve_sysroot_result" ;; + esac + fi + func_append tmp_libs " $func_resolve_sysroot_result" + done + + if test no != "$link_all_deplibs"; then + # Add the search paths of all dependency libraries + for deplib in $dependency_libs; do + path= + case $deplib in + -L*) path=$deplib ;; + *.la) + func_resolve_sysroot "$deplib" + deplib=$func_resolve_sysroot_result + func_dirname "$deplib" "" "." + dir=$func_dirname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; + *) + absdir=`cd "$dir" && pwd` + if test -z "$absdir"; then + func_warning "cannot determine absolute directory name of '$dir'" + absdir=$dir + fi + ;; + esac + if $GREP "^installed=no" $deplib > /dev/null; then + case $host in + *-*-darwin*) + depdepl= + eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names"; then + for tmp in $deplibrary_names; do + depdepl=$tmp + done + if test -f "$absdir/$objdir/$depdepl"; then + depdepl=$absdir/$objdir/$depdepl + darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -z "$darwin_install_name"; then + darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + fi + func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" + func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" + path= + fi + fi + ;; + *) + path=-L$absdir/$objdir + ;; + esac + else + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + test -z "$libdir" && \ + func_fatal_error "'$deplib' is not a valid libtool archive" + test "$absdir" != "$libdir" && \ + func_warning "'$deplib' seems to be moved" + + path=-L$absdir + fi + ;; + esac + case " $deplibs " in + *" $path "*) ;; + *) deplibs="$path $deplibs" ;; + esac + done + fi # link_all_deplibs != no + fi # linkmode = lib + done # for deplib in $libs + if test link = "$pass"; then + if test prog = "$linkmode"; then + compile_deplibs="$new_inherited_linker_flags $compile_deplibs" + finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" + else + compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + fi + fi + dependency_libs=$newdependency_libs + if test dlpreopen = "$pass"; then + # Link the dlpreopened libraries before other libraries + for deplib in $save_deplibs; do + deplibs="$deplib $deplibs" + done + fi + if test dlopen != "$pass"; then + test conv = "$pass" || { + # Make sure lib_search_path contains only unique directories. + lib_search_path= + for dir in $newlib_search_path; do + case "$lib_search_path " in + *" $dir "*) ;; + *) func_append lib_search_path " $dir" ;; + esac + done + newlib_search_path= + } + + if test prog,link = "$linkmode,$pass"; then + vars="compile_deplibs finalize_deplibs" + else + vars=deplibs + fi + for var in $vars dependency_libs; do + # Add libraries to $var in reverse order + eval tmp_libs=\"\$$var\" + new_libs= + for deplib in $tmp_libs; do + # FIXME: Pedantically, this is the right thing to do, so + # that some nasty dependency loop isn't accidentally + # broken: + #new_libs="$deplib $new_libs" + # Pragmatically, this seems to cause very few problems in + # practice: + case $deplib in + -L*) new_libs="$deplib $new_libs" ;; + -R*) ;; + *) + # And here is the reason: when a library appears more + # than once as an explicit dependence of a library, or + # is implicitly linked in more than once by the + # compiler, it is considered special, and multiple + # occurrences thereof are not removed. Compare this + # with having the same library being listed as a + # dependency of multiple other libraries: in this case, + # we know (pedantically, we assume) the library does not + # need to be listed more than once, so we keep only the + # last copy. This is not always right, but it is rare + # enough that we require users that really mean to play + # such unportable linking tricks to link the library + # using -Wl,-lname, so that libtool does not consider it + # for duplicate removal. + case " $specialdeplibs " in + *" $deplib "*) new_libs="$deplib $new_libs" ;; + *) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs="$deplib $new_libs" ;; + esac + ;; + esac + ;; + esac + done + tmp_libs= + for deplib in $new_libs; do + case $deplib in + -L*) + case " $tmp_libs " in + *" $deplib "*) ;; + *) func_append tmp_libs " $deplib" ;; + esac + ;; + *) func_append tmp_libs " $deplib" ;; + esac + done + eval $var=\"$tmp_libs\" + done # for var + fi + + # Add Sun CC postdeps if required: + test CXX = "$tagname" && { + case $host_os in + linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C++ 5.9 + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + + solaris*) + func_cc_basename "$CC" + case $func_cc_basename_result in + CC* | sunCC*) + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + esac + } + + # Last step: remove runtime libs from dependency_libs + # (they stay in deplibs) + tmp_libs= + for i in $dependency_libs; do + case " $predeps $postdeps $compiler_lib_search_path " in + *" $i "*) + i= + ;; + esac + if test -n "$i"; then + func_append tmp_libs " $i" + fi + done + dependency_libs=$tmp_libs + done # for pass + if test prog = "$linkmode"; then + dlfiles=$newdlfiles + fi + if test prog = "$linkmode" || test lib = "$linkmode"; then + dlprefiles=$newdlprefiles + fi + + case $linkmode in + oldlib) + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for archives" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "'-l' and '-L' are ignored for archives" ;; + esac + + test -n "$rpath" && \ + func_warning "'-rpath' is ignored for archives" + + test -n "$xrpath" && \ + func_warning "'-R' is ignored for archives" + + test -n "$vinfo" && \ + func_warning "'-version-info/-version-number' is ignored for archives" + + test -n "$release" && \ + func_warning "'-release' is ignored for archives" + + test -n "$export_symbols$export_symbols_regex" && \ + func_warning "'-export-symbols' is ignored for archives" + + # Now set the variables for building old libraries. + build_libtool_libs=no + oldlibs=$output + func_append objs "$old_deplibs" + ;; + + lib) + # Make sure we only generate libraries of the form 'libNAME.la'. + case $outputname in + lib*) + func_stripname 'lib' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + ;; + *) + test no = "$module" \ + && func_fatal_help "libtool library '$output' must begin with 'lib'" + + if test no != "$need_lib_prefix"; then + # Add the "lib" prefix for modules if required + func_stripname '' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + else + func_stripname '' '.la' "$outputname" + libname=$func_stripname_result + fi + ;; + esac + + if test -n "$objs"; then + if test pass_all != "$deplibs_check_method"; then + func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" + else + echo + $ECHO "*** Warning: Linking the shared library $output against the non-libtool" + $ECHO "*** objects $objs is not portable!" + func_append libobjs " $objs" + fi + fi + + test no = "$dlself" \ + || func_warning "'-dlopen self' is ignored for libtool libraries" + + set dummy $rpath + shift + test 1 -lt "$#" \ + && func_warning "ignoring multiple '-rpath's for a libtool library" + + install_libdir=$1 + + oldlibs= + if test -z "$rpath"; then + if test yes = "$build_libtool_libs"; then + # Building a libtool convenience library. + # Some compilers have problems with a '.al' extension so + # convenience libraries should have the same extension an + # archive normally would. + oldlibs="$output_objdir/$libname.$libext $oldlibs" + build_libtool_libs=convenience + build_old_libs=yes + fi + + test -n "$vinfo" && \ + func_warning "'-version-info/-version-number' is ignored for convenience libraries" + + test -n "$release" && \ + func_warning "'-release' is ignored for convenience libraries" + else + + # Parse the version information argument. + save_ifs=$IFS; IFS=: + set dummy $vinfo 0 0 0 + shift + IFS=$save_ifs + + test -n "$7" && \ + func_fatal_help "too many parameters to '-version-info'" + + # convert absolute version numbers to libtool ages + # this retains compatibility with .la files and attempts + # to make the code below a bit more comprehensible + + case $vinfo_number in + yes) + number_major=$1 + number_minor=$2 + number_revision=$3 + # + # There are really only two kinds -- those that + # use the current revision as the major version + # and those that subtract age and use age as + # a minor version. But, then there is irix + # that has an extra 1 added just for fun + # + case $version_type in + # correct linux to gnu/linux during the next big refactor + darwin|freebsd-elf|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_revision + ;; + freebsd-aout|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 + ;; + irix|nonstopux) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_minor + lt_irix_increment=no + ;; + *) + func_fatal_configuration "$modename: unknown library version type '$version_type'" + ;; + esac + ;; + no) + current=$1 + revision=$2 + age=$3 + ;; + esac + + # Check that each of the things are valid numbers. + case $current in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "CURRENT '$current' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" + ;; + esac + + case $revision in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "REVISION '$revision' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" + ;; + esac + + case $age in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "AGE '$age' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" + ;; + esac + + if test "$age" -gt "$current"; then + func_error "AGE '$age' is greater than the current interface number '$current'" + func_fatal_error "'$vinfo' is not valid version information" + fi + + # Calculate the version variables. + major= + versuffix= + verstring= + case $version_type in + none) ;; + + darwin) + # Like Linux, but with the current version available in + # verstring for coding it into the library header + func_arith $current - $age + major=.$func_arith_result + versuffix=$major.$age.$revision + # Darwin ld doesn't like 0 for these options... + func_arith $current + 1 + minor_current=$func_arith_result + xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + # On Darwin other compilers + case $CC in + nagfor*) + verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" + ;; + *) + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + esac + ;; + + freebsd-aout) + major=.$current + versuffix=.$current.$revision + ;; + + freebsd-elf) + func_arith $current - $age + major=.$func_arith_result + versuffix=$major.$age.$revision + ;; + + irix | nonstopux) + if test no = "$lt_irix_increment"; then + func_arith $current - $age + else + func_arith $current - $age + 1 + fi + major=$func_arith_result + + case $version_type in + nonstopux) verstring_prefix=nonstopux ;; + *) verstring_prefix=sgi ;; + esac + verstring=$verstring_prefix$major.$revision + + # Add in all the interfaces that we are compatible with. + loop=$revision + while test 0 -ne "$loop"; do + func_arith $revision - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring=$verstring_prefix$major.$iface:$verstring + done + + # Before this point, $major must not contain '.'. + major=.$major + versuffix=$major.$revision + ;; + + linux) # correct to gnu/linux during the next big refactor + func_arith $current - $age + major=.$func_arith_result + versuffix=$major.$age.$revision + ;; + + osf) + func_arith $current - $age + major=.$func_arith_result + versuffix=.$current.$age.$revision + verstring=$current.$age.$revision + + # Add in all the interfaces that we are compatible with. + loop=$age + while test 0 -ne "$loop"; do + func_arith $current - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring=$verstring:$iface.0 + done + + # Make executables depend on our current version. + func_append verstring ":$current.0" + ;; + + qnx) + major=.$current + versuffix=.$current + ;; + + sco) + major=.$current + versuffix=.$current + ;; + + sunos) + major=.$current + versuffix=.$current.$revision + ;; + + windows) + # Use '-' rather than '.', since we only want one + # extension on DOS 8.3 file systems. + func_arith $current - $age + major=$func_arith_result + versuffix=-$major + ;; + + *) + func_fatal_configuration "unknown library version type '$version_type'" + ;; + esac + + # Clear the version info if we defaulted, and they specified a release. + if test -z "$vinfo" && test -n "$release"; then + major= + case $version_type in + darwin) + # we can't check for "0.0" in archive_cmds due to quoting + # problems, so we reset it completely + verstring= + ;; + *) + verstring=0.0 + ;; + esac + if test no = "$need_version"; then + versuffix= + else + versuffix=.0.0 + fi + fi + + # Remove version info from name if versioning should be avoided + if test yes,no = "$avoid_version,$need_version"; then + major= + versuffix= + verstring= + fi + + # Check to see if the archive will have undefined symbols. + if test yes = "$allow_undefined"; then + if test unsupported = "$allow_undefined_flag"; then + if test yes = "$build_old_libs"; then + func_warning "undefined symbols not allowed in $host shared libraries; building static only" + build_libtool_libs=no + else + func_fatal_error "can't build $host shared library unless -no-undefined is specified" + fi + fi + else + # Don't allow undefined symbols. + allow_undefined_flag=$no_undefined_flag + fi + + fi + + func_generate_dlsyms "$libname" "$libname" : + func_append libobjs " $symfileobj" + test " " = "$libobjs" && libobjs= + + if test relink != "$opt_mode"; then + # Remove our outputs, but don't remove object files since they + # may have been created when compiling PIC objects. + removelist= + tempremovelist=`$ECHO "$output_objdir/*"` + for p in $tempremovelist; do + case $p in + *.$objext | *.gcno) + ;; + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) + if test -n "$precious_files_regex"; then + if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 + then + continue + fi + fi + func_append removelist " $p" + ;; + *) ;; + esac + done + test -n "$removelist" && \ + func_show_eval "${RM}r \$removelist" + fi + + # Now set the variables for building old libraries. + if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then + func_append oldlibs " $output_objdir/$libname.$libext" + + # Transform .lo files to .o files. + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` + fi + + # Eliminate all temporary directories. + #for path in $notinst_path; do + # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` + # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` + # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` + #done + + if test -n "$xrpath"; then + # If the user specified any rpath flags, then add them. + temp_xrpath= + for libdir in $xrpath; do + func_replace_sysroot "$libdir" + func_append temp_xrpath " -R$func_replace_sysroot_result" + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then + dependency_libs="$temp_xrpath $dependency_libs" + fi + fi + + # Make sure dlfiles contains only unique files that won't be dlpreopened + old_dlfiles=$dlfiles + dlfiles= + for lib in $old_dlfiles; do + case " $dlprefiles $dlfiles " in + *" $lib "*) ;; + *) func_append dlfiles " $lib" ;; + esac + done + + # Make sure dlprefiles contains only unique files + old_dlprefiles=$dlprefiles + dlprefiles= + for lib in $old_dlprefiles; do + case "$dlprefiles " in + *" $lib "*) ;; + *) func_append dlprefiles " $lib" ;; + esac + done + + if test yes = "$build_libtool_libs"; then + if test -n "$rpath"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) + # these systems don't actually have a c library (as such)! + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C library is in the System framework + func_append deplibs " System.ltframework" + ;; + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test yes = "$build_libtool_need_lc"; then + func_append deplibs " -lc" + fi + ;; + esac + fi + + # Transform deplibs into only deplibs that can be linked in shared. + name_save=$name + libname_save=$libname + release_save=$release + versuffix_save=$versuffix + major_save=$major + # I'm not sure if I'm treating the release correctly. I think + # release should show up in the -l (ie -lgmp5) so we don't want to + # add it in twice. Is that correct? + release= + versuffix= + major= + newdeplibs= + droppeddeps=no + case $deplibs_check_method in + pass_all) + # Don't check for shared/static. Everything works. + # This might be a little naive. We might want to check + # whether the library exists or not. But this is on + # osf3 & osf4 and I'm not really sure... Just + # implementing what was already the behavior. + newdeplibs=$deplibs + ;; + test_compile) + # This code stresses the "libraries are programs" paradigm to its + # limits. Maybe even breaks it. We compile a program, linking it + # against the deplibs as a proxy for the library. Then we can check + # whether they linked in statically or dynamically with ldd. + $opt_dry_run || $RM conftest.c + cat > conftest.c </dev/null` + $nocaseglob + else + potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` + fi + for potent_lib in $potential_libs; do + # Follow soft links. + if ls -lLd "$potent_lib" 2>/dev/null | + $GREP " -> " >/dev/null; then + continue + fi + # The statement above tries to avoid entering an + # endless loop below, in case of cyclic links. + # We might still enter an endless loop, since a link + # loop can be closed while we follow links, + # but so what? + potlib=$potent_lib + while test -h "$potlib" 2>/dev/null; do + potliblink=`ls -ld $potlib | $SED 's/.* -> //'` + case $potliblink in + [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; + *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; + esac + done + if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | + $SED -e 10q | + $EGREP "$file_magic_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib= + break 2 + fi + done + done + fi + if test -n "$a_deplib"; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib"; then + $ECHO "*** with $libname but no candidates were found. (...for file magic test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a file magic. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + for a_deplib in $deplibs; do + case $a_deplib in + -l*) + func_stripname -l '' "$a_deplib" + name=$func_stripname_result + if test yes = "$allow_libtool_libs_with_static_runtimes"; then + case " $predeps $postdeps " in + *" $a_deplib "*) + func_append newdeplibs " $a_deplib" + a_deplib= + ;; + esac + fi + if test -n "$a_deplib"; then + libname=`eval "\\$ECHO \"$libname_spec\""` + for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do + potential_libs=`ls $i/$libname[.-]* 2>/dev/null` + for potent_lib in $potential_libs; do + potlib=$potent_lib # see symlink-check above in file_magic test + if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ + $EGREP "$match_pattern_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib= + break 2 + fi + done + done + fi + if test -n "$a_deplib"; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib"; then + $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a regex pattern. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + none | unknown | *) + newdeplibs= + tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` + if test yes = "$allow_libtool_libs_with_static_runtimes"; then + for i in $predeps $postdeps; do + # can't use Xsed below, because $i might contain '/' + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` + done + fi + case $tmp_deplibs in + *[!\ \ ]*) + echo + if test none = "$deplibs_check_method"; then + echo "*** Warning: inter-library dependencies are not supported in this platform." + else + echo "*** Warning: inter-library dependencies are not known to be supported." + fi + echo "*** All declared inter-library dependencies are being dropped." + droppeddeps=yes + ;; + esac + ;; + esac + versuffix=$versuffix_save + major=$major_save + release=$release_save + libname=$libname_save + name=$name_save + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library with the System framework + newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + if test yes = "$droppeddeps"; then + if test yes = "$module"; then + echo + echo "*** Warning: libtool could not satisfy all declared inter-library" + $ECHO "*** dependencies of module $libname. Therefore, libtool will create" + echo "*** a static module, that should work as long as the dlopening" + echo "*** application is linked with the -dlopen flag." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** 'nm' from GNU binutils and a full rebuild may help." + fi + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + else + echo "*** The inter-library dependencies that have been dropped here will be" + echo "*** automatically added whenever a program is linked with this library" + echo "*** or is declared to -dlopen it." + + if test no = "$allow_undefined"; then + echo + echo "*** Since this library must not contain undefined symbols," + echo "*** because either the platform does not support them or" + echo "*** it was explicitly requested with -no-undefined," + echo "*** libtool will only create a static version of it." + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + fi + fi + # Done checking deplibs! + deplibs=$newdeplibs + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + case $host in + *-*-darwin*) + newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + deplibs=$new_libs + + # All the library-specific variables (install_libdir is set above). + library_names= + old_library= + dlname= + + # Test again, we may have decided not to build it any more + if test yes = "$build_libtool_libs"; then + # Remove $wl instances when linking with ld. + # FIXME: should test the right _cmds variable. + case $archive_cmds in + *\$LD\ *) wl= ;; + esac + if test yes = "$hardcode_into_libs"; then + # Hardcode the library paths + hardcode_libdirs= + dep_rpath= + rpath=$finalize_rpath + test relink = "$opt_mode" || rpath=$compile_rpath$rpath + for libdir in $rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + func_replace_sysroot "$libdir" + libdir=$func_replace_sysroot_result + if test -z "$hardcode_libdirs"; then + hardcode_libdirs=$libdir + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append dep_rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir=$hardcode_libdirs + eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" + fi + if test -n "$runpath_var" && test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" + fi + test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" + fi + + shlibpath=$finalize_shlibpath + test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath + if test -n "$shlibpath"; then + eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" + fi + + # Get the real and link names of the library. + eval shared_ext=\"$shrext_cmds\" + eval library_names=\"$library_names_spec\" + set dummy $library_names + shift + realname=$1 + shift + + if test -n "$soname_spec"; then + eval soname=\"$soname_spec\" + else + soname=$realname + fi + if test -z "$dlname"; then + dlname=$soname + fi + + lib=$output_objdir/$realname + linknames= + for link + do + func_append linknames " $link" + done + + # Use standard objects if they are pic + test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` + test "X$libobjs" = "X " && libobjs= + + delfiles= + if test -n "$export_symbols" && test -n "$include_expsyms"; then + $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" + export_symbols=$output_objdir/$libname.uexp + func_append delfiles " $export_symbols" + fi + + orig_export_symbols= + case $host_os in + cygwin* | mingw* | cegcc*) + if test -n "$export_symbols" && test -z "$export_symbols_regex"; then + # exporting using user supplied symfile + func_dll_def_p "$export_symbols" || { + # and it's NOT already a .def file. Must figure out + # which of the given symbols are data symbols and tag + # them as such. So, trigger use of export_symbols_cmds. + # export_symbols gets reassigned inside the "prepare + # the list of exported symbols" if statement, so the + # include_expsyms logic still works. + orig_export_symbols=$export_symbols + export_symbols= + always_export_symbols=yes + } + fi + ;; + esac + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp + $opt_dry_run || $RM $export_symbols + cmds=$export_symbols_cmds + save_ifs=$IFS; IFS='~' + for cmd1 in $cmds; do + IFS=$save_ifs + # Take the normal branch if the nm_file_list_spec branch + # doesn't work or if tool conversion is not needed. + case $nm_file_list_spec~$to_tool_file_cmd in + *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) + try_normal_branch=yes + eval cmd=\"$cmd1\" + func_len " $cmd" + len=$func_len_result + ;; + *) + try_normal_branch=no + ;; + esac + if test yes = "$try_normal_branch" \ + && { test "$len" -lt "$max_cmd_len" \ + || test "$max_cmd_len" -le -1; } + then + func_show_eval "$cmd" 'exit $?' + skipped_export=false + elif test -n "$nm_file_list_spec"; then + func_basename "$output" + output_la=$func_basename_result + save_libobjs=$libobjs + save_output=$output + output=$output_objdir/$output_la.nm + func_to_tool_file "$output" + libobjs=$nm_file_list_spec$func_to_tool_file_result + func_append delfiles " $output" + func_verbose "creating $NM input file list: $output" + for obj in $save_libobjs; do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > "$output" + eval cmd=\"$cmd1\" + func_show_eval "$cmd" 'exit $?' + output=$save_output + libobjs=$save_libobjs + skipped_export=false + else + # The command line is too long to execute in one step. + func_verbose "using reloadable object file for export list..." + skipped_export=: + # Break out early, otherwise skipped_export may be + # set to false by a later but shorter cmd. + break + fi + done + IFS=$save_ifs + if test -n "$export_symbols_regex" && test : != "$skipped_export"; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + fi + + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test : != "$skipped_export" && test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands, which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + + tmp_deplibs= + for test_deplib in $deplibs; do + case " $convenience " in + *" $test_deplib "*) ;; + *) + func_append tmp_deplibs " $test_deplib" + ;; + esac + done + deplibs=$tmp_deplibs + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec" && + test yes = "$compiler_needs_object" && + test -z "$libobjs"; then + # extract the archives, so we have objects to list. + # TODO: could optimize this to just extract one archive. + whole_archive_flag_spec= + fi + if test -n "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + else + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + fi + + if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then + eval flag=\"$thread_safe_flag_spec\" + func_append linker_flags " $flag" + fi + + # Make a backup of the uninstalled library when relinking + if test relink = "$opt_mode"; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? + fi + + # Do each of the archive commands. + if test yes = "$module" && test -n "$module_cmds"; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + eval test_cmds=\"$module_expsym_cmds\" + cmds=$module_expsym_cmds + else + eval test_cmds=\"$module_cmds\" + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + eval test_cmds=\"$archive_expsym_cmds\" + cmds=$archive_expsym_cmds + else + eval test_cmds=\"$archive_cmds\" + cmds=$archive_cmds + fi + fi + + if test : != "$skipped_export" && + func_len " $test_cmds" && + len=$func_len_result && + test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + : + else + # The command line is too long to link in one step, link piecewise + # or, if using GNU ld and skipped_export is not :, use a linker + # script. + + # Save the value of $output and $libobjs because we want to + # use them later. If we have whole_archive_flag_spec, we + # want to use save_libobjs as it was before + # whole_archive_flag_spec was expanded, because we can't + # assume the linker understands whole_archive_flag_spec. + # This may have to be revisited, in case too many + # convenience libraries get linked in and end up exceeding + # the spec. + if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + fi + save_output=$output + func_basename "$output" + output_la=$func_basename_result + + # Clear the reloadable object creation command queue and + # initialize k to one. + test_cmds= + concat_cmds= + objlist= + last_robj= + k=1 + + if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then + output=$output_objdir/$output_la.lnkscript + func_verbose "creating GNU ld script: $output" + echo 'INPUT (' > $output + for obj in $save_libobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + echo ')' >> $output + func_append delfiles " $output" + func_to_tool_file "$output" + output=$func_to_tool_file_result + elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then + output=$output_objdir/$output_la.lnk + func_verbose "creating linker input file list: $output" + : > $output + set x $save_libobjs + shift + firstobj= + if test yes = "$compiler_needs_object"; then + firstobj="$1 " + shift + fi + for obj + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + func_append delfiles " $output" + func_to_tool_file "$output" + output=$firstobj\"$file_list_spec$func_to_tool_file_result\" + else + if test -n "$save_libobjs"; then + func_verbose "creating reloadable object files..." + output=$output_objdir/$output_la-$k.$objext + eval test_cmds=\"$reload_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + + # Loop over the list of objects to be linked. + for obj in $save_libobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + if test -z "$objlist" || + test "$len" -lt "$max_cmd_len"; then + func_append objlist " $obj" + else + # The command $test_cmds is almost too long, add a + # command to the queue. + if test 1 -eq "$k"; then + # The first file doesn't have a previous command to add. + reload_objs=$objlist + eval concat_cmds=\"$reload_cmds\" + else + # All subsequent reloadable object files will link in + # the last one created. + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" + fi + last_robj=$output_objdir/$output_la-$k.$objext + func_arith $k + 1 + k=$func_arith_result + output=$output_objdir/$output_la-$k.$objext + objlist=" $obj" + func_len " $last_robj" + func_arith $len0 + $func_len_result + len=$func_arith_result + fi + done + # Handle the remaining objects by creating one last + # reloadable object file. All subsequent reloadable object + # files will link in the last one created. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\$concat_cmds$reload_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + func_append delfiles " $output" + + else + output= + fi + + ${skipped_export-false} && { + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp + $opt_dry_run || $RM $export_symbols + libobjs=$output + # Append the command to create the export file. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + } + + test -n "$save_libobjs" && + func_verbose "creating a temporary reloadable object file: $output" + + # Loop through the commands generated above and execute them. + save_ifs=$IFS; IFS='~' + for cmd in $concat_cmds; do + IFS=$save_ifs + $opt_quiet || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test relink = "$opt_mode"; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS=$save_ifs + + if test -n "$export_symbols_regex" && ${skipped_export-false}; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + + ${skipped_export-false} && { + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands, which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + } + + libobjs=$output + # Restore the value of output. + output=$save_output + + if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + fi + # Expand the library linking commands again to reset the + # value of $libobjs for piecewise linking. + + # Do each of the archive commands. + if test yes = "$module" && test -n "$module_cmds"; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + cmds=$module_expsym_cmds + else + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + cmds=$archive_expsym_cmds + else + cmds=$archive_cmds + fi + fi + fi + + if test -n "$delfiles"; then + # Append the command to remove temporary files to $cmds. + eval cmds=\"\$cmds~\$RM $delfiles\" + fi + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + + save_ifs=$IFS; IFS='~' + for cmd in $cmds; do + IFS=$sp$nl + eval cmd=\"$cmd\" + IFS=$save_ifs + $opt_quiet || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test relink = "$opt_mode"; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS=$save_ifs + + # Restore the uninstalled library and exit + if test relink = "$opt_mode"; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? + + if test -n "$convenience"; then + if test -z "$whole_archive_flag_spec"; then + func_show_eval '${RM}r "$gentop"' + fi + fi + + exit $EXIT_SUCCESS + fi + + # Create links to the real library. + for linkname in $linknames; do + if test "$realname" != "$linkname"; then + func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' + fi + done + + # If -module or -export-dynamic was specified, set the dlname. + if test yes = "$module" || test yes = "$export_dynamic"; then + # On all known operating systems, these are identical. + dlname=$soname + fi + fi + ;; + + obj) + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for objects" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "'-l' and '-L' are ignored for objects" ;; + esac + + test -n "$rpath" && \ + func_warning "'-rpath' is ignored for objects" + + test -n "$xrpath" && \ + func_warning "'-R' is ignored for objects" + + test -n "$vinfo" && \ + func_warning "'-version-info' is ignored for objects" + + test -n "$release" && \ + func_warning "'-release' is ignored for objects" + + case $output in + *.lo) + test -n "$objs$old_deplibs" && \ + func_fatal_error "cannot build library object '$output' from non-libtool objects" + + libobj=$output + func_lo2o "$libobj" + obj=$func_lo2o_result + ;; + *) + libobj= + obj=$output + ;; + esac + + # Delete the old objects. + $opt_dry_run || $RM $obj $libobj + + # Objects from convenience libraries. This assumes + # single-version convenience libraries. Whenever we create + # different ones for PIC/non-PIC, this we'll have to duplicate + # the extraction. + reload_conv_objs= + gentop= + # if reload_cmds runs $LD directly, get rid of -Wl from + # whole_archive_flag_spec and hope we can get by with turning comma + # into space. + case $reload_cmds in + *\$LD[\ \$]*) wl= ;; + esac + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then + eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" + test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags + else + gentop=$output_objdir/${obj}x + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + reload_conv_objs="$reload_objs $func_extract_archives_result" + fi + fi + + # If we're not building shared, we need to use non_pic_objs + test yes = "$build_libtool_libs" || libobjs=$non_pic_objects + + # Create the old-style object. + reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs + + output=$obj + func_execute_cmds "$reload_cmds" 'exit $?' + + # Exit if we aren't doing a library object file. + if test -z "$libobj"; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + fi + + test yes = "$build_libtool_libs" || { + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + # Create an invalid libtool object if no PIC, so that we don't + # accidentally link it into a program. + # $show "echo timestamp > $libobj" + # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? + exit $EXIT_SUCCESS + } + + if test -n "$pic_flag" || test default != "$pic_mode"; then + # Only do commands if we really have different PIC objects. + reload_objs="$libobjs $reload_conv_objs" + output=$libobj + func_execute_cmds "$reload_cmds" 'exit $?' + fi + + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + ;; + + prog) + case $host in + *cygwin*) func_stripname '' '.exe' "$output" + output=$func_stripname_result.exe;; + esac + test -n "$vinfo" && \ + func_warning "'-version-info' is ignored for programs" + + test -n "$release" && \ + func_warning "'-release' is ignored for programs" + + $preload \ + && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ + && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library is the System framework + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + case $host in + *-*-darwin*) + # Don't allow lazy linking, it breaks C++ global constructors + # But is supposedly fixed on 10.4 or later (yay!). + if test CXX = "$tagname"; then + case ${MACOSX_DEPLOYMENT_TARGET-10.0} in + 10.[0123]) + func_append compile_command " $wl-bind_at_load" + func_append finalize_command " $wl-bind_at_load" + ;; + esac + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $compile_deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $compile_deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + compile_deplibs=$new_libs + + + func_append compile_command " $compile_deplibs" + func_append finalize_command " $finalize_deplibs" + + if test -n "$rpath$xrpath"; then + # If the user specified any rpath flags, then add them. + for libdir in $rpath $xrpath; do + # This is the magic to use -rpath. + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + fi + + # Now hardcode the library paths + rpath= + hardcode_libdirs= + for libdir in $compile_rpath $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs=$libdir + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$libdir:"*) ;; + ::) dllsearchpath=$libdir;; + *) func_append dllsearchpath ":$libdir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir=$hardcode_libdirs + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + compile_rpath=$rpath + + rpath= + hardcode_libdirs= + for libdir in $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs=$libdir + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$finalize_perm_rpath " in + *" $libdir "*) ;; + *) func_append finalize_perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir=$hardcode_libdirs + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + finalize_rpath=$rpath + + if test -n "$libobjs" && test yes = "$build_old_libs"; then + # Transform all the library objects into standard objects. + compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + fi + + func_generate_dlsyms "$outputname" "@PROGRAM@" false + + # template prelinking step + if test -n "$prelink_cmds"; then + func_execute_cmds "$prelink_cmds" 'exit $?' + fi + + wrappers_required=: + case $host in + *cegcc* | *mingw32ce*) + # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. + wrappers_required=false + ;; + *cygwin* | *mingw* ) + test yes = "$build_libtool_libs" || wrappers_required=false + ;; + *) + if test no = "$need_relink" || test yes != "$build_libtool_libs"; then + wrappers_required=false + fi + ;; + esac + $wrappers_required || { + # Replace the output file specification. + compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + link_command=$compile_command$compile_rpath + + # We have no uninstalled library dependencies, so finalize right now. + exit_status=0 + func_show_eval "$link_command" 'exit_status=$?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Delete the generated files. + if test -f "$output_objdir/${outputname}S.$objext"; then + func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' + fi + + exit $exit_status + } + + if test -n "$compile_shlibpath$finalize_shlibpath"; then + compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" + fi + if test -n "$finalize_shlibpath"; then + finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" + fi + + compile_var= + finalize_var= + if test -n "$runpath_var"; then + if test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + compile_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + if test -n "$finalize_perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $finalize_perm_rpath; do + func_append rpath "$dir:" + done + finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + fi + + if test yes = "$no_install"; then + # We don't need to create a wrapper script. + link_command=$compile_var$compile_command$compile_rpath + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + # Delete the old output file. + $opt_dry_run || $RM $output + # Link the executable and exit + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + exit $EXIT_SUCCESS + fi + + case $hardcode_action,$fast_install in + relink,*) + # Fast installation is not supported + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath + + func_warning "this platform does not like uninstalled shared libraries" + func_warning "'$output' will be relinked during installation" + ;; + *,yes) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + ;; + *,no) + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath + ;; + *,needless) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command= + ;; + esac + + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` + + # Delete the old output files. + $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname + + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output_objdir/$outputname" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Now create the wrapper script. + func_verbose "creating $output" + + # Quote the relink command for shipping. + if test -n "$relink_command"; then + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + relink_command="(cd `pwd`; $relink_command)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + fi + + # Only actually do things if not in dry run mode. + $opt_dry_run || { + # win32 will think the script is a binary if it has + # a .exe suffix, so we strip it off here. + case $output in + *.exe) func_stripname '' '.exe' "$output" + output=$func_stripname_result ;; + esac + # test for cygwin because mv fails w/o .exe extensions + case $host in + *cygwin*) + exeext=.exe + func_stripname '' '.exe' "$outputname" + outputname=$func_stripname_result ;; + *) exeext= ;; + esac + case $host in + *cygwin* | *mingw* ) + func_dirname_and_basename "$output" "" "." + output_name=$func_basename_result + output_path=$func_dirname_result + cwrappersource=$output_path/$objdir/lt-$output_name.c + cwrapper=$output_path/$output_name.exe + $RM $cwrappersource $cwrapper + trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 + + func_emit_cwrapperexe_src > $cwrappersource + + # The wrapper executable is built using the $host compiler, + # because it contains $host paths and files. If cross- + # compiling, it, like the target executable, must be + # executed on the $host or under an emulation environment. + $opt_dry_run || { + $LTCC $LTCFLAGS -o $cwrapper $cwrappersource + $STRIP $cwrapper + } + + # Now, create the wrapper script for func_source use: + func_ltwrapper_scriptname $cwrapper + $RM $func_ltwrapper_scriptname_result + trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 + $opt_dry_run || { + # note: this script will not be executed, so do not chmod. + if test "x$build" = "x$host"; then + $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result + else + func_emit_wrapper no > $func_ltwrapper_scriptname_result + fi + } + ;; + * ) + $RM $output + trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 + + func_emit_wrapper no > $output + chmod +x $output + ;; + esac + } + exit $EXIT_SUCCESS + ;; + esac + + # See if we need to build an old-fashioned archive. + for oldlib in $oldlibs; do + + case $build_libtool_libs in + convenience) + oldobjs="$libobjs_save $symfileobj" + addlibs=$convenience + build_libtool_libs=no + ;; + module) + oldobjs=$libobjs_save + addlibs=$old_convenience + build_libtool_libs=no + ;; + *) + oldobjs="$old_deplibs $non_pic_objects" + $preload && test -f "$symfileobj" \ + && func_append oldobjs " $symfileobj" + addlibs=$old_convenience + ;; + esac + + if test -n "$addlibs"; then + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + + func_extract_archives $gentop $addlibs + func_append oldobjs " $func_extract_archives_result" + fi + + # Do each command in the archive commands. + if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then + cmds=$old_archive_from_new_cmds + else + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append oldobjs " $func_extract_archives_result" + fi + + # POSIX demands no paths to be encoded in archives. We have + # to avoid creating archives with duplicate basenames if we + # might have to extract them afterwards, e.g., when creating a + # static archive out of a convenience library, or when linking + # the entirety of a libtool archive into another (currently + # not supported by libtool). + if (for obj in $oldobjs + do + func_basename "$obj" + $ECHO "$func_basename_result" + done | sort | sort -uc >/dev/null 2>&1); then + : + else + echo "copying selected object files to avoid basename conflicts..." + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + func_mkdir_p "$gentop" + save_oldobjs=$oldobjs + oldobjs= + counter=1 + for obj in $save_oldobjs + do + func_basename "$obj" + objbase=$func_basename_result + case " $oldobjs " in + " ") oldobjs=$obj ;; + *[\ /]"$objbase "*) + while :; do + # Make sure we don't pick an alternate name that also + # overlaps. + newobj=lt$counter-$objbase + func_arith $counter + 1 + counter=$func_arith_result + case " $oldobjs " in + *[\ /]"$newobj "*) ;; + *) if test ! -f "$gentop/$newobj"; then break; fi ;; + esac + done + func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" + func_append oldobjs " $gentop/$newobj" + ;; + *) func_append oldobjs " $obj" ;; + esac + done + fi + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + eval cmds=\"$old_archive_cmds\" + + func_len " $cmds" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + cmds=$old_archive_cmds + elif test -n "$archiver_list_spec"; then + func_verbose "using command file archive linking..." + for obj in $oldobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > $output_objdir/$libname.libcmd + func_to_tool_file "$output_objdir/$libname.libcmd" + oldobjs=" $archiver_list_spec$func_to_tool_file_result" + cmds=$old_archive_cmds + else + # the command line is too long to link in one step, link in parts + func_verbose "using piecewise archive linking..." + save_RANLIB=$RANLIB + RANLIB=: + objlist= + concat_cmds= + save_oldobjs=$oldobjs + oldobjs= + # Is there a better way of finding the last object in the list? + for obj in $save_oldobjs + do + last_oldobj=$obj + done + eval test_cmds=\"$old_archive_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + for obj in $save_oldobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + func_append objlist " $obj" + if test "$len" -lt "$max_cmd_len"; then + : + else + # the above command should be used before it gets too long + oldobjs=$objlist + if test "$obj" = "$last_oldobj"; then + RANLIB=$save_RANLIB + fi + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" + objlist= + len=$len0 + fi + done + RANLIB=$save_RANLIB + oldobjs=$objlist + if test -z "$oldobjs"; then + eval cmds=\"\$concat_cmds\" + else + eval cmds=\"\$concat_cmds~\$old_archive_cmds\" + fi + fi + fi + func_execute_cmds "$cmds" 'exit $?' + done + + test -n "$generated" && \ + func_show_eval "${RM}r$generated" + + # Now create the libtool archive. + case $output in + *.la) + old_library= + test yes = "$build_old_libs" && old_library=$libname.$libext + func_verbose "creating $output" + + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + # Quote the link command for shipping. + relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + if test yes = "$hardcode_automatic"; then + relink_command= + fi + + # Only create the output if not a dry run. + $opt_dry_run || { + for installed in no yes; do + if test yes = "$installed"; then + if test -z "$install_libdir"; then + break + fi + output=$output_objdir/${outputname}i + # Replace all uninstalled libtool libraries with the installed ones + newdependency_libs= + for deplib in $dependency_libs; do + case $deplib in + *.la) + func_basename "$deplib" + name=$func_basename_result + func_resolve_sysroot "$deplib" + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + test -z "$libdir" && \ + func_fatal_error "'$deplib' is not a valid libtool archive" + func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" + ;; + -L*) + func_stripname -L '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -L$func_replace_sysroot_result" + ;; + -R*) + func_stripname -R '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -R$func_replace_sysroot_result" + ;; + *) func_append newdependency_libs " $deplib" ;; + esac + done + dependency_libs=$newdependency_libs + newdlfiles= + + for lib in $dlfiles; do + case $lib in + *.la) + func_basename "$lib" + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "'$lib' is not a valid libtool archive" + func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" + ;; + *) func_append newdlfiles " $lib" ;; + esac + done + dlfiles=$newdlfiles + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + *.la) + # Only pass preopened files to the pseudo-archive (for + # eventual linking with the app. that links it) if we + # didn't already link the preopened objects directly into + # the library: + func_basename "$lib" + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "'$lib' is not a valid libtool archive" + func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" + ;; + esac + done + dlprefiles=$newdlprefiles + else + newdlfiles= + for lib in $dlfiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlfiles " $abs" + done + dlfiles=$newdlfiles + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlprefiles " $abs" + done + dlprefiles=$newdlprefiles + fi + $RM $output + # place dlname in correct position for cygwin + # In fact, it would be nice if we could use this code for all target + # systems that can't hard-code library paths into their executables + # and that have no shared library path variable independent of PATH, + # but it turns out we can't easily determine that from inspecting + # libtool variables, so we have to hard-code the OSs to which it + # applies here; at the moment, that means platforms that use the PE + # object format with DLL files. See the long comment at the top of + # tests/bindir.at for full details. + tdlname=$dlname + case $host,$output,$installed,$module,$dlname in + *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) + # If a -bindir argument was supplied, place the dll there. + if test -n "$bindir"; then + func_relative_path "$install_libdir" "$bindir" + tdlname=$func_relative_path_result/$dlname + else + # Otherwise fall back on heuristic. + tdlname=../bin/$dlname + fi + ;; + esac + $ECHO > $output "\ +# $outputname - a libtool library file +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='$tdlname' + +# Names of this library. +library_names='$library_names' + +# The name of the static archive. +old_library='$old_library' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='$new_inherited_linker_flags' + +# Libraries that this one depends upon. +dependency_libs='$dependency_libs' + +# Names of additional weak libraries provided by this library +weak_library_names='$weak_libs' + +# Version information for $libname. +current=$current +age=$age +revision=$revision + +# Is this an already installed library? +installed=$installed + +# Should we warn about portability when linking against -modules? +shouldnotlink=$module + +# Files to dlopen/dlpreopen +dlopen='$dlfiles' +dlpreopen='$dlprefiles' + +# Directory that this library needs to be installed in: +libdir='$install_libdir'" + if test no,yes = "$installed,$need_relink"; then + $ECHO >> $output "\ +relink_command=\"$relink_command\"" + fi + done + } + + # Do a symbolic link so that the libtool archive can be found in + # LD_LIBRARY_PATH before the program is installed. + func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' + ;; + esac + exit $EXIT_SUCCESS +} + +if test link = "$opt_mode" || test relink = "$opt_mode"; then + func_mode_link ${1+"$@"} +fi + + +# func_mode_uninstall arg... +func_mode_uninstall () +{ + $debug_cmd + + RM=$nonopt + files= + rmforce=false + exit_status=0 + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic=$magic + + for arg + do + case $arg in + -f) func_append RM " $arg"; rmforce=: ;; + -*) func_append RM " $arg" ;; + *) func_append files " $arg" ;; + esac + done + + test -z "$RM" && \ + func_fatal_help "you must specify an RM program" + + rmdirs= + + for file in $files; do + func_dirname "$file" "" "." + dir=$func_dirname_result + if test . = "$dir"; then + odir=$objdir + else + odir=$dir/$objdir + fi + func_basename "$file" + name=$func_basename_result + test uninstall = "$opt_mode" && odir=$dir + + # Remember odir for removal later, being careful to avoid duplicates + if test clean = "$opt_mode"; then + case " $rmdirs " in + *" $odir "*) ;; + *) func_append rmdirs " $odir" ;; + esac + fi + + # Don't error if the file doesn't exist and rm -f was used. + if { test -L "$file"; } >/dev/null 2>&1 || + { test -h "$file"; } >/dev/null 2>&1 || + test -f "$file"; then + : + elif test -d "$file"; then + exit_status=1 + continue + elif $rmforce; then + continue + fi + + rmfiles=$file + + case $name in + *.la) + # Possibly a libtool archive, so verify it. + if func_lalib_p "$file"; then + func_source $dir/$name + + # Delete the libtool libraries and symlinks. + for n in $library_names; do + func_append rmfiles " $odir/$n" + done + test -n "$old_library" && func_append rmfiles " $odir/$old_library" + + case $opt_mode in + clean) + case " $library_names " in + *" $dlname "*) ;; + *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; + esac + test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" + ;; + uninstall) + if test -n "$library_names"; then + # Do each command in the postuninstall commands. + func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' + fi + + if test -n "$old_library"; then + # Do each command in the old_postuninstall commands. + func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' + fi + # FIXME: should reinstall the best remaining shared library. + ;; + esac + fi + ;; + + *.lo) + # Possibly a libtool object, so verify it. + if func_lalib_p "$file"; then + + # Read the .lo file + func_source $dir/$name + + # Add PIC object to the list of files to remove. + if test -n "$pic_object" && test none != "$pic_object"; then + func_append rmfiles " $dir/$pic_object" + fi + + # Add non-PIC object to the list of files to remove. + if test -n "$non_pic_object" && test none != "$non_pic_object"; then + func_append rmfiles " $dir/$non_pic_object" + fi + fi + ;; + + *) + if test clean = "$opt_mode"; then + noexename=$name + case $file in + *.exe) + func_stripname '' '.exe' "$file" + file=$func_stripname_result + func_stripname '' '.exe' "$name" + noexename=$func_stripname_result + # $file with .exe has already been added to rmfiles, + # add $file without .exe + func_append rmfiles " $file" + ;; + esac + # Do a test to see if this is a libtool program. + if func_ltwrapper_p "$file"; then + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + relink_command= + func_source $func_ltwrapper_scriptname_result + func_append rmfiles " $func_ltwrapper_scriptname_result" + else + relink_command= + func_source $dir/$noexename + fi + + # note $name still contains .exe if it was in $file originally + # as does the version of $file that was added into $rmfiles + func_append rmfiles " $odir/$name $odir/${name}S.$objext" + if test yes = "$fast_install" && test -n "$relink_command"; then + func_append rmfiles " $odir/lt-$name" + fi + if test "X$noexename" != "X$name"; then + func_append rmfiles " $odir/lt-$noexename.c" + fi + fi + fi + ;; + esac + func_show_eval "$RM $rmfiles" 'exit_status=1' + done + + # Try to remove the $objdir's in the directories where we deleted files + for dir in $rmdirs; do + if test -d "$dir"; then + func_show_eval "rmdir $dir >/dev/null 2>&1" + fi + done + + exit $exit_status +} + +if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then + func_mode_uninstall ${1+"$@"} +fi + +test -z "$opt_mode" && { + help=$generic_help + func_fatal_help "you must specify a MODE" +} + +test -z "$exec_cmd" && \ + func_fatal_help "invalid operation mode '$opt_mode'" + +if test -n "$exec_cmd"; then + eval exec "$exec_cmd" + exit $EXIT_FAILURE +fi + +exit $exit_status + + +# The TAGs below are defined such that we never get into a situation +# where we disable both kinds of libraries. Given conflicting +# choices, we go for a static library, that is the most portable, +# since we can't tell whether shared libraries were disabled because +# the user asked for that or because the platform doesn't support +# them. This is particularly important on AIX, because we don't +# support having both static and shared libraries enabled at the same +# time on that platform, so we default to a shared-only configuration. +# If a disable-shared tag is given, we'll fallback to a static-only +# configuration. But we'll never go from static-only to shared-only. + +# ### BEGIN LIBTOOL TAG CONFIG: disable-shared +build_libtool_libs=no +build_old_libs=yes +# ### END LIBTOOL TAG CONFIG: disable-shared + +# ### BEGIN LIBTOOL TAG CONFIG: disable-static +build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` +# ### END LIBTOOL TAG CONFIG: disable-static + +# Local Variables: +# mode:shell-script +# sh-indentation:2 +# End: diff --git a/wlx/wayland_qt_base/build/enca-1.19/ltmain.sh b/wlx/wayland_qt_base/build/enca-1.19/ltmain.sh new file mode 100644 index 0000000..2ad8be8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/ltmain.sh @@ -0,0 +1,11156 @@ +#! /bin/sh +## DO NOT EDIT - This file generated from ./build-aux/ltmain.in +## by inline-source v2014-01-03.01 + +# libtool (GNU libtool) 2.4.6 +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit , 1996 + +# Copyright (C) 1996-2015 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +PROGRAM=libtool +PACKAGE=libtool +VERSION="2.4.6 Debian-2.4.6-1" +package_revision=2.4.6 + + +## ------ ## +## Usage. ## +## ------ ## + +# Run './libtool --help' for help with using this script from the +# command line. + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# After configure completes, it has a better idea of some of the +# shell tools we need than the defaults used by the functions shared +# with bootstrap, so set those here where they can still be over- +# ridden by the user, but otherwise take precedence. + +: ${AUTOCONF="autoconf"} +: ${AUTOMAKE="automake"} + + +## -------------------------- ## +## Source external libraries. ## +## -------------------------- ## + +# Much of our low-level functionality needs to be sourced from external +# libraries, which are installed to $pkgauxdir. + +# Set a version string for this script. +scriptversion=2015-01-20.17; # UTC + +# General shell script boiler plate, and helper functions. +# Written by Gary V. Vaughan, 2004 + +# Copyright (C) 2004-2015 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. + +# As a special exception to the GNU General Public License, if you distribute +# this file as part of a program or library that is built using GNU Libtool, +# you may include this file under the same distribution terms that you use +# for the rest of that program. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# Evaluate this file near the top of your script to gain access to +# the functions and variables defined here: +# +# . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh +# +# If you need to override any of the default environment variable +# settings, do that before evaluating this file. + + +## -------------------- ## +## Shell normalisation. ## +## -------------------- ## + +# Some shells need a little help to be as Bourne compatible as possible. +# Before doing anything else, make sure all that help has been provided! + +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac +fi + +# NLS nuisances: We save the old values in case they are required later. +_G_user_locale= +_G_safe_locale= +for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +do + eval "if test set = \"\${$_G_var+set}\"; then + save_$_G_var=\$$_G_var + $_G_var=C + export $_G_var + _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" + _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" + fi" +done + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +# Make sure IFS has a sensible default +sp=' ' +nl=' +' +IFS="$sp $nl" + +# There are apparently some retarded systems that use ';' as a PATH separator! +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + + +## ------------------------- ## +## Locate command utilities. ## +## ------------------------- ## + + +# func_executable_p FILE +# ---------------------- +# Check that FILE is an executable regular file. +func_executable_p () +{ + test -f "$1" && test -x "$1" +} + + +# func_path_progs PROGS_LIST CHECK_FUNC [PATH] +# -------------------------------------------- +# Search for either a program that responds to --version with output +# containing "GNU", or else returned by CHECK_FUNC otherwise, by +# trying all the directories in PATH with each of the elements of +# PROGS_LIST. +# +# CHECK_FUNC should accept the path to a candidate program, and +# set $func_check_prog_result if it truncates its output less than +# $_G_path_prog_max characters. +func_path_progs () +{ + _G_progs_list=$1 + _G_check_func=$2 + _G_PATH=${3-"$PATH"} + + _G_path_prog_max=0 + _G_path_prog_found=false + _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} + for _G_dir in $_G_PATH; do + IFS=$_G_save_IFS + test -z "$_G_dir" && _G_dir=. + for _G_prog_name in $_G_progs_list; do + for _exeext in '' .EXE; do + _G_path_prog=$_G_dir/$_G_prog_name$_exeext + func_executable_p "$_G_path_prog" || continue + case `"$_G_path_prog" --version 2>&1` in + *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; + *) $_G_check_func $_G_path_prog + func_path_progs_result=$func_check_prog_result + ;; + esac + $_G_path_prog_found && break 3 + done + done + done + IFS=$_G_save_IFS + test -z "$func_path_progs_result" && { + echo "no acceptable sed could be found in \$PATH" >&2 + exit 1 + } +} + + +# We want to be able to use the functions in this file before configure +# has figured out where the best binaries are kept, which means we have +# to search for them ourselves - except when the results are already set +# where we skip the searches. + +# Unless the user overrides by setting SED, search the path for either GNU +# sed, or the sed that truncates its output the least. +test -z "$SED" && { + _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for _G_i in 1 2 3 4 5 6 7; do + _G_sed_script=$_G_sed_script$nl$_G_sed_script + done + echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed + _G_sed_script= + + func_check_prog_sed () + { + _G_path_prog=$1 + + _G_count=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo '' >> conftest.nl + "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin + rm -f conftest.sed + SED=$func_path_progs_result +} + + +# Unless the user overrides by setting GREP, search the path for either GNU +# grep, or the grep that truncates its output the least. +test -z "$GREP" && { + func_check_prog_grep () + { + _G_path_prog=$1 + + _G_count=0 + _G_path_prog_max=0 + printf 0123456789 >conftest.in + while : + do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo 'GREP' >> conftest.nl + "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break + diff conftest.out conftest.nl >/dev/null 2>&1 || break + _G_count=`expr $_G_count + 1` + if test "$_G_count" -gt "$_G_path_prog_max"; then + # Best one so far, save it but keep looking for a better one + func_check_prog_result=$_G_path_prog + _G_path_prog_max=$_G_count + fi + # 10*(2^10) chars as input seems more than enough + test 10 -lt "$_G_count" && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out + } + + func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin + GREP=$func_path_progs_result +} + + +## ------------------------------- ## +## User overridable command paths. ## +## ------------------------------- ## + +# All uppercase variable names are used for environment variables. These +# variables can be overridden by the user before calling a script that +# uses them if a suitable command of that name is not already available +# in the command search PATH. + +: ${CP="cp -f"} +: ${ECHO="printf %s\n"} +: ${EGREP="$GREP -E"} +: ${FGREP="$GREP -F"} +: ${LN_S="ln -s"} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} + + +## -------------------- ## +## Useful sed snippets. ## +## -------------------- ## + +sed_dirname='s|/[^/]*$||' +sed_basename='s|^.*/||' + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s|\([`"$\\]\)|\\\1|g' + +# Same as above, but do not quote variable references. +sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' + +# Sed substitution that converts a w32 file name or path +# that contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + +# Re-'\' parameter expansions in output of sed_double_quote_subst that +# were '\'-ed in input to the same. If an odd number of '\' preceded a +# '$' in input to sed_double_quote_subst, that '$' was protected from +# expansion. Since each input '\' is now two '\'s, look for any number +# of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. +_G_bs='\\' +_G_bs2='\\\\' +_G_bs4='\\\\\\\\' +_G_dollar='\$' +sed_double_backslash="\ + s/$_G_bs4/&\\ +/g + s/^$_G_bs2$_G_dollar/$_G_bs&/ + s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g + s/\n//g" + + +## ----------------- ## +## Global variables. ## +## ----------------- ## + +# Except for the global variables explicitly listed below, the following +# functions in the '^func_' namespace, and the '^require_' namespace +# variables initialised in the 'Resource management' section, sourcing +# this file will not pollute your global namespace with anything +# else. There's no portable way to scope variables in Bourne shell +# though, so actually running these functions will sometimes place +# results into a variable named after the function, and often use +# temporary variables in the '^_G_' namespace. If you are careful to +# avoid using those namespaces casually in your sourcing script, things +# should continue to work as you expect. And, of course, you can freely +# overwrite any of the functions or variables defined here before +# calling anything to customize them. + +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +# Allow overriding, eg assuming that you follow the convention of +# putting '$debug_cmd' at the start of all your functions, you can get +# bash to show function call trace with: +# +# debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name +debug_cmd=${debug_cmd-":"} +exit_cmd=: + +# By convention, finish your script with: +# +# exit $exit_status +# +# so that you can set exit_status to non-zero if you want to indicate +# something went wrong during execution without actually bailing out at +# the point of failure. +exit_status=$EXIT_SUCCESS + +# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh +# is ksh but when the shell is invoked as "sh" and the current value of +# the _XPG environment variable is not equal to 1 (one), the special +# positional parameter $0, within a function call, is the name of the +# function. +progpath=$0 + +# The name of this program. +progname=`$ECHO "$progpath" |$SED "$sed_basename"` + +# Make sure we have an absolute progpath for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` + progdir=`cd "$progdir" && pwd` + progpath=$progdir/$progname + ;; + *) + _G_IFS=$IFS + IFS=${PATH_SEPARATOR-:} + for progdir in $PATH; do + IFS=$_G_IFS + test -x "$progdir/$progname" && break + done + IFS=$_G_IFS + test -n "$progdir" || progdir=`pwd` + progpath=$progdir/$progname + ;; +esac + + +## ----------------- ## +## Standard options. ## +## ----------------- ## + +# The following options affect the operation of the functions defined +# below, and should be set appropriately depending on run-time para- +# meters passed on the command line. + +opt_dry_run=false +opt_quiet=false +opt_verbose=false + +# Categories 'all' and 'none' are always available. Append any others +# you will pass as the first argument to func_warning from your own +# code. +warning_categories= + +# By default, display warnings according to 'opt_warning_types'. Set +# 'warning_func' to ':' to elide all warnings, or func_fatal_error to +# treat the next displayed warning as a fatal error. +warning_func=func_warn_and_continue + +# Set to 'all' to display all warnings, 'none' to suppress all +# warnings, or a space delimited list of some subset of +# 'warning_categories' to display only the listed warnings. +opt_warning_types=all + + +## -------------------- ## +## Resource management. ## +## -------------------- ## + +# This section contains definitions for functions that each ensure a +# particular resource (a file, or a non-empty configuration variable for +# example) is available, and if appropriate to extract default values +# from pertinent package files. Call them using their associated +# 'require_*' variable to ensure that they are executed, at most, once. +# +# It's entirely deliberate that calling these functions can set +# variables that don't obey the namespace limitations obeyed by the rest +# of this file, in order that that they be as useful as possible to +# callers. + + +# require_term_colors +# ------------------- +# Allow display of bold text on terminals that support it. +require_term_colors=func_require_term_colors +func_require_term_colors () +{ + $debug_cmd + + test -t 1 && { + # COLORTERM and USE_ANSI_COLORS environment variables take + # precedence, because most terminfo databases neglect to describe + # whether color sequences are supported. + test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} + + if test 1 = "$USE_ANSI_COLORS"; then + # Standard ANSI escape sequences + tc_reset='' + tc_bold=''; tc_standout='' + tc_red=''; tc_green='' + tc_blue=''; tc_cyan='' + else + # Otherwise trust the terminfo database after all. + test -n "`tput sgr0 2>/dev/null`" && { + tc_reset=`tput sgr0` + test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` + tc_standout=$tc_bold + test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` + test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` + test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` + test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` + test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` + } + fi + } + + require_term_colors=: +} + + +## ----------------- ## +## Function library. ## +## ----------------- ## + +# This section contains a variety of useful functions to call in your +# scripts. Take note of the portable wrappers for features provided by +# some modern shells, which will fall back to slower equivalents on +# less featureful shells. + + +# func_append VAR VALUE +# --------------------- +# Append VALUE onto the existing contents of VAR. + + # We should try to minimise forks, especially on Windows where they are + # unreasonably slow, so skip the feature probes when bash or zsh are + # being used: + if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then + : ${_G_HAVE_ARITH_OP="yes"} + : ${_G_HAVE_XSI_OPS="yes"} + # The += operator was introduced in bash 3.1 + case $BASH_VERSION in + [12].* | 3.0 | 3.0*) ;; + *) + : ${_G_HAVE_PLUSEQ_OP="yes"} + ;; + esac + fi + + # _G_HAVE_PLUSEQ_OP + # Can be empty, in which case the shell is probed, "yes" if += is + # useable or anything else if it does not work. + test -z "$_G_HAVE_PLUSEQ_OP" \ + && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ + && _G_HAVE_PLUSEQ_OP=yes + +if test yes = "$_G_HAVE_PLUSEQ_OP" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_append () + { + $debug_cmd + + eval "$1+=\$2" + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_append () + { + $debug_cmd + + eval "$1=\$$1\$2" + } +fi + + +# func_append_quoted VAR VALUE +# ---------------------------- +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +if test yes = "$_G_HAVE_PLUSEQ_OP"; then + eval 'func_append_quoted () + { + $debug_cmd + + func_quote_for_eval "$2" + eval "$1+=\\ \$func_quote_for_eval_result" + }' +else + func_append_quoted () + { + $debug_cmd + + func_quote_for_eval "$2" + eval "$1=\$$1\\ \$func_quote_for_eval_result" + } +fi + + +# func_append_uniq VAR VALUE +# -------------------------- +# Append unique VALUE onto the existing contents of VAR, assuming +# entries are delimited by the first character of VALUE. For example: +# +# func_append_uniq options " --another-option option-argument" +# +# will only append to $options if " --another-option option-argument " +# is not already present somewhere in $options already (note spaces at +# each end implied by leading space in second argument). +func_append_uniq () +{ + $debug_cmd + + eval _G_current_value='`$ECHO $'$1'`' + _G_delim=`expr "$2" : '\(.\)'` + + case $_G_delim$_G_current_value$_G_delim in + *"$2$_G_delim"*) ;; + *) func_append "$@" ;; + esac +} + + +# func_arith TERM... +# ------------------ +# Set func_arith_result to the result of evaluating TERMs. + test -z "$_G_HAVE_ARITH_OP" \ + && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ + && _G_HAVE_ARITH_OP=yes + +if test yes = "$_G_HAVE_ARITH_OP"; then + eval 'func_arith () + { + $debug_cmd + + func_arith_result=$(( $* )) + }' +else + func_arith () + { + $debug_cmd + + func_arith_result=`expr "$@"` + } +fi + + +# func_basename FILE +# ------------------ +# Set func_basename_result to FILE with everything up to and including +# the last / stripped. +if test yes = "$_G_HAVE_XSI_OPS"; then + # If this shell supports suffix pattern removal, then use it to avoid + # forking. Hide the definitions single quotes in case the shell chokes + # on unsupported syntax... + _b='func_basename_result=${1##*/}' + _d='case $1 in + */*) func_dirname_result=${1%/*}$2 ;; + * ) func_dirname_result=$3 ;; + esac' + +else + # ...otherwise fall back to using sed. + _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' + _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` + if test "X$func_dirname_result" = "X$1"; then + func_dirname_result=$3 + else + func_append func_dirname_result "$2" + fi' +fi + +eval 'func_basename () +{ + $debug_cmd + + '"$_b"' +}' + + +# func_dirname FILE APPEND NONDIR_REPLACEMENT +# ------------------------------------------- +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +eval 'func_dirname () +{ + $debug_cmd + + '"$_d"' +}' + + +# func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT +# -------------------------------------------------------- +# Perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# For efficiency, we do not delegate to the functions above but instead +# duplicate the functionality here. +eval 'func_dirname_and_basename () +{ + $debug_cmd + + '"$_b"' + '"$_d"' +}' + + +# func_echo ARG... +# ---------------- +# Echo program name prefixed message. +func_echo () +{ + $debug_cmd + + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname: $_G_line" + done + IFS=$func_echo_IFS +} + + +# func_echo_all ARG... +# -------------------- +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + + +# func_echo_infix_1 INFIX ARG... +# ------------------------------ +# Echo program name, followed by INFIX on the first line, with any +# additional lines not showing INFIX. +func_echo_infix_1 () +{ + $debug_cmd + + $require_term_colors + + _G_infix=$1; shift + _G_indent=$_G_infix + _G_prefix="$progname: $_G_infix: " + _G_message=$* + + # Strip color escape sequences before counting printable length + for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" + do + test -n "$_G_tc" && { + _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` + _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` + } + done + _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes + + func_echo_infix_1_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_infix_1_IFS + $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 + _G_prefix=$_G_indent + done + IFS=$func_echo_infix_1_IFS +} + + +# func_error ARG... +# ----------------- +# Echo program name prefixed message to standard error. +func_error () +{ + $debug_cmd + + $require_term_colors + + func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 +} + + +# func_fatal_error ARG... +# ----------------------- +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + $debug_cmd + + func_error "$*" + exit $EXIT_FAILURE +} + + +# func_grep EXPRESSION FILENAME +# ----------------------------- +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $debug_cmd + + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_len STRING +# --------------- +# Set func_len_result to the length of STRING. STRING may not +# start with a hyphen. + test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_len () + { + $debug_cmd + + func_len_result=${#1} + }' +else + func_len () + { + $debug_cmd + + func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` + } +fi + + +# func_mkdir_p DIRECTORY-PATH +# --------------------------- +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + $debug_cmd + + _G_directory_path=$1 + _G_dir_list= + + if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then + + # Protect directory names starting with '-' + case $_G_directory_path in + -*) _G_directory_path=./$_G_directory_path ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$_G_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + _G_dir_list=$_G_directory_path:$_G_dir_list + + # If the last portion added has no slash in it, the list is done + case $_G_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` + done + _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` + + func_mkdir_p_IFS=$IFS; IFS=: + for _G_dir in $_G_dir_list; do + IFS=$func_mkdir_p_IFS + # mkdir can fail with a 'File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$_G_dir" 2>/dev/null || : + done + IFS=$func_mkdir_p_IFS + + # Bail out if we (or some other process) failed to create a directory. + test -d "$_G_directory_path" || \ + func_fatal_error "Failed to create '$1'" + fi +} + + +# func_mktempdir [BASENAME] +# ------------------------- +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, BASENAME is the basename for that directory. +func_mktempdir () +{ + $debug_cmd + + _G_template=${TMPDIR-/tmp}/${1-$progname} + + if test : = "$opt_dry_run"; then + # Return a directory name, but don't create it in dry-run mode + _G_tmpdir=$_G_template-$$ + else + + # If mktemp works, use that first and foremost + _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` + + if test ! -d "$_G_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + _G_tmpdir=$_G_template-${RANDOM-0}$$ + + func_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$_G_tmpdir" + umask $func_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$_G_tmpdir" || \ + func_fatal_error "cannot create temporary directory '$_G_tmpdir'" + fi + + $ECHO "$_G_tmpdir" +} + + +# func_normal_abspath PATH +# ------------------------ +# Remove doubled-up and trailing slashes, "." path components, +# and cancel out any ".." path components in PATH after making +# it an absolute path. +func_normal_abspath () +{ + $debug_cmd + + # These SED scripts presuppose an absolute path with a trailing slash. + _G_pathcar='s|^/\([^/]*\).*$|\1|' + _G_pathcdr='s|^/[^/]*||' + _G_removedotparts=':dotsl + s|/\./|/|g + t dotsl + s|/\.$|/|' + _G_collapseslashes='s|/\{1,\}|/|g' + _G_finalslash='s|/*$|/|' + + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in + "") + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return + ;; + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. + ;; + *) + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath + ;; + esac + + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` + while :; do + # Processed it all yet? + if test / = "$func_normal_abspath_tpath"; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result"; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$_G_pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result +} + + +# func_notquiet ARG... +# -------------------- +# Echo program name prefixed message only when not in quiet mode. +func_notquiet () +{ + $debug_cmd + + $opt_quiet || func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + + +# func_relative_path SRCDIR DSTDIR +# -------------------------------- +# Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. +func_relative_path () +{ + $debug_cmd + + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=$func_dirname_result + if test -z "$func_relative_path_tlibdir"; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test -n "$func_stripname_result"; then + func_append func_relative_path_result "/$func_stripname_result" + fi + + # Normalisation. If bindir is libdir, return '.' else relative path. + if test -n "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + fi + + test -n "$func_relative_path_result" || func_relative_path_result=. + + : +} + + +# func_quote_for_eval ARG... +# -------------------------- +# Aesthetically quote ARGs to be evaled later. +# This function returns two values: +# i) func_quote_for_eval_result +# double-quoted, suitable for a subsequent eval +# ii) func_quote_for_eval_unquoted_result +# has all characters that are still active within double +# quotes backslashified. +func_quote_for_eval () +{ + $debug_cmd + + func_quote_for_eval_unquoted_result= + func_quote_for_eval_result= + while test 0 -lt $#; do + case $1 in + *[\\\`\"\$]*) + _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; + *) + _G_unquoted_arg=$1 ;; + esac + if test -n "$func_quote_for_eval_unquoted_result"; then + func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" + else + func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" + fi + + case $_G_unquoted_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and variable expansion + # for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + _G_quoted_arg=\"$_G_unquoted_arg\" + ;; + *) + _G_quoted_arg=$_G_unquoted_arg + ;; + esac + + if test -n "$func_quote_for_eval_result"; then + func_append func_quote_for_eval_result " $_G_quoted_arg" + else + func_append func_quote_for_eval_result "$_G_quoted_arg" + fi + shift + done +} + + +# func_quote_for_expand ARG +# ------------------------- +# Aesthetically quote ARG to be evaled later; same as above, +# but do not quote variable references. +func_quote_for_expand () +{ + $debug_cmd + + case $1 in + *[\\\`\"]*) + _G_arg=`$ECHO "$1" | $SED \ + -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; + *) + _G_arg=$1 ;; + esac + + case $_G_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting and command substitution for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + _G_arg=\"$_G_arg\" + ;; + esac + + func_quote_for_expand_result=$_G_arg +} + + +# func_stripname PREFIX SUFFIX NAME +# --------------------------------- +# strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_stripname () + { + $debug_cmd + + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary variable first. + func_stripname_result=$3 + func_stripname_result=${func_stripname_result#"$1"} + func_stripname_result=${func_stripname_result%"$2"} + }' +else + func_stripname () + { + $debug_cmd + + case $2 in + .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; + *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; + esac + } +fi + + +# func_show_eval CMD [FAIL_EXP] +# ----------------------------- +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + $debug_cmd + + _G_cmd=$1 + _G_fail_exp=${2-':'} + + func_quote_for_expand "$_G_cmd" + eval "func_notquiet $func_quote_for_expand_result" + + $opt_dry_run || { + eval "$_G_cmd" + _G_status=$? + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" + fi + } +} + + +# func_show_eval_locale CMD [FAIL_EXP] +# ------------------------------------ +# Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + $debug_cmd + + _G_cmd=$1 + _G_fail_exp=${2-':'} + + $opt_quiet || { + func_quote_for_expand "$_G_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + $opt_dry_run || { + eval "$_G_user_locale + $_G_cmd" + _G_status=$? + eval "$_G_safe_locale" + if test 0 -ne "$_G_status"; then + eval "(exit $_G_status); $_G_fail_exp" + fi + } +} + + +# func_tr_sh +# ---------- +# Turn $1 into a string suitable for a shell variable name. +# Result is stored in $func_tr_sh_result. All characters +# not in the set a-zA-Z0-9_ are replaced with '_'. Further, +# if $1 begins with a digit, a '_' is prepended as well. +func_tr_sh () +{ + $debug_cmd + + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac +} + + +# func_verbose ARG... +# ------------------- +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $debug_cmd + + $opt_verbose && func_echo "$*" + + : +} + + +# func_warn_and_continue ARG... +# ----------------------------- +# Echo program name prefixed warning message to standard error. +func_warn_and_continue () +{ + $debug_cmd + + $require_term_colors + + func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 +} + + +# func_warning CATEGORY ARG... +# ---------------------------- +# Echo program name prefixed warning message to standard error. Warning +# messages can be filtered according to CATEGORY, where this function +# elides messages where CATEGORY is not listed in the global variable +# 'opt_warning_types'. +func_warning () +{ + $debug_cmd + + # CATEGORY must be in the warning_categories list! + case " $warning_categories " in + *" $1 "*) ;; + *) func_internal_error "invalid warning category '$1'" ;; + esac + + _G_category=$1 + shift + + case " $opt_warning_types " in + *" $_G_category "*) $warning_func ${1+"$@"} ;; + esac +} + + +# func_sort_ver VER1 VER2 +# ----------------------- +# 'sort -V' is not generally available. +# Note this deviates from the version comparison in automake +# in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a +# but this should suffice as we won't be specifying old +# version formats or redundant trailing .0 in bootstrap.conf. +# If we did want full compatibility then we should probably +# use m4_version_compare from autoconf. +func_sort_ver () +{ + $debug_cmd + + printf '%s\n%s\n' "$1" "$2" \ + | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n +} + +# func_lt_ver PREV CURR +# --------------------- +# Return true if PREV and CURR are in the correct order according to +# func_sort_ver, otherwise false. Use it like this: +# +# func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." +func_lt_ver () +{ + $debug_cmd + + test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` +} + + +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: +#! /bin/sh + +# Set a version string for this script. +scriptversion=2014-01-07.03; # UTC + +# A portable, pluggable option parser for Bourne shell. +# Written by Gary V. Vaughan, 2010 + +# Copyright (C) 2010-2015 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Please report bugs or propose patches to gary@gnu.org. + + +## ------ ## +## Usage. ## +## ------ ## + +# This file is a library for parsing options in your shell scripts along +# with assorted other useful supporting features that you can make use +# of too. +# +# For the simplest scripts you might need only: +# +# #!/bin/sh +# . relative/path/to/funclib.sh +# . relative/path/to/options-parser +# scriptversion=1.0 +# func_options ${1+"$@"} +# eval set dummy "$func_options_result"; shift +# ...rest of your script... +# +# In order for the '--version' option to work, you will need to have a +# suitably formatted comment like the one at the top of this file +# starting with '# Written by ' and ending with '# warranty; '. +# +# For '-h' and '--help' to work, you will also need a one line +# description of your script's purpose in a comment directly above the +# '# Written by ' line, like the one at the top of this file. +# +# The default options also support '--debug', which will turn on shell +# execution tracing (see the comment above debug_cmd below for another +# use), and '--verbose' and the func_verbose function to allow your script +# to display verbose messages only when your user has specified +# '--verbose'. +# +# After sourcing this file, you can plug processing for additional +# options by amending the variables from the 'Configuration' section +# below, and following the instructions in the 'Option parsing' +# section further down. + +## -------------- ## +## Configuration. ## +## -------------- ## + +# You should override these variables in your script after sourcing this +# file so that they reflect the customisations you have added to the +# option parser. + +# The usage line for option parsing errors and the start of '-h' and +# '--help' output messages. You can embed shell variables for delayed +# expansion at the time the message is displayed, but you will need to +# quote other shell meta-characters carefully to prevent them being +# expanded when the contents are evaled. +usage='$progpath [OPTION]...' + +# Short help message in response to '-h' and '--help'. Add to this or +# override it after sourcing this library to reflect the full set of +# options your script accepts. +usage_message="\ + --debug enable verbose shell tracing + -W, --warnings=CATEGORY + report the warnings falling in CATEGORY [all] + -v, --verbose verbosely report processing + --version print version information and exit + -h, --help print short or long help message and exit +" + +# Additional text appended to 'usage_message' in response to '--help'. +long_help_message=" +Warning categories include: + 'all' show all warnings + 'none' turn off all the warnings + 'error' warnings are treated as fatal errors" + +# Help message printed before fatal option parsing errors. +fatal_help="Try '\$progname --help' for more information." + + + +## ------------------------- ## +## Hook function management. ## +## ------------------------- ## + +# This section contains functions for adding, removing, and running hooks +# to the main code. A hook is just a named list of of function, that can +# be run in order later on. + +# func_hookable FUNC_NAME +# ----------------------- +# Declare that FUNC_NAME will run hooks added with +# 'func_add_hook FUNC_NAME ...'. +func_hookable () +{ + $debug_cmd + + func_append hookable_fns " $1" +} + + +# func_add_hook FUNC_NAME HOOK_FUNC +# --------------------------------- +# Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must +# first have been declared "hookable" by a call to 'func_hookable'. +func_add_hook () +{ + $debug_cmd + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not accept hook functions." ;; + esac + + eval func_append ${1}_hooks '" $2"' +} + + +# func_remove_hook FUNC_NAME HOOK_FUNC +# ------------------------------------ +# Remove HOOK_FUNC from the list of functions called by FUNC_NAME. +func_remove_hook () +{ + $debug_cmd + + eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' +} + + +# func_run_hooks FUNC_NAME [ARG]... +# --------------------------------- +# Run all hook functions registered to FUNC_NAME. +# It is assumed that the list of hook functions contains nothing more +# than a whitespace-delimited list of legal shell function names, and +# no effort is wasted trying to catch shell meta-characters or preserve +# whitespace. +func_run_hooks () +{ + $debug_cmd + + case " $hookable_fns " in + *" $1 "*) ;; + *) func_fatal_error "'$1' does not support hook funcions.n" ;; + esac + + eval _G_hook_fns=\$$1_hooks; shift + + for _G_hook in $_G_hook_fns; do + eval $_G_hook '"$@"' + + # store returned options list back into positional + # parameters for next 'cmd' execution. + eval _G_hook_result=\$${_G_hook}_result + eval set dummy "$_G_hook_result"; shift + done + + func_quote_for_eval ${1+"$@"} + func_run_hooks_result=$func_quote_for_eval_result +} + + + +## --------------- ## +## Option parsing. ## +## --------------- ## + +# In order to add your own option parsing hooks, you must accept the +# full positional parameter list in your hook function, remove any +# options that you action, and then pass back the remaining unprocessed +# options in '_result', escaped suitably for +# 'eval'. Like this: +# +# my_options_prep () +# { +# $debug_cmd +# +# # Extend the existing usage message. +# usage_message=$usage_message' +# -s, --silent don'\''t print informational messages +# ' +# +# func_quote_for_eval ${1+"$@"} +# my_options_prep_result=$func_quote_for_eval_result +# } +# func_add_hook func_options_prep my_options_prep +# +# +# my_silent_option () +# { +# $debug_cmd +# +# # Note that for efficiency, we parse as many options as we can +# # recognise in a loop before passing the remainder back to the +# # caller on the first unrecognised argument we encounter. +# while test $# -gt 0; do +# opt=$1; shift +# case $opt in +# --silent|-s) opt_silent=: ;; +# # Separate non-argument short options: +# -s*) func_split_short_opt "$_G_opt" +# set dummy "$func_split_short_opt_name" \ +# "-$func_split_short_opt_arg" ${1+"$@"} +# shift +# ;; +# *) set dummy "$_G_opt" "$*"; shift; break ;; +# esac +# done +# +# func_quote_for_eval ${1+"$@"} +# my_silent_option_result=$func_quote_for_eval_result +# } +# func_add_hook func_parse_options my_silent_option +# +# +# my_option_validation () +# { +# $debug_cmd +# +# $opt_silent && $opt_verbose && func_fatal_help "\ +# '--silent' and '--verbose' options are mutually exclusive." +# +# func_quote_for_eval ${1+"$@"} +# my_option_validation_result=$func_quote_for_eval_result +# } +# func_add_hook func_validate_options my_option_validation +# +# You'll alse need to manually amend $usage_message to reflect the extra +# options you parse. It's preferable to append if you can, so that +# multiple option parsing hooks can be added safely. + + +# func_options [ARG]... +# --------------------- +# All the functions called inside func_options are hookable. See the +# individual implementations for details. +func_hookable func_options +func_options () +{ + $debug_cmd + + func_options_prep ${1+"$@"} + eval func_parse_options \ + ${func_options_prep_result+"$func_options_prep_result"} + eval func_validate_options \ + ${func_parse_options_result+"$func_parse_options_result"} + + eval func_run_hooks func_options \ + ${func_validate_options_result+"$func_validate_options_result"} + + # save modified positional parameters for caller + func_options_result=$func_run_hooks_result +} + + +# func_options_prep [ARG]... +# -------------------------- +# All initialisations required before starting the option parse loop. +# Note that when calling hook functions, we pass through the list of +# positional parameters. If a hook function modifies that list, and +# needs to propogate that back to rest of this script, then the complete +# modified list must be put in 'func_run_hooks_result' before +# returning. +func_hookable func_options_prep +func_options_prep () +{ + $debug_cmd + + # Option defaults: + opt_verbose=false + opt_warning_types= + + func_run_hooks func_options_prep ${1+"$@"} + + # save modified positional parameters for caller + func_options_prep_result=$func_run_hooks_result +} + + +# func_parse_options [ARG]... +# --------------------------- +# The main option parsing loop. +func_hookable func_parse_options +func_parse_options () +{ + $debug_cmd + + func_parse_options_result= + + # this just eases exit handling + while test $# -gt 0; do + # Defer to hook functions for initial option parsing, so they + # get priority in the event of reusing an option name. + func_run_hooks func_parse_options ${1+"$@"} + + # Adjust func_parse_options positional parameters to match + eval set dummy "$func_run_hooks_result"; shift + + # Break out of the loop if we already parsed every option. + test $# -gt 0 || break + + _G_opt=$1 + shift + case $_G_opt in + --debug|-x) debug_cmd='set -x' + func_echo "enabling shell trace mode" + $debug_cmd + ;; + + --no-warnings|--no-warning|--no-warn) + set dummy --warnings none ${1+"$@"} + shift + ;; + + --warnings|--warning|-W) + test $# = 0 && func_missing_arg $_G_opt && break + case " $warning_categories $1" in + *" $1 "*) + # trailing space prevents matching last $1 above + func_append_uniq opt_warning_types " $1" + ;; + *all) + opt_warning_types=$warning_categories + ;; + *none) + opt_warning_types=none + warning_func=: + ;; + *error) + opt_warning_types=$warning_categories + warning_func=func_fatal_error + ;; + *) + func_fatal_error \ + "unsupported warning category: '$1'" + ;; + esac + shift + ;; + + --verbose|-v) opt_verbose=: ;; + --version) func_version ;; + -\?|-h) func_usage ;; + --help) func_help ;; + + # Separate optargs to long options (plugins may need this): + --*=*) func_split_equals "$_G_opt" + set dummy "$func_split_equals_lhs" \ + "$func_split_equals_rhs" ${1+"$@"} + shift + ;; + + # Separate optargs to short options: + -W*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-v*|-x*) + func_split_short_opt "$_G_opt" + set dummy "$func_split_short_opt_name" \ + "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) break ;; + -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; + *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + esac + done + + # save modified positional parameters for caller + func_quote_for_eval ${1+"$@"} + func_parse_options_result=$func_quote_for_eval_result +} + + +# func_validate_options [ARG]... +# ------------------------------ +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +func_hookable func_validate_options +func_validate_options () +{ + $debug_cmd + + # Display all warnings if -W was not given. + test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" + + func_run_hooks func_validate_options ${1+"$@"} + + # Bail if the options were screwed! + $exit_cmd $EXIT_FAILURE + + # save modified positional parameters for caller + func_validate_options_result=$func_run_hooks_result +} + + + +## ----------------- ## +## Helper functions. ## +## ----------------- ## + +# This section contains the helper functions used by the rest of the +# hookable option parser framework in ascii-betical order. + + +# func_fatal_help ARG... +# ---------------------- +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + $debug_cmd + + eval \$ECHO \""Usage: $usage"\" + eval \$ECHO \""$fatal_help"\" + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + + +# func_help +# --------- +# Echo long help message to standard output and exit. +func_help () +{ + $debug_cmd + + func_usage_message + $ECHO "$long_help_message" + exit 0 +} + + +# func_missing_arg ARGNAME +# ------------------------ +# Echo program name prefixed message to standard error and set global +# exit_cmd. +func_missing_arg () +{ + $debug_cmd + + func_error "Missing argument for '$1'." + exit_cmd=exit +} + + +# func_split_equals STRING +# ------------------------ +# Set func_split_equals_lhs and func_split_equals_rhs shell variables after +# splitting STRING at the '=' sign. +test -z "$_G_HAVE_XSI_OPS" \ + && (eval 'x=a/b/c; + test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ + && _G_HAVE_XSI_OPS=yes + +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=${1%%=*} + func_split_equals_rhs=${1#*=} + test "x$func_split_equals_lhs" = "x$1" \ + && func_split_equals_rhs= + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_equals () + { + $debug_cmd + + func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` + func_split_equals_rhs= + test "x$func_split_equals_lhs" = "x$1" \ + || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` + } +fi #func_split_equals + + +# func_split_short_opt SHORTOPT +# ----------------------------- +# Set func_split_short_opt_name and func_split_short_opt_arg shell +# variables after splitting SHORTOPT after the 2nd character. +if test yes = "$_G_HAVE_XSI_OPS" +then + # This is an XSI compatible shell, allowing a faster implementation... + eval 'func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"} + }' +else + # ...otherwise fall back to using expr, which is often a shell builtin. + func_split_short_opt () + { + $debug_cmd + + func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` + func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` + } +fi #func_split_short_opt + + +# func_usage +# ---------- +# Echo short help message to standard output and exit. +func_usage () +{ + $debug_cmd + + func_usage_message + $ECHO "Run '$progname --help |${PAGER-more}' for full usage" + exit 0 +} + + +# func_usage_message +# ------------------ +# Echo short help message to standard output. +func_usage_message () +{ + $debug_cmd + + eval \$ECHO \""Usage: $usage"\" + echo + $SED -n 's|^# || + /^Written by/{ + x;p;x + } + h + /^Written by/q' < "$progpath" + echo + eval \$ECHO \""$usage_message"\" +} + + +# func_version +# ------------ +# Echo version message to standard output and exit. +func_version () +{ + $debug_cmd + + printf '%s\n' "$progname $scriptversion" + $SED -n ' + /(C)/!b go + :more + /\./!{ + N + s|\n# | | + b more + } + :go + /^# Written by /,/# warranty; / { + s|^# || + s|^# *$|| + s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| + p + } + /^# Written by / { + s|^# || + p + } + /^warranty; /q' < "$progpath" + + exit $? +} + + +# Local variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" +# time-stamp-time-zone: "UTC" +# End: + +# Set a version string. +scriptversion='(GNU libtool) 2.4.6 Debian-2.4.6-1' + + +# func_echo ARG... +# ---------------- +# Libtool also displays the current mode in messages, so override +# funclib.sh func_echo with this custom definition. +func_echo () +{ + $debug_cmd + + _G_message=$* + + func_echo_IFS=$IFS + IFS=$nl + for _G_line in $_G_message; do + IFS=$func_echo_IFS + $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" + done + IFS=$func_echo_IFS +} + + +# func_warning ARG... +# ------------------- +# Libtool warnings are not categorized, so override funclib.sh +# func_warning with this simpler definition. +func_warning () +{ + $debug_cmd + + $warning_func ${1+"$@"} +} + + +## ---------------- ## +## Options parsing. ## +## ---------------- ## + +# Hook in the functions to make sure our own options are parsed during +# the option parsing loop. + +usage='$progpath [OPTION]... [MODE-ARG]...' + +# Short help message in response to '-h'. +usage_message="Options: + --config show all configuration variables + --debug enable verbose shell tracing + -n, --dry-run display commands without modifying any files + --features display basic configuration information and exit + --mode=MODE use operation mode MODE + --no-warnings equivalent to '-Wnone' + --preserve-dup-deps don't remove duplicate dependency libraries + --quiet, --silent don't print informational messages + --tag=TAG use configuration variables from tag TAG + -v, --verbose print more informational messages than default + --version print version information + -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] + -h, --help, --help-all print short, long, or detailed help message +" + +# Additional text appended to 'usage_message' in response to '--help'. +func_help () +{ + $debug_cmd + + func_usage_message + $ECHO "$long_help_message + +MODE must be one of the following: + + clean remove files from the build directory + compile compile a source file into a libtool object + execute automatically set library path, then run a program + finish complete the installation of libtool libraries + install install libraries or executables + link create a library or an executable + uninstall remove libraries from an installed directory + +MODE-ARGS vary depending on the MODE. When passed as first option, +'--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. +Try '$progname --help --mode=MODE' for a more detailed description of MODE. + +When reporting a bug, please describe a test case to reproduce it and +include the following information: + + host-triplet: $host + shell: $SHELL + compiler: $LTCC + compiler flags: $LTCFLAGS + linker: $LD (gnu? $with_gnu_ld) + version: $progname $scriptversion + automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` + autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` + +Report bugs to . +GNU libtool home page: . +General help using GNU software: ." + exit 0 +} + + +# func_lo2o OBJECT-NAME +# --------------------- +# Transform OBJECT-NAME from a '.lo' suffix to the platform specific +# object suffix. + +lo2o=s/\\.lo\$/.$objext/ +o2lo=s/\\.$objext\$/.lo/ + +if test yes = "$_G_HAVE_XSI_OPS"; then + eval 'func_lo2o () + { + case $1 in + *.lo) func_lo2o_result=${1%.lo}.$objext ;; + * ) func_lo2o_result=$1 ;; + esac + }' + + # func_xform LIBOBJ-OR-SOURCE + # --------------------------- + # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) + # suffix to a '.lo' libtool-object suffix. + eval 'func_xform () + { + func_xform_result=${1%.*}.lo + }' +else + # ...otherwise fall back to using sed. + func_lo2o () + { + func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` + } + + func_xform () + { + func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` + } +fi + + +# func_fatal_configuration ARG... +# ------------------------------- +# Echo program name prefixed message to standard error, followed by +# a configuration failure hint, and exit. +func_fatal_configuration () +{ + func__fatal_error ${1+"$@"} \ + "See the $PACKAGE documentation for more information." \ + "Fatal configuration error." +} + + +# func_config +# ----------- +# Display the configuration for all the tags in this script. +func_config () +{ + re_begincf='^# ### BEGIN LIBTOOL' + re_endcf='^# ### END LIBTOOL' + + # Default configuration. + $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" + + # Now print the configurations for the tags. + for tagname in $taglist; do + $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" + done + + exit $? +} + + +# func_features +# ------------- +# Display the features supported by this script. +func_features () +{ + echo "host: $host" + if test yes = "$build_libtool_libs"; then + echo "enable shared libraries" + else + echo "disable shared libraries" + fi + if test yes = "$build_old_libs"; then + echo "enable static libraries" + else + echo "disable static libraries" + fi + + exit $? +} + + +# func_enable_tag TAGNAME +# ----------------------- +# Verify that TAGNAME is valid, and either flag an error and exit, or +# enable the TAGNAME tag. We also add TAGNAME to the global $taglist +# variable here. +func_enable_tag () +{ + # Global variable: + tagname=$1 + + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf=/$re_begincf/,/$re_endcf/p + + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac + + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; + *) + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" + + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac +} + + +# func_check_version_match +# ------------------------ +# Ensure that we are using m4 macros, and libtool script from the same +# release of libtool. +func_check_version_match () +{ + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from an older release. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + fi + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, +$progname: but the definition of this LT_INIT comes from revision $macro_revision. +$progname: You should recreate aclocal.m4 with macros from revision $package_revision +$progname: of $PACKAGE $VERSION and run autoconf again. +_LT_EOF + fi + + exit $EXIT_MISMATCH + fi +} + + +# libtool_options_prep [ARG]... +# ----------------------------- +# Preparation for options parsed by libtool. +libtool_options_prep () +{ + $debug_mode + + # Option defaults: + opt_config=false + opt_dlopen= + opt_dry_run=false + opt_help=false + opt_mode= + opt_preserve_dup_deps=false + opt_quiet=false + + nonopt= + preserve_args= + + # Shorthand for --mode=foo, only valid as the first argument + case $1 in + clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; + compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; + execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; + finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; + install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; + link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; + uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; + esac + + # Pass back the list of options. + func_quote_for_eval ${1+"$@"} + libtool_options_prep_result=$func_quote_for_eval_result +} +func_add_hook func_options_prep libtool_options_prep + + +# libtool_parse_options [ARG]... +# --------------------------------- +# Provide handling for libtool specific options. +libtool_parse_options () +{ + $debug_cmd + + # Perform our own loop to consume as many options as possible in + # each iteration. + while test $# -gt 0; do + _G_opt=$1 + shift + case $_G_opt in + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + + --config) func_config ;; + + --dlopen|-dlopen) + opt_dlopen="${opt_dlopen+$opt_dlopen +}$1" + shift + ;; + + --preserve-dup-deps) + opt_preserve_dup_deps=: ;; + + --features) func_features ;; + + --finish) set dummy --mode finish ${1+"$@"}; shift ;; + + --help) opt_help=: ;; + + --help-all) opt_help=': help-all' ;; + + --mode) test $# = 0 && func_missing_arg $_G_opt && break + opt_mode=$1 + case $1 in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $_G_opt" + exit_cmd=exit + break + ;; + esac + shift + ;; + + --no-silent|--no-quiet) + opt_quiet=false + func_append preserve_args " $_G_opt" + ;; + + --no-warnings|--no-warning|--no-warn) + opt_warning=false + func_append preserve_args " $_G_opt" + ;; + + --no-verbose) + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --silent|--quiet) + opt_quiet=: + opt_verbose=false + func_append preserve_args " $_G_opt" + ;; + + --tag) test $# = 0 && func_missing_arg $_G_opt && break + opt_tag=$1 + func_append preserve_args " $_G_opt $1" + func_enable_tag "$1" + shift + ;; + + --verbose|-v) opt_quiet=false + opt_verbose=: + func_append preserve_args " $_G_opt" + ;; + + # An option not handled by this hook function: + *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; + esac + done + + + # save modified positional parameters for caller + func_quote_for_eval ${1+"$@"} + libtool_parse_options_result=$func_quote_for_eval_result +} +func_add_hook func_parse_options libtool_parse_options + + + +# libtool_validate_options [ARG]... +# --------------------------------- +# Perform any sanity checks on option settings and/or unconsumed +# arguments. +libtool_validate_options () +{ + # save first non-option argument + if test 0 -lt $#; then + nonopt=$1 + shift + fi + + # preserve --debug + test : = "$debug_cmd" || func_append preserve_args " --debug" + + case $host in + # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 + # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 + *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + + $opt_help || { + # Sanity checks first: + func_check_version_match + + test yes != "$build_libtool_libs" \ + && test yes != "$build_old_libs" \ + && func_fatal_configuration "not configured to build any kind of library" + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test execute != "$opt_mode"; then + func_error "unrecognized option '-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help=$help + help="Try '$progname --help --mode=$opt_mode' for more information." + } + + # Pass back the unparsed argument list + func_quote_for_eval ${1+"$@"} + libtool_validate_options_result=$func_quote_for_eval_result +} +func_add_hook func_validate_options libtool_validate_options + + +# Process options as early as possible so that --help and --version +# can return quickly. +func_options ${1+"$@"} +eval set dummy "$func_options_result"; shift + + + +## ----------- ## +## Main. ## +## ----------- ## + +magic='%%%MAGIC variable%%%' +magic_exe='%%%MAGIC EXE variable%%%' + +# Global variables. +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# func_generated_by_libtool +# True iff stdin has been generated by Libtool. This function is only +# a basic sanity check; it will hardly flush out determined imposters. +func_generated_by_libtool_p () +{ + $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + +# func_lalib_p file +# True iff FILE is a libtool '.la' library or '.lo' object file. +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_lalib_p () +{ + test -f "$1" && + $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p +} + +# func_lalib_unsafe_p file +# True iff FILE is a libtool '.la' library or '.lo' object file. +# This function implements the same check as func_lalib_p without +# resorting to external programs. To this end, it redirects stdin and +# closes it afterwards, without saving the original file descriptor. +# As a safety measure, use it only where a negative result would be +# fatal anyway. Works if 'file' does not exist. +func_lalib_unsafe_p () +{ + lalib_p=no + if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then + for lalib_p_l in 1 2 3 4 + do + read lalib_p_line + case $lalib_p_line in + \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; + esac + done + exec 0<&5 5<&- + fi + test yes = "$lalib_p" +} + +# func_ltwrapper_script_p file +# True iff FILE is a libtool wrapper script +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_script_p () +{ + test -f "$1" && + $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p +} + +# func_ltwrapper_executable_p file +# True iff FILE is a libtool wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_executable_p () +{ + func_ltwrapper_exec_suffix= + case $1 in + *.exe) ;; + *) func_ltwrapper_exec_suffix=.exe ;; + esac + $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 +} + +# func_ltwrapper_scriptname file +# Assumes file is an ltwrapper_executable +# uses $file to determine the appropriate filename for a +# temporary ltwrapper_script. +func_ltwrapper_scriptname () +{ + func_dirname_and_basename "$1" "" "." + func_stripname '' '.exe' "$func_basename_result" + func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper +} + +# func_ltwrapper_p file +# True iff FILE is a libtool wrapper script or wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_p () +{ + func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" +} + + +# func_execute_cmds commands fail_cmd +# Execute tilde-delimited COMMANDS. +# If FAIL_CMD is given, eval that upon failure. +# FAIL_CMD may read-access the current command in variable CMD! +func_execute_cmds () +{ + $debug_cmd + + save_ifs=$IFS; IFS='~' + for cmd in $1; do + IFS=$sp$nl + eval cmd=\"$cmd\" + IFS=$save_ifs + func_show_eval "$cmd" "${2-:}" + done + IFS=$save_ifs +} + + +# func_source file +# Source FILE, adding directory component if necessary. +# Note that it is not necessary on cygwin/mingw to append a dot to +# FILE even if both FILE and FILE.exe exist: automatic-append-.exe +# behavior happens only for exec(3), not for open(2)! Also, sourcing +# 'FILE.' does not work on cygwin managed mounts. +func_source () +{ + $debug_cmd + + case $1 in + */* | *\\*) . "$1" ;; + *) . "./$1" ;; + esac +} + + +# func_resolve_sysroot PATH +# Replace a leading = in PATH with a sysroot. Store the result into +# func_resolve_sysroot_result +func_resolve_sysroot () +{ + func_resolve_sysroot_result=$1 + case $func_resolve_sysroot_result in + =*) + func_stripname '=' '' "$func_resolve_sysroot_result" + func_resolve_sysroot_result=$lt_sysroot$func_stripname_result + ;; + esac +} + +# func_replace_sysroot PATH +# If PATH begins with the sysroot, replace it with = and +# store the result into func_replace_sysroot_result. +func_replace_sysroot () +{ + case $lt_sysroot:$1 in + ?*:"$lt_sysroot"*) + func_stripname "$lt_sysroot" '' "$1" + func_replace_sysroot_result='='$func_stripname_result + ;; + *) + # Including no sysroot. + func_replace_sysroot_result=$1 + ;; + esac +} + +# func_infer_tag arg +# Infer tagged configuration to use if any are available and +# if one wasn't chosen via the "--tag" command line option. +# Only attempt this if the compiler in the base compile +# command doesn't match the default compiler. +# arg is usually of the form 'gcc ...' +func_infer_tag () +{ + $debug_cmd + + if test -n "$available_tags" && test -z "$tagname"; then + CC_quoted= + for arg in $CC; do + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case $@ in + # Blanks in the command may have been stripped by the calling shell, + # but not from the CC environment variable when configure was run. + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; + # Blanks at the start of $base_compile will cause this to fail + # if we don't check for them as well. + *) + for z in $available_tags; do + if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then + # Evaluate the configuration. + eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + CC_quoted= + for arg in $CC; do + # Double-quote args containing other shell metacharacters. + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case "$@ " in + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) + # The compiler in the base compile command matches + # the one in the tagged configuration. + # Assume this is the tagged configuration we want. + tagname=$z + break + ;; + esac + fi + done + # If $tagname still isn't set, then no tagged configuration + # was found and let the user know that the "--tag" command + # line option must be used. + if test -z "$tagname"; then + func_echo "unable to infer tagged configuration" + func_fatal_error "specify a tag with '--tag'" +# else +# func_verbose "using $tagname tagged configuration" + fi + ;; + esac + fi +} + + + +# func_write_libtool_object output_name pic_name nonpic_name +# Create a libtool object file (analogous to a ".la" file), +# but don't create it if we're doing a dry run. +func_write_libtool_object () +{ + write_libobj=$1 + if test yes = "$build_libtool_libs"; then + write_lobj=\'$2\' + else + write_lobj=none + fi + + if test yes = "$build_old_libs"; then + write_oldobj=\'$3\' + else + write_oldobj=none + fi + + $opt_dry_run || { + cat >${write_libobj}T </dev/null` + if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then + func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | + $SED -e "$sed_naive_backslashify"` + else + func_convert_core_file_wine_to_w32_result= + fi + fi +} +# end: func_convert_core_file_wine_to_w32 + + +# func_convert_core_path_wine_to_w32 ARG +# Helper function used by path conversion functions when $build is *nix, and +# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly +# configured wine environment available, with the winepath program in $build's +# $PATH. Assumes ARG has no leading or trailing path separator characters. +# +# ARG is path to be converted from $build format to win32. +# Result is available in $func_convert_core_path_wine_to_w32_result. +# Unconvertible file (directory) names in ARG are skipped; if no directory names +# are convertible, then the result may be empty. +func_convert_core_path_wine_to_w32 () +{ + $debug_cmd + + # unfortunately, winepath doesn't convert paths, only file names + func_convert_core_path_wine_to_w32_result= + if test -n "$1"; then + oldIFS=$IFS + IFS=: + for func_convert_core_path_wine_to_w32_f in $1; do + IFS=$oldIFS + func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" + if test -n "$func_convert_core_file_wine_to_w32_result"; then + if test -z "$func_convert_core_path_wine_to_w32_result"; then + func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result + else + func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" + fi + fi + done + IFS=$oldIFS + fi +} +# end: func_convert_core_path_wine_to_w32 + + +# func_cygpath ARGS... +# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when +# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) +# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or +# (2), returns the Cygwin file name or path in func_cygpath_result (input +# file name or path is assumed to be in w32 format, as previously converted +# from $build's *nix or MSYS format). In case (3), returns the w32 file name +# or path in func_cygpath_result (input file name or path is assumed to be in +# Cygwin format). Returns an empty string on error. +# +# ARGS are passed to cygpath, with the last one being the file name or path to +# be converted. +# +# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH +# environment variable; do not put it in $PATH. +func_cygpath () +{ + $debug_cmd + + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then + func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` + if test "$?" -ne 0; then + # on failure, ensure result is empty + func_cygpath_result= + fi + else + func_cygpath_result= + func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" + fi +} +#end: func_cygpath + + +# func_convert_core_msys_to_w32 ARG +# Convert file name or path ARG from MSYS format to w32 format. Return +# result in func_convert_core_msys_to_w32_result. +func_convert_core_msys_to_w32 () +{ + $debug_cmd + + # awkward: cmd appends spaces to result + func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | + $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` +} +#end: func_convert_core_msys_to_w32 + + +# func_convert_file_check ARG1 ARG2 +# Verify that ARG1 (a file name in $build format) was converted to $host +# format in ARG2. Otherwise, emit an error message, but continue (resetting +# func_to_host_file_result to ARG1). +func_convert_file_check () +{ + $debug_cmd + + if test -z "$2" && test -n "$1"; then + func_error "Could not determine host file name corresponding to" + func_error " '$1'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback: + func_to_host_file_result=$1 + fi +} +# end func_convert_file_check + + +# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH +# Verify that FROM_PATH (a path in $build format) was converted to $host +# format in TO_PATH. Otherwise, emit an error message, but continue, resetting +# func_to_host_file_result to a simplistic fallback value (see below). +func_convert_path_check () +{ + $debug_cmd + + if test -z "$4" && test -n "$3"; then + func_error "Could not determine the host path corresponding to" + func_error " '$3'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback. This is a deliberately simplistic "conversion" and + # should not be "improved". See libtool.info. + if test "x$1" != "x$2"; then + lt_replace_pathsep_chars="s|$1|$2|g" + func_to_host_path_result=`echo "$3" | + $SED -e "$lt_replace_pathsep_chars"` + else + func_to_host_path_result=$3 + fi + fi +} +# end func_convert_path_check + + +# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG +# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT +# and appending REPL if ORIG matches BACKPAT. +func_convert_path_front_back_pathsep () +{ + $debug_cmd + + case $4 in + $1 ) func_to_host_path_result=$3$func_to_host_path_result + ;; + esac + case $4 in + $2 ) func_append func_to_host_path_result "$3" + ;; + esac +} +# end func_convert_path_front_back_pathsep + + +################################################## +# $build to $host FILE NAME CONVERSION FUNCTIONS # +################################################## +# invoked via '$to_host_file_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# Result will be available in $func_to_host_file_result. + + +# func_to_host_file ARG +# Converts the file name ARG from $build format to $host format. Return result +# in func_to_host_file_result. +func_to_host_file () +{ + $debug_cmd + + $to_host_file_cmd "$1" +} +# end func_to_host_file + + +# func_to_tool_file ARG LAZY +# converts the file name ARG from $build format to toolchain format. Return +# result in func_to_tool_file_result. If the conversion in use is listed +# in (the comma separated) LAZY, no conversion takes place. +func_to_tool_file () +{ + $debug_cmd + + case ,$2, in + *,"$to_tool_file_cmd",*) + func_to_tool_file_result=$1 + ;; + *) + $to_tool_file_cmd "$1" + func_to_tool_file_result=$func_to_host_file_result + ;; + esac +} +# end func_to_tool_file + + +# func_convert_file_noop ARG +# Copy ARG to func_to_host_file_result. +func_convert_file_noop () +{ + func_to_host_file_result=$1 +} +# end func_convert_file_noop + + +# func_convert_file_msys_to_w32 ARG +# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_file_result. +func_convert_file_msys_to_w32 () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_to_host_file_result=$func_convert_core_msys_to_w32_result + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_w32 + + +# func_convert_file_cygwin_to_w32 ARG +# Convert file name ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_file_cygwin_to_w32 () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + # because $build is cygwin, we call "the" cygpath in $PATH; no need to use + # LT_CYGPATH in this case. + func_to_host_file_result=`cygpath -m "$1"` + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_cygwin_to_w32 + + +# func_convert_file_nix_to_w32 ARG +# Convert file name ARG from *nix to w32 format. Requires a wine environment +# and a working winepath. Returns result in func_to_host_file_result. +func_convert_file_nix_to_w32 () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + func_convert_core_file_wine_to_w32 "$1" + func_to_host_file_result=$func_convert_core_file_wine_to_w32_result + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_w32 + + +# func_convert_file_msys_to_cygwin ARG +# Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_file_msys_to_cygwin () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_cygpath -u "$func_convert_core_msys_to_w32_result" + func_to_host_file_result=$func_cygpath_result + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_cygwin + + +# func_convert_file_nix_to_cygwin ARG +# Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed +# in a wine environment, working winepath, and LT_CYGPATH set. Returns result +# in func_to_host_file_result. +func_convert_file_nix_to_cygwin () +{ + $debug_cmd + + func_to_host_file_result=$1 + if test -n "$1"; then + # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. + func_convert_core_file_wine_to_w32 "$1" + func_cygpath -u "$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result=$func_cygpath_result + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_cygwin + + +############################################# +# $build to $host PATH CONVERSION FUNCTIONS # +############################################# +# invoked via '$to_host_path_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# The result will be available in $func_to_host_path_result. +# +# Path separators are also converted from $build format to $host format. If +# ARG begins or ends with a path separator character, it is preserved (but +# converted to $host format) on output. +# +# All path conversion functions are named using the following convention: +# file name conversion function : func_convert_file_X_to_Y () +# path conversion function : func_convert_path_X_to_Y () +# where, for any given $build/$host combination the 'X_to_Y' value is the +# same. If conversion functions are added for new $build/$host combinations, +# the two new functions must follow this pattern, or func_init_to_host_path_cmd +# will break. + + +# func_init_to_host_path_cmd +# Ensures that function "pointer" variable $to_host_path_cmd is set to the +# appropriate value, based on the value of $to_host_file_cmd. +to_host_path_cmd= +func_init_to_host_path_cmd () +{ + $debug_cmd + + if test -z "$to_host_path_cmd"; then + func_stripname 'func_convert_file_' '' "$to_host_file_cmd" + to_host_path_cmd=func_convert_path_$func_stripname_result + fi +} + + +# func_to_host_path ARG +# Converts the path ARG from $build format to $host format. Return result +# in func_to_host_path_result. +func_to_host_path () +{ + $debug_cmd + + func_init_to_host_path_cmd + $to_host_path_cmd "$1" +} +# end func_to_host_path + + +# func_convert_path_noop ARG +# Copy ARG to func_to_host_path_result. +func_convert_path_noop () +{ + func_to_host_path_result=$1 +} +# end func_convert_path_noop + + +# func_convert_path_msys_to_w32 ARG +# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_path_result. +func_convert_path_msys_to_w32 () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # Remove leading and trailing path separator characters from ARG. MSYS + # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; + # and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result=$func_convert_core_msys_to_w32_result + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_msys_to_w32 + + +# func_convert_path_cygwin_to_w32 ARG +# Convert path ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_path_cygwin_to_w32 () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_cygwin_to_w32 + + +# func_convert_path_nix_to_w32 ARG +# Convert path ARG from *nix to w32 format. Requires a wine environment and +# a working winepath. Returns result in func_to_host_file_result. +func_convert_path_nix_to_w32 () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result=$func_convert_core_path_wine_to_w32_result + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_nix_to_w32 + + +# func_convert_path_msys_to_cygwin ARG +# Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_path_msys_to_cygwin () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_msys_to_w32_result" + func_to_host_path_result=$func_cygpath_result + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_msys_to_cygwin + + +# func_convert_path_nix_to_cygwin ARG +# Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a +# a wine environment, working winepath, and LT_CYGPATH set. Returns result in +# func_to_host_file_result. +func_convert_path_nix_to_cygwin () +{ + $debug_cmd + + func_to_host_path_result=$1 + if test -n "$1"; then + # Remove leading and trailing path separator characters from + # ARG. msys behavior is inconsistent here, cygpath turns them + # into '.;' and ';.', and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result=$func_cygpath_result + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_nix_to_cygwin + + +# func_dll_def_p FILE +# True iff FILE is a Windows DLL '.def' file. +# Keep in sync with _LT_DLL_DEF_P in libtool.m4 +func_dll_def_p () +{ + $debug_cmd + + func_dll_def_p_tmp=`$SED -n \ + -e 's/^[ ]*//' \ + -e '/^\(;.*\)*$/d' \ + -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ + -e q \ + "$1"` + test DEF = "$func_dll_def_p_tmp" +} + + +# func_mode_compile arg... +func_mode_compile () +{ + $debug_cmd + + # Get the compilation command and the source file. + base_compile= + srcfile=$nonopt # always keep a non-empty value in "srcfile" + suppress_opt=yes + suppress_output= + arg_mode=normal + libobj= + later= + pie_flag= + + for arg + do + case $arg_mode in + arg ) + # do not "continue". Instead, add this to base_compile + lastarg=$arg + arg_mode=normal + ;; + + target ) + libobj=$arg + arg_mode=normal + continue + ;; + + normal ) + # Accept any command-line options. + case $arg in + -o) + test -n "$libobj" && \ + func_fatal_error "you cannot specify '-o' more than once" + arg_mode=target + continue + ;; + + -pie | -fpie | -fPIE) + func_append pie_flag " $arg" + continue + ;; + + -shared | -static | -prefer-pic | -prefer-non-pic) + func_append later " $arg" + continue + ;; + + -no-suppress) + suppress_opt=no + continue + ;; + + -Xcompiler) + arg_mode=arg # the next one goes into the "base_compile" arg list + continue # The current "srcfile" will either be retained or + ;; # replaced later. I would guess that would be a bug. + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + lastarg= + save_ifs=$IFS; IFS=, + for arg in $args; do + IFS=$save_ifs + func_append_quoted lastarg "$arg" + done + IFS=$save_ifs + func_stripname ' ' '' "$lastarg" + lastarg=$func_stripname_result + + # Add the arguments to base_compile. + func_append base_compile " $lastarg" + continue + ;; + + *) + # Accept the current argument as the source file. + # The previous "srcfile" becomes the current argument. + # + lastarg=$srcfile + srcfile=$arg + ;; + esac # case $arg + ;; + esac # case $arg_mode + + # Aesthetically quote the previous argument. + func_append_quoted base_compile "$lastarg" + done # for arg + + case $arg_mode in + arg) + func_fatal_error "you must specify an argument for -Xcompile" + ;; + target) + func_fatal_error "you must specify a target with '-o'" + ;; + *) + # Get the name of the library object. + test -z "$libobj" && { + func_basename "$srcfile" + libobj=$func_basename_result + } + ;; + esac + + # Recognize several different file suffixes. + # If the user specifies -o file.o, it is replaced with file.lo + case $libobj in + *.[cCFSifmso] | \ + *.ada | *.adb | *.ads | *.asm | \ + *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ + *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) + func_xform "$libobj" + libobj=$func_xform_result + ;; + esac + + case $libobj in + *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; + *) + func_fatal_error "cannot determine name of library object from '$libobj'" + ;; + esac + + func_infer_tag $base_compile + + for arg in $later; do + case $arg in + -shared) + test yes = "$build_libtool_libs" \ + || func_fatal_configuration "cannot build a shared library" + build_old_libs=no + continue + ;; + + -static) + build_libtool_libs=no + build_old_libs=yes + continue + ;; + + -prefer-pic) + pic_mode=yes + continue + ;; + + -prefer-non-pic) + pic_mode=no + continue + ;; + esac + done + + func_quote_for_eval "$libobj" + test "X$libobj" != "X$func_quote_for_eval_result" \ + && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ + && func_warning "libobj name '$libobj' may not contain shell special characters." + func_dirname_and_basename "$obj" "/" "" + objname=$func_basename_result + xdir=$func_dirname_result + lobj=$xdir$objdir/$objname + + test -z "$base_compile" && \ + func_fatal_help "you must specify a compilation command" + + # Delete any leftover library objects. + if test yes = "$build_old_libs"; then + removelist="$obj $lobj $libobj ${libobj}T" + else + removelist="$lobj $libobj ${libobj}T" + fi + + # On Cygwin there's no "real" PIC flag so we must build both object types + case $host_os in + cygwin* | mingw* | pw32* | os2* | cegcc*) + pic_mode=default + ;; + esac + if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then + # non-PIC code in shared libraries is not supported + pic_mode=default + fi + + # Calculate the filename of the output object if compiler does + # not support -o with -c + if test no = "$compiler_c_o"; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext + lockfile=$output_obj.lock + else + output_obj= + need_locks=no + lockfile= + fi + + # Lock this critical section if it is needed + # We use this script file to make the link, it avoids creating a new file + if test yes = "$need_locks"; then + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + elif test warn = "$need_locks"; then + if test -f "$lockfile"; then + $ECHO "\ +*** ERROR, $lockfile exists and contains: +`cat $lockfile 2>/dev/null` + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support '-c' and '-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + func_append removelist " $output_obj" + $ECHO "$srcfile" > "$lockfile" + fi + + $opt_dry_run || $RM $removelist + func_append removelist " $lockfile" + trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 + + func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 + srcfile=$func_to_tool_file_result + func_quote_for_eval "$srcfile" + qsrcfile=$func_quote_for_eval_result + + # Only build a PIC object if we are building libtool libraries. + if test yes = "$build_libtool_libs"; then + # Without this assignment, base_compile gets emptied. + fbsd_hideous_sh_bug=$base_compile + + if test no != "$pic_mode"; then + command="$base_compile $qsrcfile $pic_flag" + else + # Don't build PIC code + command="$base_compile $qsrcfile" + fi + + func_mkdir_p "$xdir$objdir" + + if test -z "$output_obj"; then + # Place PIC objects in $objdir + func_append command " -o $lobj" + fi + + func_show_eval_locale "$command" \ + 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' + + if test warn = "$need_locks" && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support '-c' and '-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed, then go on to compile the next one + if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then + func_show_eval '$MV "$output_obj" "$lobj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + + # Allow error messages only from the first compilation. + if test yes = "$suppress_opt"; then + suppress_output=' >/dev/null 2>&1' + fi + fi + + # Only build a position-dependent object if we build old libraries. + if test yes = "$build_old_libs"; then + if test yes != "$pic_mode"; then + # Don't build PIC code + command="$base_compile $qsrcfile$pie_flag" + else + command="$base_compile $qsrcfile $pic_flag" + fi + if test yes = "$compiler_c_o"; then + func_append command " -o $obj" + fi + + # Suppress compiler output if we already did a PIC compilation. + func_append command "$suppress_output" + func_show_eval_locale "$command" \ + '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' + + if test warn = "$need_locks" && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support '-c' and '-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed + if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then + func_show_eval '$MV "$output_obj" "$obj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + fi + + $opt_dry_run || { + func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" + + # Unlock the critical section if it was locked + if test no != "$need_locks"; then + removelist=$lockfile + $RM "$lockfile" + fi + } + + exit $EXIT_SUCCESS +} + +$opt_help || { + test compile = "$opt_mode" && func_mode_compile ${1+"$@"} +} + +func_mode_help () +{ + # We need to display help for each of the modes. + case $opt_mode in + "") + # Generic help is extracted from the usage comments + # at the start of this file. + func_help + ;; + + clean) + $ECHO \ +"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... + +Remove files from the build directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed +to RM. + +If FILE is a libtool library, object or program, all the files associated +with it are deleted. Otherwise, only FILE itself is deleted using RM." + ;; + + compile) + $ECHO \ +"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE + +Compile a source file into a libtool library object. + +This mode accepts the following additional options: + + -o OUTPUT-FILE set the output file name to OUTPUT-FILE + -no-suppress do not suppress compiler output for multiple passes + -prefer-pic try to build PIC objects only + -prefer-non-pic try to build non-PIC objects only + -shared do not build a '.o' file suitable for static linking + -static only build a '.o' file suitable for static linking + -Wc,FLAG pass FLAG directly to the compiler + +COMPILE-COMMAND is a command to be used in creating a 'standard' object file +from the given SOURCEFILE. + +The output file name is determined by removing the directory component from +SOURCEFILE, then substituting the C source code suffix '.c' with the +library object suffix, '.lo'." + ;; + + execute) + $ECHO \ +"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... + +Automatically set library path, then run a program. + +This mode accepts the following additional options: + + -dlopen FILE add the directory containing FILE to the library path + +This mode sets the library path environment variable according to '-dlopen' +flags. + +If any of the ARGS are libtool executable wrappers, then they are translated +into their corresponding uninstalled binary, and any of their required library +directories are added to the library path. + +Then, COMMAND is executed, with ARGS as arguments." + ;; + + finish) + $ECHO \ +"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... + +Complete the installation of libtool libraries. + +Each LIBDIR is a directory that contains libtool libraries. + +The commands that this mode executes may require superuser privileges. Use +the '--dry-run' option if you just want to see what would be executed." + ;; + + install) + $ECHO \ +"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... + +Install executables or libraries. + +INSTALL-COMMAND is the installation command. The first component should be +either the 'install' or 'cp' program. + +The following components of INSTALL-COMMAND are treated specially: + + -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation + +The rest of the components are interpreted as arguments to that command (only +BSD-compatible install options are recognized)." + ;; + + link) + $ECHO \ +"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... + +Link object files or libraries together to form another library, or to +create an executable program. + +LINK-COMMAND is a command using the C compiler that you would use to create +a program from several object files. + +The following components of LINK-COMMAND are treated specially: + + -all-static do not do any dynamic linking at all + -avoid-version do not add a version suffix if possible + -bindir BINDIR specify path to binaries directory (for systems where + libraries must be found in the PATH setting at runtime) + -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime + -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols + -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) + -export-symbols SYMFILE + try to export only the symbols listed in SYMFILE + -export-symbols-regex REGEX + try to export only the symbols matching REGEX + -LLIBDIR search LIBDIR for required installed libraries + -lNAME OUTPUT-FILE requires the installed library libNAME + -module build a library that can dlopened + -no-fast-install disable the fast-install mode + -no-install link a not-installable executable + -no-undefined declare that a library does not refer to external symbols + -o OUTPUT-FILE create OUTPUT-FILE from the specified objects + -objectlist FILE use a list of object files found in FILE to specify objects + -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) + -precious-files-regex REGEX + don't remove output files matching REGEX + -release RELEASE specify package release information + -rpath LIBDIR the created library will eventually be installed in LIBDIR + -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries + -shared only do dynamic linking of libtool libraries + -shrext SUFFIX override the standard shared library file extension + -static do not do any dynamic linking of uninstalled libtool libraries + -static-libtool-libs + do not do any dynamic linking of libtool libraries + -version-info CURRENT[:REVISION[:AGE]] + specify library version info [each variable defaults to 0] + -weak LIBNAME declare that the target provides the LIBNAME interface + -Wc,FLAG + -Xcompiler FLAG pass linker-specific FLAG directly to the compiler + -Wl,FLAG + -Xlinker FLAG pass linker-specific FLAG directly to the linker + -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) + +All other options (arguments beginning with '-') are ignored. + +Every other argument is treated as a filename. Files ending in '.la' are +treated as uninstalled libtool libraries, other files are standard or library +object files. + +If the OUTPUT-FILE ends in '.la', then a libtool library is created, +only library objects ('.lo' files) may be specified, and '-rpath' is +required, except when creating a convenience library. + +If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created +using 'ar' and 'ranlib', or on Windows using 'lib'. + +If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file +is created, otherwise an executable program is created." + ;; + + uninstall) + $ECHO \ +"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... + +Remove libraries from an installation directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed +to RM. + +If FILE is a libtool library, all the files associated with it are deleted. +Otherwise, only FILE itself is deleted using RM." + ;; + + *) + func_fatal_help "invalid operation mode '$opt_mode'" + ;; + esac + + echo + $ECHO "Try '$progname --help' for more information about other modes." +} + +# Now that we've collected a possible --mode arg, show help if necessary +if $opt_help; then + if test : = "$opt_help"; then + func_mode_help + else + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + func_mode_help + done + } | $SED -n '1p; 2,$s/^Usage:/ or: /p' + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + echo + func_mode_help + done + } | + $SED '1d + /^When reporting/,/^Report/{ + H + d + } + $x + /information about other modes/d + /more detailed .*MODE/d + s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' + fi + exit $? +fi + + +# func_mode_execute arg... +func_mode_execute () +{ + $debug_cmd + + # The first argument is the command name. + cmd=$nonopt + test -z "$cmd" && \ + func_fatal_help "you must specify a COMMAND" + + # Handle -dlopen flags immediately. + for file in $opt_dlopen; do + test -f "$file" \ + || func_fatal_help "'$file' is not a file" + + dir= + case $file in + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "'$lib' is not a valid libtool archive" + + # Read the libtool library. + dlname= + library_names= + func_source "$file" + + # Skip this library if it cannot be dlopened. + if test -z "$dlname"; then + # Warn if it was a shared library. + test -n "$library_names" && \ + func_warning "'$file' was not linked with '-export-dynamic'" + continue + fi + + func_dirname "$file" "" "." + dir=$func_dirname_result + + if test -f "$dir/$objdir/$dlname"; then + func_append dir "/$objdir" + else + if test ! -f "$dir/$dlname"; then + func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" + fi + fi + ;; + + *.lo) + # Just add the directory containing the .lo file. + func_dirname "$file" "" "." + dir=$func_dirname_result + ;; + + *) + func_warning "'-dlopen' is ignored for non-libtool libraries and objects" + continue + ;; + esac + + # Get the absolute pathname. + absdir=`cd "$dir" && pwd` + test -n "$absdir" && dir=$absdir + + # Now add the directory to shlibpath_var. + if eval "test -z \"\$$shlibpath_var\""; then + eval "$shlibpath_var=\"\$dir\"" + else + eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" + fi + done + + # This variable tells wrapper scripts just to set shlibpath_var + # rather than running their programs. + libtool_execute_magic=$magic + + # Check if any of the arguments is a wrapper script. + args= + for file + do + case $file in + -* | *.la | *.lo ) ;; + *) + # Do a test to see if this is really a libtool program. + if func_ltwrapper_script_p "$file"; then + func_source "$file" + # Transform arg to wrapped name. + file=$progdir/$program + elif func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + func_source "$func_ltwrapper_scriptname_result" + # Transform arg to wrapped name. + file=$progdir/$program + fi + ;; + esac + # Quote arguments (to preserve shell metacharacters). + func_append_quoted args "$file" + done + + if $opt_dry_run; then + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + else + if test -n "$shlibpath_var"; then + # Export the shlibpath_var. + eval "export $shlibpath_var" + fi + + # Restore saved environment variables + for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES + do + eval "if test \"\${save_$lt_var+set}\" = set; then + $lt_var=\$save_$lt_var; export $lt_var + else + $lt_unset $lt_var + fi" + done + + # Now prepare to actually exec the command. + exec_cmd=\$cmd$args + fi +} + +test execute = "$opt_mode" && func_mode_execute ${1+"$@"} + + +# func_mode_finish arg... +func_mode_finish () +{ + $debug_cmd + + libs= + libdirs= + admincmds= + + for opt in "$nonopt" ${1+"$@"} + do + if test -d "$opt"; then + func_append libdirs " $opt" + + elif test -f "$opt"; then + if func_lalib_unsafe_p "$opt"; then + func_append libs " $opt" + else + func_warning "'$opt' is not a valid libtool archive" + fi + + else + func_fatal_error "invalid argument '$opt'" + fi + done + + if test -n "$libs"; then + if test -n "$lt_sysroot"; then + sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` + sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" + else + sysroot_cmd= + fi + + # Remove sysroot references + if $opt_dry_run; then + for lib in $libs; do + echo "removing references to $lt_sysroot and '=' prefixes from $lib" + done + else + tmpdir=`func_mktempdir` + for lib in $libs; do + $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + > $tmpdir/tmp-la + mv -f $tmpdir/tmp-la $lib + done + ${RM}r "$tmpdir" + fi + fi + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + for libdir in $libdirs; do + if test -n "$finish_cmds"; then + # Do each command in the finish commands. + func_execute_cmds "$finish_cmds" 'admincmds="$admincmds +'"$cmd"'"' + fi + if test -n "$finish_eval"; then + # Do the single finish_eval. + eval cmds=\"$finish_eval\" + $opt_dry_run || eval "$cmds" || func_append admincmds " + $cmds" + fi + done + fi + + # Exit here if they wanted silent mode. + $opt_quiet && exit $EXIT_SUCCESS + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + echo "----------------------------------------------------------------------" + echo "Libraries have been installed in:" + for libdir in $libdirs; do + $ECHO " $libdir" + done + echo + echo "If you ever happen to want to link against installed libraries" + echo "in a given directory, LIBDIR, you must either use libtool, and" + echo "specify the full pathname of the library, or use the '-LLIBDIR'" + echo "flag during linking and do at least one of the following:" + if test -n "$shlibpath_var"; then + echo " - add LIBDIR to the '$shlibpath_var' environment variable" + echo " during execution" + fi + if test -n "$runpath_var"; then + echo " - add LIBDIR to the '$runpath_var' environment variable" + echo " during linking" + fi + if test -n "$hardcode_libdir_flag_spec"; then + libdir=LIBDIR + eval flag=\"$hardcode_libdir_flag_spec\" + + $ECHO " - use the '$flag' linker flag" + fi + if test -n "$admincmds"; then + $ECHO " - have your system administrator run these commands:$admincmds" + fi + if test -f /etc/ld.so.conf; then + echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" + fi + echo + + echo "See any operating system documentation about shared libraries for" + case $host in + solaris2.[6789]|solaris2.1[0-9]) + echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" + echo "pages." + ;; + *) + echo "more information, such as the ld(1) and ld.so(8) manual pages." + ;; + esac + echo "----------------------------------------------------------------------" + fi + exit $EXIT_SUCCESS +} + +test finish = "$opt_mode" && func_mode_finish ${1+"$@"} + + +# func_mode_install arg... +func_mode_install () +{ + $debug_cmd + + # There may be an optional sh(1) argument at the beginning of + # install_prog (especially on Windows NT). + if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || + # Allow the use of GNU shtool's install command. + case $nonopt in *shtool*) :;; *) false;; esac + then + # Aesthetically quote it. + func_quote_for_eval "$nonopt" + install_prog="$func_quote_for_eval_result " + arg=$1 + shift + else + install_prog= + arg=$nonopt + fi + + # The real first argument should be the name of the installation program. + # Aesthetically quote it. + func_quote_for_eval "$arg" + func_append install_prog "$func_quote_for_eval_result" + install_shared_prog=$install_prog + case " $install_prog " in + *[\\\ /]cp\ *) install_cp=: ;; + *) install_cp=false ;; + esac + + # We need to accept at least all the BSD install flags. + dest= + files= + opts= + prev= + install_type= + isdir=false + stripme= + no_mode=: + for arg + do + arg2= + if test -n "$dest"; then + func_append files " $dest" + dest=$arg + continue + fi + + case $arg in + -d) isdir=: ;; + -f) + if $install_cp; then :; else + prev=$arg + fi + ;; + -g | -m | -o) + prev=$arg + ;; + -s) + stripme=" -s" + continue + ;; + -*) + ;; + *) + # If the previous option needed an argument, then skip it. + if test -n "$prev"; then + if test X-m = "X$prev" && test -n "$install_override_mode"; then + arg2=$install_override_mode + no_mode=false + fi + prev= + else + dest=$arg + continue + fi + ;; + esac + + # Aesthetically quote the argument. + func_quote_for_eval "$arg" + func_append install_prog " $func_quote_for_eval_result" + if test -n "$arg2"; then + func_quote_for_eval "$arg2" + fi + func_append install_shared_prog " $func_quote_for_eval_result" + done + + test -z "$install_prog" && \ + func_fatal_help "you must specify an install program" + + test -n "$prev" && \ + func_fatal_help "the '$prev' option requires an argument" + + if test -n "$install_override_mode" && $no_mode; then + if $install_cp; then :; else + func_quote_for_eval "$install_override_mode" + func_append install_shared_prog " -m $func_quote_for_eval_result" + fi + fi + + if test -z "$files"; then + if test -z "$dest"; then + func_fatal_help "no file or destination specified" + else + func_fatal_help "you must specify a destination" + fi + fi + + # Strip any trailing slash from the destination. + func_stripname '' '/' "$dest" + dest=$func_stripname_result + + # Check to see that the destination is a directory. + test -d "$dest" && isdir=: + if $isdir; then + destdir=$dest + destname= + else + func_dirname_and_basename "$dest" "" "." + destdir=$func_dirname_result + destname=$func_basename_result + + # Not a directory, so check to see that there is only one file specified. + set dummy $files; shift + test "$#" -gt 1 && \ + func_fatal_help "'$dest' is not a directory" + fi + case $destdir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + for file in $files; do + case $file in + *.lo) ;; + *) + func_fatal_help "'$destdir' must be an absolute directory name" + ;; + esac + done + ;; + esac + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic=$magic + + staticlibs= + future_libdirs= + current_libdirs= + for file in $files; do + + # Do each installation. + case $file in + *.$libext) + # Do the static libraries later. + func_append staticlibs " $file" + ;; + + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "'$file' is not a valid libtool archive" + + library_names= + old_library= + relink_command= + func_source "$file" + + # Add the libdir to current_libdirs if it is the destination. + if test "X$destdir" = "X$libdir"; then + case "$current_libdirs " in + *" $libdir "*) ;; + *) func_append current_libdirs " $libdir" ;; + esac + else + # Note the libdir as a future libdir. + case "$future_libdirs " in + *" $libdir "*) ;; + *) func_append future_libdirs " $libdir" ;; + esac + fi + + func_dirname "$file" "/" "" + dir=$func_dirname_result + func_append dir "$objdir" + + if test -n "$relink_command"; then + # Determine the prefix the user has applied to our future dir. + inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` + + # Don't allow the user to place us outside of our expected + # location b/c this prevents finding dependent libraries that + # are installed to the same prefix. + # At present, this check doesn't affect windows .dll's that + # are installed into $libdir/../bin (currently, that works fine) + # but it's something to keep an eye on. + test "$inst_prefix_dir" = "$destdir" && \ + func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" + + if test -n "$inst_prefix_dir"; then + # Stick the inst_prefix_dir data into the link command. + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` + else + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` + fi + + func_warning "relinking '$file'" + func_show_eval "$relink_command" \ + 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' + fi + + # See the names of the shared library. + set dummy $library_names; shift + if test -n "$1"; then + realname=$1 + shift + + srcname=$realname + test -n "$relink_command" && srcname=${realname}T + + # Install the shared library and build the symlinks. + func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ + 'exit $?' + tstripme=$stripme + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + case $realname in + *.dll.a) + tstripme= + ;; + esac + ;; + os2*) + case $realname in + *_dll.a) + tstripme= + ;; + esac + ;; + esac + if test -n "$tstripme" && test -n "$striplib"; then + func_show_eval "$striplib $destdir/$realname" 'exit $?' + fi + + if test "$#" -gt 0; then + # Delete the old symlinks, and create new ones. + # Try 'ln -sf' first, because the 'ln' binary might depend on + # the symlink we replace! Solaris /bin/ln does not understand -f, + # so we also need to try rm && ln -s. + for linkname + do + test "$linkname" != "$realname" \ + && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" + done + fi + + # Do each command in the postinstall commands. + lib=$destdir/$realname + func_execute_cmds "$postinstall_cmds" 'exit $?' + fi + + # Install the pseudo-library for information purposes. + func_basename "$file" + name=$func_basename_result + instname=$dir/${name}i + func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' + + # Maybe install the static library, too. + test -n "$old_library" && func_append staticlibs " $dir/$old_library" + ;; + + *.lo) + # Install (i.e. copy) a libtool object. + + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile=$destdir/$destname + else + func_basename "$file" + destfile=$func_basename_result + destfile=$destdir/$destfile + fi + + # Deduce the name of the destination old-style object file. + case $destfile in + *.lo) + func_lo2o "$destfile" + staticdest=$func_lo2o_result + ;; + *.$objext) + staticdest=$destfile + destfile= + ;; + *) + func_fatal_help "cannot copy a libtool object to '$destfile'" + ;; + esac + + # Install the libtool object if requested. + test -n "$destfile" && \ + func_show_eval "$install_prog $file $destfile" 'exit $?' + + # Install the old object if enabled. + if test yes = "$build_old_libs"; then + # Deduce the name of the old-style object file. + func_lo2o "$file" + staticobj=$func_lo2o_result + func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' + fi + exit $EXIT_SUCCESS + ;; + + *) + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile=$destdir/$destname + else + func_basename "$file" + destfile=$func_basename_result + destfile=$destdir/$destfile + fi + + # If the file is missing, and there is a .exe on the end, strip it + # because it is most likely a libtool script we actually want to + # install + stripped_ext= + case $file in + *.exe) + if test ! -f "$file"; then + func_stripname '' '.exe' "$file" + file=$func_stripname_result + stripped_ext=.exe + fi + ;; + esac + + # Do a test to see if this is really a libtool program. + case $host in + *cygwin* | *mingw*) + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + wrapper=$func_ltwrapper_scriptname_result + else + func_stripname '' '.exe' "$file" + wrapper=$func_stripname_result + fi + ;; + *) + wrapper=$file + ;; + esac + if func_ltwrapper_script_p "$wrapper"; then + notinst_deplibs= + relink_command= + + func_source "$wrapper" + + # Check the variables that should have been set. + test -z "$generated_by_libtool_version" && \ + func_fatal_error "invalid libtool wrapper script '$wrapper'" + + finalize=: + for lib in $notinst_deplibs; do + # Check to see that each library is installed. + libdir= + if test -f "$lib"; then + func_source "$lib" + fi + libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` + if test -n "$libdir" && test ! -f "$libfile"; then + func_warning "'$lib' has not been installed in '$libdir'" + finalize=false + fi + done + + relink_command= + func_source "$wrapper" + + outputname= + if test no = "$fast_install" && test -n "$relink_command"; then + $opt_dry_run || { + if $finalize; then + tmpdir=`func_mktempdir` + func_basename "$file$stripped_ext" + file=$func_basename_result + outputname=$tmpdir/$file + # Replace the output file specification. + relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` + + $opt_quiet || { + func_quote_for_expand "$relink_command" + eval "func_echo $func_quote_for_expand_result" + } + if eval "$relink_command"; then : + else + func_error "error: relink '$file' with the above command before installing it" + $opt_dry_run || ${RM}r "$tmpdir" + continue + fi + file=$outputname + else + func_warning "cannot relink '$file'" + fi + } + else + # Install the binary that we compiled earlier. + file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` + fi + fi + + # remove .exe since cygwin /usr/bin/install will append another + # one anyway + case $install_prog,$host in + */usr/bin/install*,*cygwin*) + case $file:$destfile in + *.exe:*.exe) + # this is ok + ;; + *.exe:*) + destfile=$destfile.exe + ;; + *:*.exe) + func_stripname '' '.exe' "$destfile" + destfile=$func_stripname_result + ;; + esac + ;; + esac + func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' + $opt_dry_run || if test -n "$outputname"; then + ${RM}r "$tmpdir" + fi + ;; + esac + done + + for file in $staticlibs; do + func_basename "$file" + name=$func_basename_result + + # Set up the ranlib parameters. + oldlib=$destdir/$name + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + + func_show_eval "$install_prog \$file \$oldlib" 'exit $?' + + if test -n "$stripme" && test -n "$old_striplib"; then + func_show_eval "$old_striplib $tool_oldlib" 'exit $?' + fi + + # Do each command in the postinstall commands. + func_execute_cmds "$old_postinstall_cmds" 'exit $?' + done + + test -n "$future_libdirs" && \ + func_warning "remember to run '$progname --finish$future_libdirs'" + + if test -n "$current_libdirs"; then + # Maybe just do a dry run. + $opt_dry_run && current_libdirs=" -n$current_libdirs" + exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' + else + exit $EXIT_SUCCESS + fi +} + +test install = "$opt_mode" && func_mode_install ${1+"$@"} + + +# func_generate_dlsyms outputname originator pic_p +# Extract symbols from dlprefiles and create ${outputname}S.o with +# a dlpreopen symbol table. +func_generate_dlsyms () +{ + $debug_cmd + + my_outputname=$1 + my_originator=$2 + my_pic_p=${3-false} + my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` + my_dlsyms= + + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + if test -n "$NM" && test -n "$global_symbol_pipe"; then + my_dlsyms=${my_outputname}S.c + else + func_error "not configured to extract global symbols from dlpreopened files" + fi + fi + + if test -n "$my_dlsyms"; then + case $my_dlsyms in + "") ;; + *.c) + # Discover the nlist of each of the dlfiles. + nlist=$output_objdir/$my_outputname.nm + + func_show_eval "$RM $nlist ${nlist}S ${nlist}T" + + # Parse the name list into a source file. + func_verbose "creating $output_objdir/$my_dlsyms" + + $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ +/* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ + +#ifdef __cplusplus +extern \"C\" { +#endif + +#if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#pragma GCC diagnostic ignored \"-Wstrict-prototypes\" +#endif + +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined __osf__ +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + +/* External symbol declarations for the compiler. */\ +" + + if test yes = "$dlself"; then + func_verbose "generating symbol list for '$output'" + + $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" + + # Add our own program objects to the symbol list. + progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` + for progfile in $progfiles; do + func_to_tool_file "$progfile" func_convert_file_msys_to_w32 + func_verbose "extracting global C symbols from '$func_to_tool_file_result'" + $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" + done + + if test -n "$exclude_expsyms"; then + $opt_dry_run || { + eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + if test -n "$export_symbols_regex"; then + $opt_dry_run || { + eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + export_symbols=$output_objdir/$outputname.exp + $opt_dry_run || { + $RM $export_symbols + eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' + ;; + esac + } + else + $opt_dry_run || { + eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' + ;; + esac + } + fi + fi + + for dlprefile in $dlprefiles; do + func_verbose "extracting global C symbols from '$dlprefile'" + func_basename "$dlprefile" + name=$func_basename_result + case $host in + *cygwin* | *mingw* | *cegcc* ) + # if an import library, we need to obtain dlname + if func_win32_import_lib_p "$dlprefile"; then + func_tr_sh "$dlprefile" + eval "curr_lafile=\$libfile_$func_tr_sh_result" + dlprefile_dlbasename= + if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then + # Use subshell, to avoid clobbering current variable values + dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` + if test -n "$dlprefile_dlname"; then + func_basename "$dlprefile_dlname" + dlprefile_dlbasename=$func_basename_result + else + # no lafile. user explicitly requested -dlpreopen . + $sharedlib_from_linklib_cmd "$dlprefile" + dlprefile_dlbasename=$sharedlib_from_linklib_result + fi + fi + $opt_dry_run || { + if test -n "$dlprefile_dlbasename"; then + eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' + else + func_warning "Could not compute DLL name from $name" + eval '$ECHO ": $name " >> "$nlist"' + fi + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | + $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" + } + else # not an import lib + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + fi + ;; + *) + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + ;; + esac + done + + $opt_dry_run || { + # Make sure we have at least an empty file. + test -f "$nlist" || : > "$nlist" + + if test -n "$exclude_expsyms"; then + $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T + $MV "$nlist"T "$nlist" + fi + + # Try sorting and uniquifying the output. + if $GREP -v "^: " < "$nlist" | + if sort -k 3 /dev/null 2>&1; then + sort -k 3 + else + sort +2 + fi | + uniq > "$nlist"S; then + : + else + $GREP -v "^: " < "$nlist" > "$nlist"S + fi + + if test -f "$nlist"S; then + eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' + else + echo '/* NONE */' >> "$output_objdir/$my_dlsyms" + fi + + func_show_eval '$RM "${nlist}I"' + if test -n "$global_symbol_to_import"; then + eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' + fi + + echo >> "$output_objdir/$my_dlsyms" "\ + +/* The mapping between symbol names and symbols. */ +typedef struct { + const char *name; + void *address; +} lt_dlsymlist; +extern LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[];\ +" + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ +static void lt_syminit(void) +{ + LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; + for (; symbol->name; ++symbol) + {" + $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" + echo >> "$output_objdir/$my_dlsyms" "\ + } +}" + fi + echo >> "$output_objdir/$my_dlsyms" "\ +LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[] = +{ {\"$my_originator\", (void *) 0}," + + if test -s "$nlist"I; then + echo >> "$output_objdir/$my_dlsyms" "\ + {\"@INIT@\", (void *) <_syminit}," + fi + + case $need_lib_prefix in + no) + eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + *) + eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + esac + echo >> "$output_objdir/$my_dlsyms" "\ + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt_${my_prefix}_LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif\ +" + } # !$opt_dry_run + + pic_flag_for_symtable= + case "$compile_command " in + *" -static "*) ;; + *) + case $host in + # compiling the symbol table file with pic_flag works around + # a FreeBSD bug that causes programs to crash when -lm is + # linked before any other PIC object. But we must not use + # pic_flag when linking with -static. The problem exists in + # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. + *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) + pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; + *-*-hpux*) + pic_flag_for_symtable=" $pic_flag" ;; + *) + $my_pic_p && pic_flag_for_symtable=" $pic_flag" + ;; + esac + ;; + esac + symtab_cflags= + for arg in $LTCFLAGS; do + case $arg in + -pie | -fpie | -fPIE) ;; + *) func_append symtab_cflags " $arg" ;; + esac + done + + # Now compile the dynamic symbol file. + func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' + + # Clean up the generated files. + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' + + # Transform the symbol file into the correct name. + symfileobj=$output_objdir/${my_outputname}S.$objext + case $host in + *cygwin* | *mingw* | *cegcc* ) + if test -f "$output_objdir/$my_outputname.def"; then + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + else + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + fi + ;; + *) + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + ;; + esac + ;; + *) + func_fatal_error "unknown suffix for '$my_dlsyms'" + ;; + esac + else + # We keep going just in case the user didn't refer to + # lt_preloaded_symbols. The linker will fail if global_symbol_pipe + # really was required. + + # Nullify the symbol file. + compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` + fi +} + +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $debug_cmd + + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + +# func_win32_libid arg +# return the library type of file 'arg' +# +# Need a lot of goo to handle *both* DLLs and import libs +# Has to be a shell function in order to 'eat' the argument +# that is supplied when $file_magic_command is called. +# Despite the name, also deal with 64 bit binaries. +func_win32_libid () +{ + $debug_cmd + + win32_libid_type=unknown + win32_fileres=`file -L $1 2>/dev/null` + case $win32_fileres in + *ar\ archive\ import\ library*) # definitely import + win32_libid_type="x86 archive import" + ;; + *ar\ archive*) # could be an import, or static + # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. + if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | + $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then + case $nm_interface in + "MS dumpbin") + if func_cygming_ms_implib_p "$1" || + func_cygming_gnu_implib_p "$1" + then + win32_nmres=import + else + win32_nmres= + fi + ;; + *) + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' + 1,100{ + / I /{ + s|.*|import| + p + q + } + }'` + ;; + esac + case $win32_nmres in + import*) win32_libid_type="x86 archive import";; + *) win32_libid_type="x86 archive static";; + esac + fi + ;; + *DLL*) + win32_libid_type="x86 DLL" + ;; + *executable*) # but shell scripts are "executable" too... + case $win32_fileres in + *MS\ Windows\ PE\ Intel*) + win32_libid_type="x86 DLL" + ;; + esac + ;; + esac + $ECHO "$win32_libid_type" +} + +# func_cygming_dll_for_implib ARG +# +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib () +{ + $debug_cmd + + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` +} + +# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs +# +# The is the core of a fallback implementation of a +# platform-specific function to extract the name of the +# DLL associated with the specified import library LIBNAME. +# +# SECTION_NAME is either .idata$6 or .idata$7, depending +# on the platform and compiler that created the implib. +# +# Echos the name of the DLL associated with the +# specified import library. +func_cygming_dll_for_implib_fallback_core () +{ + $debug_cmd + + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` + $OBJDUMP -s --section "$1" "$2" 2>/dev/null | + $SED '/^Contents of section '"$match_literal"':/{ + # Place marker at beginning of archive member dllname section + s/.*/====MARK====/ + p + d + } + # These lines can sometimes be longer than 43 characters, but + # are always uninteresting + /:[ ]*file format pe[i]\{,1\}-/d + /^In archive [^:]*:/d + # Ensure marker is printed + /^====MARK====/p + # Remove all lines with less than 43 characters + /^.\{43\}/!d + # From remaining lines, remove first 43 characters + s/^.\{43\}//' | + $SED -n ' + # Join marker and all lines until next marker into a single line + /^====MARK====/ b para + H + $ b para + b + :para + x + s/\n//g + # Remove the marker + s/^====MARK====// + # Remove trailing dots and whitespace + s/[\. \t]*$// + # Print + /./p' | + # we now have a list, one entry per line, of the stringified + # contents of the appropriate section of all members of the + # archive that possess that section. Heuristic: eliminate + # all those that have a first or second character that is + # a '.' (that is, objdump's representation of an unprintable + # character.) This should work for all archives with less than + # 0x302f exports -- but will fail for DLLs whose name actually + # begins with a literal '.' or a single character followed by + # a '.'. + # + # Of those that remain, print the first one. + $SED -e '/^\./d;/^.\./d;q' +} + +# func_cygming_dll_for_implib_fallback ARG +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# +# This fallback implementation is for use when $DLLTOOL +# does not support the --identify-strict option. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib_fallback () +{ + $debug_cmd + + if func_cygming_gnu_implib_p "$1"; then + # binutils import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` + elif func_cygming_ms_implib_p "$1"; then + # ms-generated import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` + else + # unknown + sharedlib_from_linklib_result= + fi +} + + +# func_extract_an_archive dir oldlib +func_extract_an_archive () +{ + $debug_cmd + + f_ex_an_ar_dir=$1; shift + f_ex_an_ar_oldlib=$1 + if test yes = "$lock_old_archive_extraction"; then + lockfile=$f_ex_an_ar_oldlib.lock + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + fi + func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ + 'stat=$?; rm -f "$lockfile"; exit $stat' + if test yes = "$lock_old_archive_extraction"; then + $opt_dry_run || rm -f "$lockfile" + fi + if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then + : + else + func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" + fi +} + + +# func_extract_archives gentop oldlib ... +func_extract_archives () +{ + $debug_cmd + + my_gentop=$1; shift + my_oldlibs=${1+"$@"} + my_oldobjs= + my_xlib= + my_xabs= + my_xdir= + + for my_xlib in $my_oldlibs; do + # Extract the objects. + case $my_xlib in + [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; + *) my_xabs=`pwd`"/$my_xlib" ;; + esac + func_basename "$my_xlib" + my_xlib=$func_basename_result + my_xlib_u=$my_xlib + while :; do + case " $extracted_archives " in + *" $my_xlib_u "*) + func_arith $extracted_serial + 1 + extracted_serial=$func_arith_result + my_xlib_u=lt$extracted_serial-$my_xlib ;; + *) break ;; + esac + done + extracted_archives="$extracted_archives $my_xlib_u" + my_xdir=$my_gentop/$my_xlib_u + + func_mkdir_p "$my_xdir" + + case $host in + *-darwin*) + func_verbose "Extracting $my_xabs" + # Do not bother doing anything if just a dry run + $opt_dry_run || { + darwin_orig_dir=`pwd` + cd $my_xdir || exit $? + darwin_archive=$my_xabs + darwin_curdir=`pwd` + func_basename "$darwin_archive" + darwin_base_archive=$func_basename_result + darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` + if test -n "$darwin_arches"; then + darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` + darwin_arch= + func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" + for darwin_arch in $darwin_arches; do + func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" + $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" + cd "unfat-$$/$darwin_base_archive-$darwin_arch" + func_extract_an_archive "`pwd`" "$darwin_base_archive" + cd "$darwin_curdir" + $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" + done # $darwin_arches + ## Okay now we've a bunch of thin objects, gotta fatten them up :) + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` + darwin_file= + darwin_files= + for darwin_file in $darwin_filelist; do + darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` + $LIPO -create -output "$darwin_file" $darwin_files + done # $darwin_filelist + $RM -rf unfat-$$ + cd "$darwin_orig_dir" + else + cd $darwin_orig_dir + func_extract_an_archive "$my_xdir" "$my_xabs" + fi # $darwin_arches + } # !$opt_dry_run + ;; + *) + func_extract_an_archive "$my_xdir" "$my_xabs" + ;; + esac + my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` + done + + func_extract_archives_result=$my_oldobjs +} + + +# func_emit_wrapper [arg=no] +# +# Emit a libtool wrapper script on stdout. +# Don't directly open a file because we may want to +# incorporate the script contents within a cygwin/mingw +# wrapper executable. Must ONLY be called from within +# func_mode_link because it depends on a number of variables +# set therein. +# +# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR +# variable will take. If 'yes', then the emitted script +# will assume that the directory where it is stored is +# the $objdir directory. This is a cygwin/mingw-specific +# behavior. +func_emit_wrapper () +{ + func_emit_wrapper_arg1=${1-no} + + $ECHO "\ +#! $SHELL + +# $output - temporary wrapper script for $objdir/$outputname +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION +# +# The $output program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='$sed_quote_subst' + +# Be Bourne compatible +if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command=\"$relink_command\" + +# This environment variable determines our operation mode. +if test \"\$libtool_install_magic\" = \"$magic\"; then + # install mode needs the following variables: + generated_by_libtool_version='$macro_version' + notinst_deplibs='$notinst_deplibs' +else + # When we are sourced in execute mode, \$file and \$ECHO are already set. + if test \"\$libtool_execute_magic\" != \"$magic\"; then + file=\"\$0\"" + + qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` + $ECHO "\ + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + ECHO=\"$qECHO\" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ that is used only on +# windows platforms, and (c) all begin with the string "--lt-" +# (application programs are unlikely to have options that match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's $0 value, followed by "$@". +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=\$0 + shift + for lt_opt + do + case \"\$lt_opt\" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` + test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. + lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` + cat \"\$lt_dump_D/\$lt_dump_F\" + exit 0 + ;; + --lt-*) + \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n \"\$lt_option_debug\"; then + echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" + lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ +" + case $host in + # Backslashes separate directories on plain windows + *-*-mingw | *-*-os2* | *-cegcc*) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} +" + ;; + + *) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir/\$program\" \${1+\"\$@\"} +" + ;; + esac + $ECHO "\ + \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from \$@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case \" \$* \" in + *\\ --lt-*) + for lt_wr_arg + do + case \$lt_wr_arg in + --lt-*) ;; + *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; + esac + shift + done ;; + esac + func_exec_program_core \${1+\"\$@\"} +} + + # Parse options + func_parse_lt_options \"\$0\" \${1+\"\$@\"} + + # Find the directory that this script lives in. + thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` + test \"x\$thisdir\" = \"x\$file\" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` + while test -n \"\$file\"; do + destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` + + # If there was a directory component, then change thisdir. + if test \"x\$destdir\" != \"x\$file\"; then + case \"\$destdir\" in + [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; + *) thisdir=\"\$thisdir/\$destdir\" ;; + esac + fi + + file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` + file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 + if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then + # special case for '.' + if test \"\$thisdir\" = \".\"; then + thisdir=\`pwd\` + fi + # remove .libs from thisdir + case \"\$thisdir\" in + *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; + $objdir ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=\`cd \"\$thisdir\" && pwd\` + test -n \"\$absdir\" && thisdir=\"\$absdir\" +" + + if test yes = "$fast_install"; then + $ECHO "\ + program=lt-'$outputname'$exeext + progdir=\"\$thisdir/$objdir\" + + if test ! -f \"\$progdir/\$program\" || + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ + test \"X\$file\" != \"X\$progdir/\$program\"; }; then + + file=\"\$\$-\$program\" + + if test ! -d \"\$progdir\"; then + $MKDIR \"\$progdir\" + else + $RM \"\$progdir/\$file\" + fi" + + $ECHO "\ + + # relink executable if necessary + if test -n \"\$relink_command\"; then + if relink_command_output=\`eval \$relink_command 2>&1\`; then : + else + \$ECHO \"\$relink_command_output\" >&2 + $RM \"\$progdir/\$file\" + exit 1 + fi + fi + + $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || + { $RM \"\$progdir/\$program\"; + $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } + $RM \"\$progdir/\$file\" + fi" + else + $ECHO "\ + program='$outputname' + progdir=\"\$thisdir/$objdir\" +" + fi + + $ECHO "\ + + if test -f \"\$progdir/\$program\"; then" + + # fixup the dll searchpath if we need to. + # + # Fix the DLL searchpath if we need to. Do this before prepending + # to shlibpath, because on Windows, both are PATH and uninstalled + # libraries must come first. + if test -n "$dllsearchpath"; then + $ECHO "\ + # Add the dll search path components to the executable PATH + PATH=$dllsearchpath:\$PATH +" + fi + + # Export our shlibpath_var if we have one. + if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + $ECHO "\ + # Add our own library path to $shlibpath_var + $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" + + # Some systems cannot cope with colon-terminated $shlibpath_var + # The second colon is a workaround for a bug in BeOS R4 sed + $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` + + export $shlibpath_var +" + fi + + $ECHO "\ + if test \"\$libtool_execute_magic\" != \"$magic\"; then + # Run the actual program with our arguments. + func_exec_program \${1+\"\$@\"} + fi + else + # The program doesn't exist. + \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 + \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 + exit 1 + fi +fi\ +" +} + + +# func_emit_cwrapperexe_src +# emit the source code for a wrapper executable on stdout +# Must ONLY be called from within func_mode_link because +# it depends on a number of variable set therein. +func_emit_cwrapperexe_src () +{ + cat < +#include +#ifdef _MSC_VER +# include +# include +# include +#else +# include +# include +# ifdef __CYGWIN__ +# include +# endif +#endif +#include +#include +#include +#include +#include +#include +#include +#include + +#define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) + +/* declarations of non-ANSI functions */ +#if defined __MINGW32__ +# ifdef __STRICT_ANSI__ +int _putenv (const char *); +# endif +#elif defined __CYGWIN__ +# ifdef __STRICT_ANSI__ +char *realpath (const char *, char *); +int putenv (char *); +int setenv (const char *, const char *, int); +# endif +/* #elif defined other_platform || defined ... */ +#endif + +/* portability defines, excluding path handling macros */ +#if defined _MSC_VER +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +# define S_IXUSR _S_IEXEC +#elif defined __MINGW32__ +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +#elif defined __CYGWIN__ +# define HAVE_SETENV +# define FOPEN_WB "wb" +/* #elif defined other platforms ... */ +#endif + +#if defined PATH_MAX +# define LT_PATHMAX PATH_MAX +#elif defined MAXPATHLEN +# define LT_PATHMAX MAXPATHLEN +#else +# define LT_PATHMAX 1024 +#endif + +#ifndef S_IXOTH +# define S_IXOTH 0 +#endif +#ifndef S_IXGRP +# define S_IXGRP 0 +#endif + +/* path handling portability macros */ +#ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' +# define PATH_SEPARATOR ':' +#endif + +#if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ + defined __OS2__ +# define HAVE_DOS_BASED_FILE_SYSTEM +# define FOPEN_WB "wb" +# ifndef DIR_SEPARATOR_2 +# define DIR_SEPARATOR_2 '\\' +# endif +# ifndef PATH_SEPARATOR_2 +# define PATH_SEPARATOR_2 ';' +# endif +#endif + +#ifndef DIR_SEPARATOR_2 +# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) +#else /* DIR_SEPARATOR_2 */ +# define IS_DIR_SEPARATOR(ch) \ + (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) +#endif /* DIR_SEPARATOR_2 */ + +#ifndef PATH_SEPARATOR_2 +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) +#else /* PATH_SEPARATOR_2 */ +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) +#endif /* PATH_SEPARATOR_2 */ + +#ifndef FOPEN_WB +# define FOPEN_WB "w" +#endif +#ifndef _O_BINARY +# define _O_BINARY 0 +#endif + +#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) +#define XFREE(stale) do { \ + if (stale) { free (stale); stale = 0; } \ +} while (0) + +#if defined LT_DEBUGWRAPPER +static int lt_debug = 1; +#else +static int lt_debug = 0; +#endif + +const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ + +void *xmalloc (size_t num); +char *xstrdup (const char *string); +const char *base_name (const char *name); +char *find_executable (const char *wrapper); +char *chase_symlinks (const char *pathspec); +int make_executable (const char *path); +int check_executable (const char *path); +char *strendzap (char *str, const char *pat); +void lt_debugprintf (const char *file, int line, const char *fmt, ...); +void lt_fatal (const char *file, int line, const char *message, ...); +static const char *nonnull (const char *s); +static const char *nonempty (const char *s); +void lt_setenv (const char *name, const char *value); +char *lt_extend_str (const char *orig_value, const char *add, int to_end); +void lt_update_exe_path (const char *name, const char *value); +void lt_update_lib_path (const char *name, const char *value); +char **prepare_spawn (char **argv); +void lt_dump_script (FILE *f); +EOF + + cat <= 0) + && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return 1; + else + return 0; +} + +int +make_executable (const char *path) +{ + int rval = 0; + struct stat st; + + lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", + nonempty (path)); + if ((!path) || (!*path)) + return 0; + + if (stat (path, &st) >= 0) + { + rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); + } + return rval; +} + +/* Searches for the full path of the wrapper. Returns + newly allocated full path name if found, NULL otherwise + Does not chase symlinks, even on platforms that support them. +*/ +char * +find_executable (const char *wrapper) +{ + int has_slash = 0; + const char *p; + const char *p_next; + /* static buffer for getcwd */ + char tmp[LT_PATHMAX + 1]; + size_t tmp_len; + char *concat_name; + + lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", + nonempty (wrapper)); + + if ((wrapper == NULL) || (*wrapper == '\0')) + return NULL; + + /* Absolute path? */ +#if defined HAVE_DOS_BASED_FILE_SYSTEM + if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + else + { +#endif + if (IS_DIR_SEPARATOR (wrapper[0])) + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } +#if defined HAVE_DOS_BASED_FILE_SYSTEM + } +#endif + + for (p = wrapper; *p; p++) + if (*p == '/') + { + has_slash = 1; + break; + } + if (!has_slash) + { + /* no slashes; search PATH */ + const char *path = getenv ("PATH"); + if (path != NULL) + { + for (p = path; *p; p = p_next) + { + const char *q; + size_t p_len; + for (q = p; *q; q++) + if (IS_PATH_SEPARATOR (*q)) + break; + p_len = (size_t) (q - p); + p_next = (*q == '\0' ? q : q + 1); + if (p_len == 0) + { + /* empty path: current directory */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = + XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + } + else + { + concat_name = + XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, p, p_len); + concat_name[p_len] = '/'; + strcpy (concat_name + p_len + 1, wrapper); + } + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + } + /* not found in PATH; assume curdir */ + } + /* Relative path | not found in path: prepend cwd */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + return NULL; +} + +char * +chase_symlinks (const char *pathspec) +{ +#ifndef S_ISLNK + return xstrdup (pathspec); +#else + char buf[LT_PATHMAX]; + struct stat s; + char *tmp_pathspec = xstrdup (pathspec); + char *p; + int has_symlinks = 0; + while (strlen (tmp_pathspec) && !has_symlinks) + { + lt_debugprintf (__FILE__, __LINE__, + "checking path component for symlinks: %s\n", + tmp_pathspec); + if (lstat (tmp_pathspec, &s) == 0) + { + if (S_ISLNK (s.st_mode) != 0) + { + has_symlinks = 1; + break; + } + + /* search backwards for last DIR_SEPARATOR */ + p = tmp_pathspec + strlen (tmp_pathspec) - 1; + while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + p--; + if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + { + /* no more DIR_SEPARATORS left */ + break; + } + *p = '\0'; + } + else + { + lt_fatal (__FILE__, __LINE__, + "error accessing file \"%s\": %s", + tmp_pathspec, nonnull (strerror (errno))); + } + } + XFREE (tmp_pathspec); + + if (!has_symlinks) + { + return xstrdup (pathspec); + } + + tmp_pathspec = realpath (pathspec, buf); + if (tmp_pathspec == 0) + { + lt_fatal (__FILE__, __LINE__, + "could not follow symlinks for %s", pathspec); + } + return xstrdup (tmp_pathspec); +#endif +} + +char * +strendzap (char *str, const char *pat) +{ + size_t len, patlen; + + assert (str != NULL); + assert (pat != NULL); + + len = strlen (str); + patlen = strlen (pat); + + if (patlen <= len) + { + str += len - patlen; + if (STREQ (str, pat)) + *str = '\0'; + } + return str; +} + +void +lt_debugprintf (const char *file, int line, const char *fmt, ...) +{ + va_list args; + if (lt_debug) + { + (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); + va_start (args, fmt); + (void) vfprintf (stderr, fmt, args); + va_end (args); + } +} + +static void +lt_error_core (int exit_status, const char *file, + int line, const char *mode, + const char *message, va_list ap) +{ + fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); + vfprintf (stderr, message, ap); + fprintf (stderr, ".\n"); + + if (exit_status >= 0) + exit (exit_status); +} + +void +lt_fatal (const char *file, int line, const char *message, ...) +{ + va_list ap; + va_start (ap, message); + lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); + va_end (ap); +} + +static const char * +nonnull (const char *s) +{ + return s ? s : "(null)"; +} + +static const char * +nonempty (const char *s) +{ + return (s && !*s) ? "(empty)" : nonnull (s); +} + +void +lt_setenv (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_setenv) setting '%s' to '%s'\n", + nonnull (name), nonnull (value)); + { +#ifdef HAVE_SETENV + /* always make a copy, for consistency with !HAVE_SETENV */ + char *str = xstrdup (value); + setenv (name, str, 1); +#else + size_t len = strlen (name) + 1 + strlen (value) + 1; + char *str = XMALLOC (char, len); + sprintf (str, "%s=%s", name, value); + if (putenv (str) != EXIT_SUCCESS) + { + XFREE (str); + } +#endif + } +} + +char * +lt_extend_str (const char *orig_value, const char *add, int to_end) +{ + char *new_value; + if (orig_value && *orig_value) + { + size_t orig_value_len = strlen (orig_value); + size_t add_len = strlen (add); + new_value = XMALLOC (char, add_len + orig_value_len + 1); + if (to_end) + { + strcpy (new_value, orig_value); + strcpy (new_value + orig_value_len, add); + } + else + { + strcpy (new_value, add); + strcpy (new_value + add_len, orig_value); + } + } + else + { + new_value = xstrdup (add); + } + return new_value; +} + +void +lt_update_exe_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + /* some systems can't cope with a ':'-terminated path #' */ + size_t len = strlen (new_value); + while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) + { + new_value[--len] = '\0'; + } + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +void +lt_update_lib_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +EOF + case $host_os in + mingw*) + cat <<"EOF" + +/* Prepares an argument vector before calling spawn(). + Note that spawn() does not by itself call the command interpreter + (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : + ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); + GetVersionEx(&v); + v.dwPlatformId == VER_PLATFORM_WIN32_NT; + }) ? "cmd.exe" : "command.com"). + Instead it simply concatenates the arguments, separated by ' ', and calls + CreateProcess(). We must quote the arguments since Win32 CreateProcess() + interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a + special way: + - Space and tab are interpreted as delimiters. They are not treated as + delimiters if they are surrounded by double quotes: "...". + - Unescaped double quotes are removed from the input. Their only effect is + that within double quotes, space and tab are treated like normal + characters. + - Backslashes not followed by double quotes are not special. + - But 2*n+1 backslashes followed by a double quote become + n backslashes followed by a double quote (n >= 0): + \" -> " + \\\" -> \" + \\\\\" -> \\" + */ +#define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +#define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +char ** +prepare_spawn (char **argv) +{ + size_t argc; + char **new_argv; + size_t i; + + /* Count number of arguments. */ + for (argc = 0; argv[argc] != NULL; argc++) + ; + + /* Allocate new argument vector. */ + new_argv = XMALLOC (char *, argc + 1); + + /* Put quoted arguments into the new argument vector. */ + for (i = 0; i < argc; i++) + { + const char *string = argv[i]; + + if (string[0] == '\0') + new_argv[i] = xstrdup ("\"\""); + else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) + { + int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); + size_t length; + unsigned int backslashes; + const char *s; + char *quoted_string; + char *p; + + length = 0; + backslashes = 0; + if (quote_around) + length++; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + length += backslashes + 1; + length++; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + length += backslashes + 1; + + quoted_string = XMALLOC (char, length + 1); + + p = quoted_string; + backslashes = 0; + if (quote_around) + *p++ = '"'; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + { + unsigned int j; + for (j = backslashes + 1; j > 0; j--) + *p++ = '\\'; + } + *p++ = c; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + { + unsigned int j; + for (j = backslashes; j > 0; j--) + *p++ = '\\'; + *p++ = '"'; + } + *p = '\0'; + + new_argv[i] = quoted_string; + } + else + new_argv[i] = (char *) string; + } + new_argv[argc] = NULL; + + return new_argv; +} +EOF + ;; + esac + + cat <<"EOF" +void lt_dump_script (FILE* f) +{ +EOF + func_emit_wrapper yes | + $SED -n -e ' +s/^\(.\{79\}\)\(..*\)/\1\ +\2/ +h +s/\([\\"]\)/\\\1/g +s/$/\\n/ +s/\([^\n]*\).*/ fputs ("\1", f);/p +g +D' + cat <<"EOF" +} +EOF +} +# end: func_emit_cwrapperexe_src + +# func_win32_import_lib_p ARG +# True if ARG is an import lib, as indicated by $file_magic_cmd +func_win32_import_lib_p () +{ + $debug_cmd + + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in + *import*) : ;; + *) false ;; + esac +} + +# func_suncc_cstd_abi +# !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! +# Several compiler flags select an ABI that is incompatible with the +# Cstd library. Avoid specifying it if any are in CXXFLAGS. +func_suncc_cstd_abi () +{ + $debug_cmd + + case " $compile_command " in + *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) + suncc_use_cstd_abi=no + ;; + *) + suncc_use_cstd_abi=yes + ;; + esac +} + +# func_mode_link arg... +func_mode_link () +{ + $debug_cmd + + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + # It is impossible to link a dll without this setting, and + # we shouldn't force the makefile maintainer to figure out + # what system we are compiling for in order to pass an extra + # flag for every libtool invocation. + # allow_undefined=no + + # FIXME: Unfortunately, there are problems with the above when trying + # to make a dll that has undefined symbols, in which case not + # even a static library is built. For now, we need to specify + # -no-undefined on the libtool link line when we can be certain + # that all symbols are satisfied, otherwise we get a static library. + allow_undefined=yes + ;; + *) + allow_undefined=yes + ;; + esac + libtool_args=$nonopt + base_compile="$nonopt $@" + compile_command=$nonopt + finalize_command=$nonopt + + compile_rpath= + finalize_rpath= + compile_shlibpath= + finalize_shlibpath= + convenience= + old_convenience= + deplibs= + old_deplibs= + compiler_flags= + linker_flags= + dllsearchpath= + lib_search_path=`pwd` + inst_prefix_dir= + new_inherited_linker_flags= + + avoid_version=no + bindir= + dlfiles= + dlprefiles= + dlself=no + export_dynamic=no + export_symbols= + export_symbols_regex= + generated= + libobjs= + ltlibs= + module=no + no_install=no + objs= + os2dllname= + non_pic_objects= + precious_files_regex= + prefer_static_libs=no + preload=false + prev= + prevarg= + release= + rpath= + xrpath= + perm_rpath= + temp_rpath= + thread_safe=no + vinfo= + vinfo_number=no + weak_libs= + single_module=$wl-single_module + func_infer_tag $base_compile + + # We need to know -static, to get the right output filenames. + for arg + do + case $arg in + -shared) + test yes != "$build_libtool_libs" \ + && func_fatal_configuration "cannot build a shared library" + build_old_libs=no + break + ;; + -all-static | -static | -static-libtool-libs) + case $arg in + -all-static) + if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then + func_warning "complete static linking is impossible in this configuration" + fi + if test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + -static) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=built + ;; + -static-libtool-libs) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + esac + build_libtool_libs=no + build_old_libs=yes + break + ;; + esac + done + + # See if our shared archives depend on static archives. + test -n "$old_archive_from_new_cmds" && build_old_libs=yes + + # Go through the arguments, transforming them on the way. + while test "$#" -gt 0; do + arg=$1 + shift + func_quote_for_eval "$arg" + qarg=$func_quote_for_eval_unquoted_result + func_append libtool_args " $func_quote_for_eval_result" + + # If the previous option needs an argument, assign it. + if test -n "$prev"; then + case $prev in + output) + func_append compile_command " @OUTPUT@" + func_append finalize_command " @OUTPUT@" + ;; + esac + + case $prev in + bindir) + bindir=$arg + prev= + continue + ;; + dlfiles|dlprefiles) + $preload || { + # Add the symbol object into the linking commands. + func_append compile_command " @SYMFILE@" + func_append finalize_command " @SYMFILE@" + preload=: + } + case $arg in + *.la | *.lo) ;; # We handle these cases below. + force) + if test no = "$dlself"; then + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + self) + if test dlprefiles = "$prev"; then + dlself=yes + elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then + dlself=yes + else + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + *) + if test dlfiles = "$prev"; then + func_append dlfiles " $arg" + else + func_append dlprefiles " $arg" + fi + prev= + continue + ;; + esac + ;; + expsyms) + export_symbols=$arg + test -f "$arg" \ + || func_fatal_error "symbol file '$arg' does not exist" + prev= + continue + ;; + expsyms_regex) + export_symbols_regex=$arg + prev= + continue + ;; + framework) + case $host in + *-*-darwin*) + case "$deplibs " in + *" $qarg.ltframework "*) ;; + *) func_append deplibs " $qarg.ltframework" # this is fixed later + ;; + esac + ;; + esac + prev= + continue + ;; + inst_prefix) + inst_prefix_dir=$arg + prev= + continue + ;; + mllvm) + # Clang does not use LLVM to link, so we can simply discard any + # '-mllvm $arg' options when doing the link step. + prev= + continue + ;; + objectlist) + if test -f "$arg"; then + save_arg=$arg + moreargs= + for fil in `cat "$save_arg"` + do +# func_append moreargs " $fil" + arg=$fil + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir=$func_dirname_result + + if test none != "$pic_object"; then + # Prepend the subdirectory the object is found in. + pic_object=$xdir$pic_object + + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test dlprefiles = "$prev"; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg=$pic_object + fi + + # Non-PIC object. + if test none != "$non_pic_object"; then + # Prepend the subdirectory the object is found in. + non_pic_object=$xdir$non_pic_object + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object=$pic_object + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir=$func_dirname_result + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "'$arg' is not a valid libtool object" + fi + fi + done + else + func_fatal_error "link input file '$arg' does not exist" + fi + arg=$save_arg + prev= + continue + ;; + os2dllname) + os2dllname=$arg + prev= + continue + ;; + precious_regex) + precious_files_regex=$arg + prev= + continue + ;; + release) + release=-$arg + prev= + continue + ;; + rpath | xrpath) + # We need an absolute path. + case $arg in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + if test rpath = "$prev"; then + case "$rpath " in + *" $arg "*) ;; + *) func_append rpath " $arg" ;; + esac + else + case "$xrpath " in + *" $arg "*) ;; + *) func_append xrpath " $arg" ;; + esac + fi + prev= + continue + ;; + shrext) + shrext_cmds=$arg + prev= + continue + ;; + weak) + func_append weak_libs " $arg" + prev= + continue + ;; + xcclinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xcompiler) + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xlinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $wl$qarg" + prev= + func_append compile_command " $wl$qarg" + func_append finalize_command " $wl$qarg" + continue + ;; + *) + eval "$prev=\"\$arg\"" + prev= + continue + ;; + esac + fi # test -n "$prev" + + prevarg=$arg + + case $arg in + -all-static) + if test -n "$link_static_flag"; then + # See comment for -static flag below, for more details. + func_append compile_command " $link_static_flag" + func_append finalize_command " $link_static_flag" + fi + continue + ;; + + -allow-undefined) + # FIXME: remove this flag sometime in the future. + func_fatal_error "'-allow-undefined' must not be used because it is the default" + ;; + + -avoid-version) + avoid_version=yes + continue + ;; + + -bindir) + prev=bindir + continue + ;; + + -dlopen) + prev=dlfiles + continue + ;; + + -dlpreopen) + prev=dlprefiles + continue + ;; + + -export-dynamic) + export_dynamic=yes + continue + ;; + + -export-symbols | -export-symbols-regex) + if test -n "$export_symbols" || test -n "$export_symbols_regex"; then + func_fatal_error "more than one -exported-symbols argument is not allowed" + fi + if test X-export-symbols = "X$arg"; then + prev=expsyms + else + prev=expsyms_regex + fi + continue + ;; + + -framework) + prev=framework + continue + ;; + + -inst-prefix-dir) + prev=inst_prefix + continue + ;; + + # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* + # so, if we see these flags be careful not to treat them like -L + -L[A-Z][A-Z]*:*) + case $with_gcc/$host in + no/*-*-irix* | /*-*-irix*) + func_append compile_command " $arg" + func_append finalize_command " $arg" + ;; + esac + continue + ;; + + -L*) + func_stripname "-L" '' "$arg" + if test -z "$func_stripname_result"; then + if test "$#" -gt 0; then + func_fatal_error "require no space between '-L' and '$1'" + else + func_fatal_error "need path for '-L' option" + fi + fi + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + absdir=`cd "$dir" && pwd` + test -z "$absdir" && \ + func_fatal_error "cannot determine absolute directory name of '$dir'" + dir=$absdir + ;; + esac + case "$deplibs " in + *" -L$dir "* | *" $arg "*) + # Will only happen for absolute or sysroot arguments + ;; + *) + # Preserve sysroot, but never include relative directories + case $dir in + [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; + *) func_append deplibs " -L$dir" ;; + esac + func_append lib_search_path " $dir" + ;; + esac + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$dir:"*) ;; + ::) dllsearchpath=$dir;; + *) func_append dllsearchpath ":$dir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + continue + ;; + + -l*) + if test X-lc = "X$arg" || test X-lm = "X$arg"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) + # These systems don't actually have a C or math library (as such) + continue + ;; + *-*-os2*) + # These systems don't actually have a C library (as such) + test X-lc = "X$arg" && continue + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) + # Do not include libc due to us having libc/libc_r. + test X-lc = "X$arg" && continue + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C and math libraries are in the System framework + func_append deplibs " System.ltframework" + continue + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + test X-lc = "X$arg" && continue + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + test X-lc = "X$arg" && continue + ;; + esac + elif test X-lc_r = "X$arg"; then + case $host in + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) + # Do not include libc_r directly, use -pthread flag. + continue + ;; + esac + fi + func_append deplibs " $arg" + continue + ;; + + -mllvm) + prev=mllvm + continue + ;; + + -module) + module=yes + continue + ;; + + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + # Darwin uses the -arch flag to determine output architecture. + -model|-arch|-isysroot|--sysroot) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + prev=xcompiler + continue + ;; + + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case "$new_inherited_linker_flags " in + *" $arg "*) ;; + * ) func_append new_inherited_linker_flags " $arg" ;; + esac + continue + ;; + + -multi_module) + single_module=$wl-multi_module + continue + ;; + + -no-fast-install) + fast_install=no + continue + ;; + + -no-install) + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) + # The PATH hackery in wrapper scripts is required on Windows + # and Darwin in order for the loader to find any dlls it needs. + func_warning "'-no-install' is ignored for $host" + func_warning "assuming '-no-fast-install' instead" + fast_install=no + ;; + *) no_install=yes ;; + esac + continue + ;; + + -no-undefined) + allow_undefined=no + continue + ;; + + -objectlist) + prev=objectlist + continue + ;; + + -os2dllname) + prev=os2dllname + continue + ;; + + -o) prev=output ;; + + -precious-files-regex) + prev=precious_regex + continue + ;; + + -release) + prev=release + continue + ;; + + -rpath) + prev=rpath + continue + ;; + + -R) + prev=xrpath + continue + ;; + + -R*) + func_stripname '-R' '' "$arg" + dir=$func_stripname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + =*) + func_stripname '=' '' "$dir" + dir=$lt_sysroot$func_stripname_result + ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + continue + ;; + + -shared) + # The effects of -shared are defined in a previous loop. + continue + ;; + + -shrext) + prev=shrext + continue + ;; + + -static | -static-libtool-libs) + # The effects of -static are defined in a previous loop. + # We used to do the same as -all-static on platforms that + # didn't have a PIC flag, but the assumption that the effects + # would be equivalent was wrong. It would break on at least + # Digital Unix and AIX. + continue + ;; + + -thread-safe) + thread_safe=yes + continue + ;; + + -version-info) + prev=vinfo + continue + ;; + + -version-number) + prev=vinfo + vinfo_number=yes + continue + ;; + + -weak) + prev=weak + continue + ;; + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs=$IFS; IFS=, + for flag in $args; do + IFS=$save_ifs + func_quote_for_eval "$flag" + func_append arg " $func_quote_for_eval_result" + func_append compiler_flags " $func_quote_for_eval_result" + done + IFS=$save_ifs + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Wl,*) + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs=$IFS; IFS=, + for flag in $args; do + IFS=$save_ifs + func_quote_for_eval "$flag" + func_append arg " $wl$func_quote_for_eval_result" + func_append compiler_flags " $wl$func_quote_for_eval_result" + func_append linker_flags " $func_quote_for_eval_result" + done + IFS=$save_ifs + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Xcompiler) + prev=xcompiler + continue + ;; + + -Xlinker) + prev=xlinker + continue + ;; + + -XCClinker) + prev=xcclinker + continue + ;; + + # -msg_* for osf cc + -msg_*) + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + ;; + + # Flags to be passed through unchanged, with rationale: + # -64, -mips[0-9] enable 64-bit mode for the SGI compiler + # -r[0-9][0-9]* specify processor for the SGI compiler + # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler + # +DA*, +DD* enable 64-bit mode for the HP compiler + # -q* compiler args for the IBM compiler + # -m*, -t[45]*, -txscale* architecture-specific flags for GCC + # -F/path path to uninstalled frameworks, gcc on darwin + # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # -fstack-protector* stack protector flags for GCC + # @file GCC response files + # -tp=* Portland pgcc target processor selection + # --sysroot=* for sysroot support + # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -specs=* GCC specs files + # -stdlib=* select c++ std lib with clang + # -fsanitize=* Clang/GCC memory and address sanitizer + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ + -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ + -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ + -specs=*|-fsanitize=*) + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + func_append compile_command " $arg" + func_append finalize_command " $arg" + func_append compiler_flags " $arg" + continue + ;; + + -Z*) + if test os2 = "`expr $host : '.*\(os2\)'`"; then + # OS/2 uses -Zxxx to specify OS/2-specific options + compiler_flags="$compiler_flags $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case $arg in + -Zlinker | -Zstack) + prev=xcompiler + ;; + esac + continue + else + # Otherwise treat like 'Some other compiler flag' below + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + fi + ;; + + # Some other compiler flag. + -* | +*) + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + ;; + + *.$objext) + # A standard object. + func_append objs " $arg" + ;; + + *.lo) + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test none = "$pic_object" && + test none = "$non_pic_object"; then + func_fatal_error "cannot find name of object for '$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir=$func_dirname_result + + test none = "$pic_object" || { + # Prepend the subdirectory the object is found in. + pic_object=$xdir$pic_object + + if test dlfiles = "$prev"; then + if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test dlprefiles = "$prev"; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg=$pic_object + } + + # Non-PIC object. + if test none != "$non_pic_object"; then + # Prepend the subdirectory the object is found in. + non_pic_object=$xdir$non_pic_object + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test none = "$pic_object"; then + arg=$non_pic_object + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object=$pic_object + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir=$func_dirname_result + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "'$arg' is not a valid libtool object" + fi + fi + ;; + + *.$libext) + # An archive. + func_append deplibs " $arg" + func_append old_deplibs " $arg" + continue + ;; + + *.la) + # A libtool-controlled library. + + func_resolve_sysroot "$arg" + if test dlfiles = "$prev"; then + # This library was specified with -dlopen. + func_append dlfiles " $func_resolve_sysroot_result" + prev= + elif test dlprefiles = "$prev"; then + # The library was specified with -dlpreopen. + func_append dlprefiles " $func_resolve_sysroot_result" + prev= + else + func_append deplibs " $func_resolve_sysroot_result" + fi + continue + ;; + + # Some other compiler argument. + *) + # Unknown arguments in both finalize_command and compile_command need + # to be aesthetically quoted because they are evaled later. + func_quote_for_eval "$arg" + arg=$func_quote_for_eval_result + ;; + esac # arg + + # Now actually substitute the argument into the commands. + if test -n "$arg"; then + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + done # argument parsing loop + + test -n "$prev" && \ + func_fatal_help "the '$prevarg' option requires an argument" + + if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then + eval arg=\"$export_dynamic_flag_spec\" + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + + oldlibs= + # calculate the name of the file, without its directory + func_basename "$output" + outputname=$func_basename_result + libobjs_save=$libobjs + + if test -n "$shlibpath_var"; then + # get the directories listed in $shlibpath_var + eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` + else + shlib_search_path= + fi + eval sys_lib_search_path=\"$sys_lib_search_path_spec\" + eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + + # Definition is injected by LT_CONFIG during libtool generation. + func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" + + func_dirname "$output" "/" "" + output_objdir=$func_dirname_result$objdir + func_to_tool_file "$output_objdir/" + tool_output_objdir=$func_to_tool_file_result + # Create the object directory. + func_mkdir_p "$output_objdir" + + # Determine the type of output + case $output in + "") + func_fatal_help "you must specify an output file" + ;; + *.$libext) linkmode=oldlib ;; + *.lo | *.$objext) linkmode=obj ;; + *.la) linkmode=lib ;; + *) linkmode=prog ;; # Anything else should be a program. + esac + + specialdeplibs= + + libs= + # Find all interdependent deplibs by searching for libraries + # that are linked more than once (e.g. -la -lb -la) + for deplib in $deplibs; do + if $opt_preserve_dup_deps; then + case "$libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append libs " $deplib" + done + + if test lib = "$linkmode"; then + libs="$predeps $libs $compiler_lib_search_path $postdeps" + + # Compute libraries that are listed more than once in $predeps + # $postdeps and mark them as special (i.e., whose duplicates are + # not to be eliminated). + pre_post_deps= + if $opt_duplicate_compiler_generated_deps; then + for pre_post_dep in $predeps $postdeps; do + case "$pre_post_deps " in + *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; + esac + func_append pre_post_deps " $pre_post_dep" + done + fi + pre_post_deps= + fi + + deplibs= + newdependency_libs= + newlib_search_path= + need_relink=no # whether we're linking any uninstalled libtool libraries + notinst_deplibs= # not-installed libtool libraries + notinst_path= # paths that contain not-installed libtool libraries + + case $linkmode in + lib) + passes="conv dlpreopen link" + for file in $dlfiles $dlprefiles; do + case $file in + *.la) ;; + *) + func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" + ;; + esac + done + ;; + prog) + compile_deplibs= + finalize_deplibs= + alldeplibs=false + newdlfiles= + newdlprefiles= + passes="conv scan dlopen dlpreopen link" + ;; + *) passes="conv" + ;; + esac + + for pass in $passes; do + # The preopen pass in lib mode reverses $deplibs; put it back here + # so that -L comes before libs that need it for instance... + if test lib,link = "$linkmode,$pass"; then + ## FIXME: Find the place where the list is rebuilt in the wrong + ## order, and fix it there properly + tmp_deplibs= + for deplib in $deplibs; do + tmp_deplibs="$deplib $tmp_deplibs" + done + deplibs=$tmp_deplibs + fi + + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass"; then + libs=$deplibs + deplibs= + fi + if test prog = "$linkmode"; then + case $pass in + dlopen) libs=$dlfiles ;; + dlpreopen) libs=$dlprefiles ;; + link) + libs="$deplibs %DEPLIBS%" + test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" + ;; + esac + fi + if test lib,dlpreopen = "$linkmode,$pass"; then + # Collect and forward deplibs of preopened libtool libs + for lib in $dlprefiles; do + # Ignore non-libtool-libs + dependency_libs= + func_resolve_sysroot "$lib" + case $lib in + *.la) func_source "$func_resolve_sysroot_result" ;; + esac + + # Collect preopened libtool deplibs, except any this library + # has declared as weak libs + for deplib in $dependency_libs; do + func_basename "$deplib" + deplib_base=$func_basename_result + case " $weak_libs " in + *" $deplib_base "*) ;; + *) func_append deplibs " $deplib" ;; + esac + done + done + libs=$dlprefiles + fi + if test dlopen = "$pass"; then + # Collect dlpreopened libraries + save_deplibs=$deplibs + deplibs= + fi + + for deplib in $libs; do + lib= + found=false + case $deplib in + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append compiler_flags " $deplib" + if test lib = "$linkmode"; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -l*) + if test lib != "$linkmode" && test prog != "$linkmode"; then + func_warning "'-l' is ignored for archives/objects" + continue + fi + func_stripname '-l' '' "$deplib" + name=$func_stripname_result + if test lib = "$linkmode"; then + searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" + else + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do + for search_ext in .la $std_shrext .so .a; do + # Search the libtool library + lib=$searchdir/lib$name$search_ext + if test -f "$lib"; then + if test .la = "$search_ext"; then + found=: + else + found=false + fi + break 2 + fi + done + done + if $found; then + # deplib is a libtool library + # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, + # We need to do some special things here, and not later. + if test yes = "$allow_libtool_libs_with_static_runtimes"; then + case " $predeps $postdeps " in + *" $deplib "*) + if func_lalib_p "$lib"; then + library_names= + old_library= + func_source "$lib" + for l in $old_library $library_names; do + ll=$l + done + if test "X$ll" = "X$old_library"; then # only static version available + found=false + func_dirname "$lib" "" "." + ladir=$func_dirname_result + lib=$ladir/$old_library + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + fi + ;; + *) ;; + esac + fi + else + # deplib doesn't seem to be a libtool library + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + ;; # -l + *.ltframework) + if test prog,link = "$linkmode,$pass"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + if test lib = "$linkmode"; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -L*) + case $linkmode in + lib) + deplibs="$deplib $deplibs" + test conv = "$pass" && continue + newdependency_libs="$deplib $newdependency_libs" + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + prog) + if test conv = "$pass"; then + deplibs="$deplib $deplibs" + continue + fi + if test scan = "$pass"; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + *) + func_warning "'-L' is ignored for archives/objects" + ;; + esac # linkmode + continue + ;; # -L + -R*) + if test link = "$pass"; then + func_stripname '-R' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # Make sure the xrpath contains only unique directories. + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + fi + deplibs="$deplib $deplibs" + continue + ;; + *.la) + func_resolve_sysroot "$deplib" + lib=$func_resolve_sysroot_result + ;; + *.$libext) + if test conv = "$pass"; then + deplibs="$deplib $deplibs" + continue + fi + case $linkmode in + lib) + # Linking convenience modules into shared libraries is allowed, + # but linking other static libraries is non-portable. + case " $dlpreconveniencelibs " in + *" $deplib "*) ;; + *) + valid_a_lib=false + case $deplibs_check_method in + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ + | $EGREP "$match_pattern_regex" > /dev/null; then + valid_a_lib=: + fi + ;; + pass_all) + valid_a_lib=: + ;; + esac + if $valid_a_lib; then + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + else + echo + $ECHO "*** Warning: Trying to link with static lib archive $deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because the file extensions .$libext of this argument makes me believe" + echo "*** that it is just a static archive that I should not use here." + fi + ;; + esac + continue + ;; + prog) + if test link != "$pass"; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + continue + ;; + esac # linkmode + ;; # *.$libext + *.lo | *.$objext) + if test conv = "$pass"; then + deplibs="$deplib $deplibs" + elif test prog = "$linkmode"; then + if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then + # If there is no dlopen support or we're linking statically, + # we need to preload. + func_append newdlprefiles " $deplib" + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append newdlfiles " $deplib" + fi + fi + continue + ;; + %DEPLIBS%) + alldeplibs=: + continue + ;; + esac # case $deplib + + $found || test -f "$lib" \ + || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$lib" \ + || func_fatal_error "'$lib' is not a valid libtool archive" + + func_dirname "$lib" "" "." + ladir=$func_dirname_result + + dlname= + dlopen= + dlpreopen= + libdir= + library_names= + old_library= + inherited_linker_flags= + # If the library was installed with an old release of libtool, + # it will not redefine variables installed, or shouldnotlink + installed=yes + shouldnotlink=no + avoidtemprpath= + + + # Read the .la file + func_source "$lib" + + # Convert "-framework foo" to "foo.ltframework" + if test -n "$inherited_linker_flags"; then + tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` + for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do + case " $new_inherited_linker_flags " in + *" $tmp_inherited_linker_flag "*) ;; + *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; + esac + done + fi + dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + if test lib,link = "$linkmode,$pass" || + test prog,scan = "$linkmode,$pass" || + { test prog != "$linkmode" && test lib != "$linkmode"; }; then + test -n "$dlopen" && func_append dlfiles " $dlopen" + test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" + fi + + if test conv = "$pass"; then + # Only check for convenience libraries + deplibs="$lib $deplibs" + if test -z "$libdir"; then + if test -z "$old_library"; then + func_fatal_error "cannot find name of link library for '$lib'" + fi + # It is a libtool convenience library, so add in its objects. + func_append convenience " $ladir/$objdir/$old_library" + func_append old_convenience " $ladir/$objdir/$old_library" + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_preserve_dup_deps; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done + elif test prog != "$linkmode" && test lib != "$linkmode"; then + func_fatal_error "'$lib' is not a convenience library" + fi + continue + fi # $pass = conv + + + # Get the name of the library we link against. + linklib= + if test -n "$old_library" && + { test yes = "$prefer_static_libs" || + test built,no = "$prefer_static_libs,$installed"; }; then + linklib=$old_library + else + for l in $old_library $library_names; do + linklib=$l + done + fi + if test -z "$linklib"; then + func_fatal_error "cannot find name of link library for '$lib'" + fi + + # This library was specified with -dlopen. + if test dlopen = "$pass"; then + test -z "$libdir" \ + && func_fatal_error "cannot -dlopen a convenience library: '$lib'" + if test -z "$dlname" || + test yes != "$dlopen_support" || + test no = "$build_libtool_libs" + then + # If there is no dlname, no dlopen support or we're linking + # statically, we need to preload. We also need to preload any + # dependent libraries so libltdl's deplib preloader doesn't + # bomb out in the load deplibs phase. + func_append dlprefiles " $lib $dependency_libs" + else + func_append newdlfiles " $lib" + fi + continue + fi # $pass = dlopen + + # We need an absolute path. + case $ladir in + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; + *) + abs_ladir=`cd "$ladir" && pwd` + if test -z "$abs_ladir"; then + func_warning "cannot determine absolute directory name of '$ladir'" + func_warning "passing it literally to the linker, although it might fail" + abs_ladir=$ladir + fi + ;; + esac + func_basename "$lib" + laname=$func_basename_result + + # Find the relevant object directory and library name. + if test yes = "$installed"; then + if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then + func_warning "library '$lib' was moved." + dir=$ladir + absdir=$abs_ladir + libdir=$abs_ladir + else + dir=$lt_sysroot$libdir + absdir=$lt_sysroot$libdir + fi + test yes = "$hardcode_automatic" && avoidtemprpath=yes + else + if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then + dir=$ladir + absdir=$abs_ladir + # Remove this search path later + func_append notinst_path " $abs_ladir" + else + dir=$ladir/$objdir + absdir=$abs_ladir/$objdir + # Remove this search path later + func_append notinst_path " $abs_ladir" + fi + fi # $installed = yes + func_stripname 'lib' '.la' "$laname" + name=$func_stripname_result + + # This library was specified with -dlpreopen. + if test dlpreopen = "$pass"; then + if test -z "$libdir" && test prog = "$linkmode"; then + func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" + fi + case $host in + # special handling for platforms with PE-DLLs. + *cygwin* | *mingw* | *cegcc* ) + # Linker will automatically link against shared library if both + # static and shared are present. Therefore, ensure we extract + # symbols from the import library if a shared library is present + # (otherwise, the dlopen module name will be incorrect). We do + # this by putting the import library name into $newdlprefiles. + # We recover the dlopen module name by 'saving' the la file + # name in a special purpose variable, and (later) extracting the + # dlname from the la file. + if test -n "$dlname"; then + func_tr_sh "$dir/$linklib" + eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" + func_append newdlprefiles " $dir/$linklib" + else + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + fi + ;; + * ) + # Prefer using a static library (so that no silly _DYNAMIC symbols + # are required to link). + if test -n "$old_library"; then + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + # Otherwise, use the dlname, so that lt_dlopen finds it. + elif test -n "$dlname"; then + func_append newdlprefiles " $dir/$dlname" + else + func_append newdlprefiles " $dir/$linklib" + fi + ;; + esac + fi # $pass = dlpreopen + + if test -z "$libdir"; then + # Link the convenience library + if test lib = "$linkmode"; then + deplibs="$dir/$old_library $deplibs" + elif test prog,link = "$linkmode,$pass"; then + compile_deplibs="$dir/$old_library $compile_deplibs" + finalize_deplibs="$dir/$old_library $finalize_deplibs" + else + deplibs="$lib $deplibs" # used for prog,scan pass + fi + continue + fi + + + if test prog = "$linkmode" && test link != "$pass"; then + func_append newlib_search_path " $ladir" + deplibs="$lib $deplibs" + + linkalldeplibs=false + if test no != "$link_all_deplibs" || test -z "$library_names" || + test no = "$build_libtool_libs"; then + linkalldeplibs=: + fi + + tmp_libs= + for deplib in $dependency_libs; do + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + esac + # Need to link against all dependency_libs? + if $linkalldeplibs; then + deplibs="$deplib $deplibs" + else + # Need to hardcode shared library paths + # or/and link against static libraries + newdependency_libs="$deplib $newdependency_libs" + fi + if $opt_preserve_dup_deps; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done # for deplib + continue + fi # $linkmode = prog... + + if test prog,link = "$linkmode,$pass"; then + if test -n "$library_names" && + { { test no = "$prefer_static_libs" || + test built,yes = "$prefer_static_libs,$installed"; } || + test -z "$old_library"; }; then + # We need to hardcode the library path + if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then + # Make sure the rpath contains only unique directories. + case $temp_rpath: in + *"$absdir:"*) ;; + *) func_append temp_rpath "$absdir:" ;; + esac + fi + + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi # $linkmode,$pass = prog,link... + + if $alldeplibs && + { test pass_all = "$deplibs_check_method" || + { test yes = "$build_libtool_libs" && + test -n "$library_names"; }; }; then + # We only need to search for static libraries + continue + fi + fi + + link_static=no # Whether the deplib will be linked statically + use_static_libs=$prefer_static_libs + if test built = "$use_static_libs" && test yes = "$installed"; then + use_static_libs=no + fi + if test -n "$library_names" && + { test no = "$use_static_libs" || test -z "$old_library"; }; then + case $host in + *cygwin* | *mingw* | *cegcc* | *os2*) + # No point in relinking DLLs because paths are not encoded + func_append notinst_deplibs " $lib" + need_relink=no + ;; + *) + if test no = "$installed"; then + func_append notinst_deplibs " $lib" + need_relink=yes + fi + ;; + esac + # This is a shared library + + # Warn about portability, can't link against -module's on some + # systems (darwin). Don't bleat about dlopened modules though! + dlopenmodule= + for dlpremoduletest in $dlprefiles; do + if test "X$dlpremoduletest" = "X$lib"; then + dlopenmodule=$dlpremoduletest + break + fi + done + if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then + echo + if test prog = "$linkmode"; then + $ECHO "*** Warning: Linking the executable $output against the loadable module" + else + $ECHO "*** Warning: Linking the shared library $output against the loadable module" + fi + $ECHO "*** $linklib is not portable!" + fi + if test lib = "$linkmode" && + test yes = "$hardcode_into_libs"; then + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi + + if test -n "$old_archive_from_expsyms_cmds"; then + # figure out the soname + set dummy $library_names + shift + realname=$1 + shift + libname=`eval "\\$ECHO \"$libname_spec\""` + # use dlname if we got it. it's perfectly good, no? + if test -n "$dlname"; then + soname=$dlname + elif test -n "$soname_spec"; then + # bleh windows + case $host in + *cygwin* | mingw* | *cegcc* | *os2*) + func_arith $current - $age + major=$func_arith_result + versuffix=-$major + ;; + esac + eval soname=\"$soname_spec\" + else + soname=$realname + fi + + # Make a new name for the extract_expsyms_cmds to use + soroot=$soname + func_basename "$soroot" + soname=$func_basename_result + func_stripname 'lib' '.dll' "$soname" + newlib=libimp-$func_stripname_result.a + + # If the library has no export list, then create one now + if test -f "$output_objdir/$soname-def"; then : + else + func_verbose "extracting exported symbol list from '$soname'" + func_execute_cmds "$extract_expsyms_cmds" 'exit $?' + fi + + # Create $newlib + if test -f "$output_objdir/$newlib"; then :; else + func_verbose "generating import library for '$soname'" + func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' + fi + # make sure the library variables are pointing to the new library + dir=$output_objdir + linklib=$newlib + fi # test -n "$old_archive_from_expsyms_cmds" + + if test prog = "$linkmode" || test relink != "$opt_mode"; then + add_shlibpath= + add_dir= + add= + lib_linked=yes + case $hardcode_action in + immediate | unsupported) + if test no = "$hardcode_direct"; then + add=$dir/$linklib + case $host in + *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; + *-*-sysv4*uw2*) add_dir=-L$dir ;; + *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ + *-*-unixware7*) add_dir=-L$dir ;; + *-*-darwin* ) + # if the lib is a (non-dlopened) module then we cannot + # link against it, someone is ignoring the earlier warnings + if /usr/bin/file -L $add 2> /dev/null | + $GREP ": [^:]* bundle" >/dev/null; then + if test "X$dlopenmodule" != "X$lib"; then + $ECHO "*** Warning: lib $linklib is a module, not a shared library" + if test -z "$old_library"; then + echo + echo "*** And there doesn't seem to be a static archive available" + echo "*** The link will probably fail, sorry" + else + add=$dir/$old_library + fi + elif test -n "$old_library"; then + add=$dir/$old_library + fi + fi + esac + elif test no = "$hardcode_minus_L"; then + case $host in + *-*-sunos*) add_shlibpath=$dir ;; + esac + add_dir=-L$dir + add=-l$name + elif test no = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name + else + lib_linked=no + fi + ;; + relink) + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$dir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$absdir + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then + add_shlibpath=$dir + add=-l$name + else + lib_linked=no + fi + ;; + *) lib_linked=no ;; + esac + + if test yes != "$lib_linked"; then + func_fatal_configuration "unsupported hardcode properties" + fi + + if test -n "$add_shlibpath"; then + case :$compile_shlibpath: in + *":$add_shlibpath:"*) ;; + *) func_append compile_shlibpath "$add_shlibpath:" ;; + esac + fi + if test prog = "$linkmode"; then + test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" + test -n "$add" && compile_deplibs="$add $compile_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + if test yes != "$hardcode_direct" && + test yes != "$hardcode_minus_L" && + test yes = "$hardcode_shlibpath_var"; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + fi + fi + fi + + if test prog = "$linkmode" || test relink = "$opt_mode"; then + add_shlibpath= + add_dir= + add= + # Finalize command for both is simple: just hardcode it. + if test yes = "$hardcode_direct" && + test no = "$hardcode_direct_absolute"; then + add=$libdir/$linklib + elif test yes = "$hardcode_minus_L"; then + add_dir=-L$libdir + add=-l$name + elif test yes = "$hardcode_shlibpath_var"; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + add=-l$name + elif test yes = "$hardcode_automatic"; then + if test -n "$inst_prefix_dir" && + test -f "$inst_prefix_dir$libdir/$linklib"; then + add=$inst_prefix_dir$libdir/$linklib + else + add=$libdir/$linklib + fi + else + # We cannot seem to hardcode it, guess we'll fake it. + add_dir=-L$libdir + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add=-l$name + fi + + if test prog = "$linkmode"; then + test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" + test -n "$add" && finalize_deplibs="$add $finalize_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + fi + fi + elif test prog = "$linkmode"; then + # Here we assume that one of hardcode_direct or hardcode_minus_L + # is not unsupported. This is valid on all known static and + # shared platforms. + if test unsupported != "$hardcode_direct"; then + test -n "$old_library" && linklib=$old_library + compile_deplibs="$dir/$linklib $compile_deplibs" + finalize_deplibs="$dir/$linklib $finalize_deplibs" + else + compile_deplibs="-l$name -L$dir $compile_deplibs" + finalize_deplibs="-l$name -L$dir $finalize_deplibs" + fi + elif test yes = "$build_libtool_libs"; then + # Not a shared library + if test pass_all != "$deplibs_check_method"; then + # We're trying link a shared library against a static one + # but the system doesn't support it. + + # Just print a warning and add the library to dependency_libs so + # that the program can be linked against the static library. + echo + $ECHO "*** Warning: This system cannot link to static lib archive $lib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have." + if test yes = "$module"; then + echo "*** But as you try to build a module library, libtool will still create " + echo "*** a static module, that should work as long as the dlopening application" + echo "*** is linked with the -dlopen flag to resolve symbols at runtime." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** 'nm' from GNU binutils and a full rebuild may help." + fi + if test no = "$build_old_libs"; then + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + else + deplibs="$dir/$old_library $deplibs" + link_static=yes + fi + fi # link shared/static library? + + if test lib = "$linkmode"; then + if test -n "$dependency_libs" && + { test yes != "$hardcode_into_libs" || + test yes = "$build_old_libs" || + test yes = "$link_static"; }; then + # Extract -R from dependency_libs + temp_deplibs= + for libdir in $dependency_libs; do + case $libdir in + -R*) func_stripname '-R' '' "$libdir" + temp_xrpath=$func_stripname_result + case " $xrpath " in + *" $temp_xrpath "*) ;; + *) func_append xrpath " $temp_xrpath";; + esac;; + *) func_append temp_deplibs " $libdir";; + esac + done + dependency_libs=$temp_deplibs + fi + + func_append newlib_search_path " $absdir" + # Link against this library + test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + # ... and its dependency_libs + tmp_libs= + for deplib in $dependency_libs; do + newdependency_libs="$deplib $newdependency_libs" + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result";; + *) func_resolve_sysroot "$deplib" ;; + esac + if $opt_preserve_dup_deps; then + case "$tmp_libs " in + *" $func_resolve_sysroot_result "*) + func_append specialdeplibs " $func_resolve_sysroot_result" ;; + esac + fi + func_append tmp_libs " $func_resolve_sysroot_result" + done + + if test no != "$link_all_deplibs"; then + # Add the search paths of all dependency libraries + for deplib in $dependency_libs; do + path= + case $deplib in + -L*) path=$deplib ;; + *.la) + func_resolve_sysroot "$deplib" + deplib=$func_resolve_sysroot_result + func_dirname "$deplib" "" "." + dir=$func_dirname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; + *) + absdir=`cd "$dir" && pwd` + if test -z "$absdir"; then + func_warning "cannot determine absolute directory name of '$dir'" + absdir=$dir + fi + ;; + esac + if $GREP "^installed=no" $deplib > /dev/null; then + case $host in + *-*-darwin*) + depdepl= + eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names"; then + for tmp in $deplibrary_names; do + depdepl=$tmp + done + if test -f "$absdir/$objdir/$depdepl"; then + depdepl=$absdir/$objdir/$depdepl + darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -z "$darwin_install_name"; then + darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + fi + func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" + func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" + path= + fi + fi + ;; + *) + path=-L$absdir/$objdir + ;; + esac + else + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + test -z "$libdir" && \ + func_fatal_error "'$deplib' is not a valid libtool archive" + test "$absdir" != "$libdir" && \ + func_warning "'$deplib' seems to be moved" + + path=-L$absdir + fi + ;; + esac + case " $deplibs " in + *" $path "*) ;; + *) deplibs="$path $deplibs" ;; + esac + done + fi # link_all_deplibs != no + fi # linkmode = lib + done # for deplib in $libs + if test link = "$pass"; then + if test prog = "$linkmode"; then + compile_deplibs="$new_inherited_linker_flags $compile_deplibs" + finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" + else + compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + fi + fi + dependency_libs=$newdependency_libs + if test dlpreopen = "$pass"; then + # Link the dlpreopened libraries before other libraries + for deplib in $save_deplibs; do + deplibs="$deplib $deplibs" + done + fi + if test dlopen != "$pass"; then + test conv = "$pass" || { + # Make sure lib_search_path contains only unique directories. + lib_search_path= + for dir in $newlib_search_path; do + case "$lib_search_path " in + *" $dir "*) ;; + *) func_append lib_search_path " $dir" ;; + esac + done + newlib_search_path= + } + + if test prog,link = "$linkmode,$pass"; then + vars="compile_deplibs finalize_deplibs" + else + vars=deplibs + fi + for var in $vars dependency_libs; do + # Add libraries to $var in reverse order + eval tmp_libs=\"\$$var\" + new_libs= + for deplib in $tmp_libs; do + # FIXME: Pedantically, this is the right thing to do, so + # that some nasty dependency loop isn't accidentally + # broken: + #new_libs="$deplib $new_libs" + # Pragmatically, this seems to cause very few problems in + # practice: + case $deplib in + -L*) new_libs="$deplib $new_libs" ;; + -R*) ;; + *) + # And here is the reason: when a library appears more + # than once as an explicit dependence of a library, or + # is implicitly linked in more than once by the + # compiler, it is considered special, and multiple + # occurrences thereof are not removed. Compare this + # with having the same library being listed as a + # dependency of multiple other libraries: in this case, + # we know (pedantically, we assume) the library does not + # need to be listed more than once, so we keep only the + # last copy. This is not always right, but it is rare + # enough that we require users that really mean to play + # such unportable linking tricks to link the library + # using -Wl,-lname, so that libtool does not consider it + # for duplicate removal. + case " $specialdeplibs " in + *" $deplib "*) new_libs="$deplib $new_libs" ;; + *) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs="$deplib $new_libs" ;; + esac + ;; + esac + ;; + esac + done + tmp_libs= + for deplib in $new_libs; do + case $deplib in + -L*) + case " $tmp_libs " in + *" $deplib "*) ;; + *) func_append tmp_libs " $deplib" ;; + esac + ;; + *) func_append tmp_libs " $deplib" ;; + esac + done + eval $var=\"$tmp_libs\" + done # for var + fi + + # Add Sun CC postdeps if required: + test CXX = "$tagname" && { + case $host_os in + linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C++ 5.9 + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + + solaris*) + func_cc_basename "$CC" + case $func_cc_basename_result in + CC* | sunCC*) + func_suncc_cstd_abi + + if test no != "$suncc_use_cstd_abi"; then + func_append postdeps ' -library=Cstd -library=Crun' + fi + ;; + esac + ;; + esac + } + + # Last step: remove runtime libs from dependency_libs + # (they stay in deplibs) + tmp_libs= + for i in $dependency_libs; do + case " $predeps $postdeps $compiler_lib_search_path " in + *" $i "*) + i= + ;; + esac + if test -n "$i"; then + func_append tmp_libs " $i" + fi + done + dependency_libs=$tmp_libs + done # for pass + if test prog = "$linkmode"; then + dlfiles=$newdlfiles + fi + if test prog = "$linkmode" || test lib = "$linkmode"; then + dlprefiles=$newdlprefiles + fi + + case $linkmode in + oldlib) + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for archives" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "'-l' and '-L' are ignored for archives" ;; + esac + + test -n "$rpath" && \ + func_warning "'-rpath' is ignored for archives" + + test -n "$xrpath" && \ + func_warning "'-R' is ignored for archives" + + test -n "$vinfo" && \ + func_warning "'-version-info/-version-number' is ignored for archives" + + test -n "$release" && \ + func_warning "'-release' is ignored for archives" + + test -n "$export_symbols$export_symbols_regex" && \ + func_warning "'-export-symbols' is ignored for archives" + + # Now set the variables for building old libraries. + build_libtool_libs=no + oldlibs=$output + func_append objs "$old_deplibs" + ;; + + lib) + # Make sure we only generate libraries of the form 'libNAME.la'. + case $outputname in + lib*) + func_stripname 'lib' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + ;; + *) + test no = "$module" \ + && func_fatal_help "libtool library '$output' must begin with 'lib'" + + if test no != "$need_lib_prefix"; then + # Add the "lib" prefix for modules if required + func_stripname '' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + else + func_stripname '' '.la' "$outputname" + libname=$func_stripname_result + fi + ;; + esac + + if test -n "$objs"; then + if test pass_all != "$deplibs_check_method"; then + func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" + else + echo + $ECHO "*** Warning: Linking the shared library $output against the non-libtool" + $ECHO "*** objects $objs is not portable!" + func_append libobjs " $objs" + fi + fi + + test no = "$dlself" \ + || func_warning "'-dlopen self' is ignored for libtool libraries" + + set dummy $rpath + shift + test 1 -lt "$#" \ + && func_warning "ignoring multiple '-rpath's for a libtool library" + + install_libdir=$1 + + oldlibs= + if test -z "$rpath"; then + if test yes = "$build_libtool_libs"; then + # Building a libtool convenience library. + # Some compilers have problems with a '.al' extension so + # convenience libraries should have the same extension an + # archive normally would. + oldlibs="$output_objdir/$libname.$libext $oldlibs" + build_libtool_libs=convenience + build_old_libs=yes + fi + + test -n "$vinfo" && \ + func_warning "'-version-info/-version-number' is ignored for convenience libraries" + + test -n "$release" && \ + func_warning "'-release' is ignored for convenience libraries" + else + + # Parse the version information argument. + save_ifs=$IFS; IFS=: + set dummy $vinfo 0 0 0 + shift + IFS=$save_ifs + + test -n "$7" && \ + func_fatal_help "too many parameters to '-version-info'" + + # convert absolute version numbers to libtool ages + # this retains compatibility with .la files and attempts + # to make the code below a bit more comprehensible + + case $vinfo_number in + yes) + number_major=$1 + number_minor=$2 + number_revision=$3 + # + # There are really only two kinds -- those that + # use the current revision as the major version + # and those that subtract age and use age as + # a minor version. But, then there is irix + # that has an extra 1 added just for fun + # + case $version_type in + # correct linux to gnu/linux during the next big refactor + darwin|freebsd-elf|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_revision + ;; + freebsd-aout|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 + ;; + irix|nonstopux) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_minor + lt_irix_increment=no + ;; + *) + func_fatal_configuration "$modename: unknown library version type '$version_type'" + ;; + esac + ;; + no) + current=$1 + revision=$2 + age=$3 + ;; + esac + + # Check that each of the things are valid numbers. + case $current in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "CURRENT '$current' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" + ;; + esac + + case $revision in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "REVISION '$revision' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" + ;; + esac + + case $age in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "AGE '$age' must be a nonnegative integer" + func_fatal_error "'$vinfo' is not valid version information" + ;; + esac + + if test "$age" -gt "$current"; then + func_error "AGE '$age' is greater than the current interface number '$current'" + func_fatal_error "'$vinfo' is not valid version information" + fi + + # Calculate the version variables. + major= + versuffix= + verstring= + case $version_type in + none) ;; + + darwin) + # Like Linux, but with the current version available in + # verstring for coding it into the library header + func_arith $current - $age + major=.$func_arith_result + versuffix=$major.$age.$revision + # Darwin ld doesn't like 0 for these options... + func_arith $current + 1 + minor_current=$func_arith_result + xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + # On Darwin other compilers + case $CC in + nagfor*) + verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" + ;; + *) + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + esac + ;; + + freebsd-aout) + major=.$current + versuffix=.$current.$revision + ;; + + freebsd-elf) + func_arith $current - $age + major=.$func_arith_result + versuffix=$major.$age.$revision + ;; + + irix | nonstopux) + if test no = "$lt_irix_increment"; then + func_arith $current - $age + else + func_arith $current - $age + 1 + fi + major=$func_arith_result + + case $version_type in + nonstopux) verstring_prefix=nonstopux ;; + *) verstring_prefix=sgi ;; + esac + verstring=$verstring_prefix$major.$revision + + # Add in all the interfaces that we are compatible with. + loop=$revision + while test 0 -ne "$loop"; do + func_arith $revision - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring=$verstring_prefix$major.$iface:$verstring + done + + # Before this point, $major must not contain '.'. + major=.$major + versuffix=$major.$revision + ;; + + linux) # correct to gnu/linux during the next big refactor + func_arith $current - $age + major=.$func_arith_result + versuffix=$major.$age.$revision + ;; + + osf) + func_arith $current - $age + major=.$func_arith_result + versuffix=.$current.$age.$revision + verstring=$current.$age.$revision + + # Add in all the interfaces that we are compatible with. + loop=$age + while test 0 -ne "$loop"; do + func_arith $current - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring=$verstring:$iface.0 + done + + # Make executables depend on our current version. + func_append verstring ":$current.0" + ;; + + qnx) + major=.$current + versuffix=.$current + ;; + + sco) + major=.$current + versuffix=.$current + ;; + + sunos) + major=.$current + versuffix=.$current.$revision + ;; + + windows) + # Use '-' rather than '.', since we only want one + # extension on DOS 8.3 file systems. + func_arith $current - $age + major=$func_arith_result + versuffix=-$major + ;; + + *) + func_fatal_configuration "unknown library version type '$version_type'" + ;; + esac + + # Clear the version info if we defaulted, and they specified a release. + if test -z "$vinfo" && test -n "$release"; then + major= + case $version_type in + darwin) + # we can't check for "0.0" in archive_cmds due to quoting + # problems, so we reset it completely + verstring= + ;; + *) + verstring=0.0 + ;; + esac + if test no = "$need_version"; then + versuffix= + else + versuffix=.0.0 + fi + fi + + # Remove version info from name if versioning should be avoided + if test yes,no = "$avoid_version,$need_version"; then + major= + versuffix= + verstring= + fi + + # Check to see if the archive will have undefined symbols. + if test yes = "$allow_undefined"; then + if test unsupported = "$allow_undefined_flag"; then + if test yes = "$build_old_libs"; then + func_warning "undefined symbols not allowed in $host shared libraries; building static only" + build_libtool_libs=no + else + func_fatal_error "can't build $host shared library unless -no-undefined is specified" + fi + fi + else + # Don't allow undefined symbols. + allow_undefined_flag=$no_undefined_flag + fi + + fi + + func_generate_dlsyms "$libname" "$libname" : + func_append libobjs " $symfileobj" + test " " = "$libobjs" && libobjs= + + if test relink != "$opt_mode"; then + # Remove our outputs, but don't remove object files since they + # may have been created when compiling PIC objects. + removelist= + tempremovelist=`$ECHO "$output_objdir/*"` + for p in $tempremovelist; do + case $p in + *.$objext | *.gcno) + ;; + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) + if test -n "$precious_files_regex"; then + if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 + then + continue + fi + fi + func_append removelist " $p" + ;; + *) ;; + esac + done + test -n "$removelist" && \ + func_show_eval "${RM}r \$removelist" + fi + + # Now set the variables for building old libraries. + if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then + func_append oldlibs " $output_objdir/$libname.$libext" + + # Transform .lo files to .o files. + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` + fi + + # Eliminate all temporary directories. + #for path in $notinst_path; do + # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` + # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` + # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` + #done + + if test -n "$xrpath"; then + # If the user specified any rpath flags, then add them. + temp_xrpath= + for libdir in $xrpath; do + func_replace_sysroot "$libdir" + func_append temp_xrpath " -R$func_replace_sysroot_result" + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then + dependency_libs="$temp_xrpath $dependency_libs" + fi + fi + + # Make sure dlfiles contains only unique files that won't be dlpreopened + old_dlfiles=$dlfiles + dlfiles= + for lib in $old_dlfiles; do + case " $dlprefiles $dlfiles " in + *" $lib "*) ;; + *) func_append dlfiles " $lib" ;; + esac + done + + # Make sure dlprefiles contains only unique files + old_dlprefiles=$dlprefiles + dlprefiles= + for lib in $old_dlprefiles; do + case "$dlprefiles " in + *" $lib "*) ;; + *) func_append dlprefiles " $lib" ;; + esac + done + + if test yes = "$build_libtool_libs"; then + if test -n "$rpath"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) + # these systems don't actually have a c library (as such)! + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C library is in the System framework + func_append deplibs " System.ltframework" + ;; + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test yes = "$build_libtool_need_lc"; then + func_append deplibs " -lc" + fi + ;; + esac + fi + + # Transform deplibs into only deplibs that can be linked in shared. + name_save=$name + libname_save=$libname + release_save=$release + versuffix_save=$versuffix + major_save=$major + # I'm not sure if I'm treating the release correctly. I think + # release should show up in the -l (ie -lgmp5) so we don't want to + # add it in twice. Is that correct? + release= + versuffix= + major= + newdeplibs= + droppeddeps=no + case $deplibs_check_method in + pass_all) + # Don't check for shared/static. Everything works. + # This might be a little naive. We might want to check + # whether the library exists or not. But this is on + # osf3 & osf4 and I'm not really sure... Just + # implementing what was already the behavior. + newdeplibs=$deplibs + ;; + test_compile) + # This code stresses the "libraries are programs" paradigm to its + # limits. Maybe even breaks it. We compile a program, linking it + # against the deplibs as a proxy for the library. Then we can check + # whether they linked in statically or dynamically with ldd. + $opt_dry_run || $RM conftest.c + cat > conftest.c </dev/null` + $nocaseglob + else + potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` + fi + for potent_lib in $potential_libs; do + # Follow soft links. + if ls -lLd "$potent_lib" 2>/dev/null | + $GREP " -> " >/dev/null; then + continue + fi + # The statement above tries to avoid entering an + # endless loop below, in case of cyclic links. + # We might still enter an endless loop, since a link + # loop can be closed while we follow links, + # but so what? + potlib=$potent_lib + while test -h "$potlib" 2>/dev/null; do + potliblink=`ls -ld $potlib | $SED 's/.* -> //'` + case $potliblink in + [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; + *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; + esac + done + if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | + $SED -e 10q | + $EGREP "$file_magic_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib= + break 2 + fi + done + done + fi + if test -n "$a_deplib"; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib"; then + $ECHO "*** with $libname but no candidates were found. (...for file magic test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a file magic. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + for a_deplib in $deplibs; do + case $a_deplib in + -l*) + func_stripname -l '' "$a_deplib" + name=$func_stripname_result + if test yes = "$allow_libtool_libs_with_static_runtimes"; then + case " $predeps $postdeps " in + *" $a_deplib "*) + func_append newdeplibs " $a_deplib" + a_deplib= + ;; + esac + fi + if test -n "$a_deplib"; then + libname=`eval "\\$ECHO \"$libname_spec\""` + for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do + potential_libs=`ls $i/$libname[.-]* 2>/dev/null` + for potent_lib in $potential_libs; do + potlib=$potent_lib # see symlink-check above in file_magic test + if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ + $EGREP "$match_pattern_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib= + break 2 + fi + done + done + fi + if test -n "$a_deplib"; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib"; then + $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a regex pattern. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + none | unknown | *) + newdeplibs= + tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` + if test yes = "$allow_libtool_libs_with_static_runtimes"; then + for i in $predeps $postdeps; do + # can't use Xsed below, because $i might contain '/' + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` + done + fi + case $tmp_deplibs in + *[!\ \ ]*) + echo + if test none = "$deplibs_check_method"; then + echo "*** Warning: inter-library dependencies are not supported in this platform." + else + echo "*** Warning: inter-library dependencies are not known to be supported." + fi + echo "*** All declared inter-library dependencies are being dropped." + droppeddeps=yes + ;; + esac + ;; + esac + versuffix=$versuffix_save + major=$major_save + release=$release_save + libname=$libname_save + name=$name_save + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library with the System framework + newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + if test yes = "$droppeddeps"; then + if test yes = "$module"; then + echo + echo "*** Warning: libtool could not satisfy all declared inter-library" + $ECHO "*** dependencies of module $libname. Therefore, libtool will create" + echo "*** a static module, that should work as long as the dlopening" + echo "*** application is linked with the -dlopen flag." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using 'nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** 'nm' from GNU binutils and a full rebuild may help." + fi + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + else + echo "*** The inter-library dependencies that have been dropped here will be" + echo "*** automatically added whenever a program is linked with this library" + echo "*** or is declared to -dlopen it." + + if test no = "$allow_undefined"; then + echo + echo "*** Since this library must not contain undefined symbols," + echo "*** because either the platform does not support them or" + echo "*** it was explicitly requested with -no-undefined," + echo "*** libtool will only create a static version of it." + if test no = "$build_old_libs"; then + oldlibs=$output_objdir/$libname.$libext + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + fi + fi + # Done checking deplibs! + deplibs=$newdeplibs + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + case $host in + *-*-darwin*) + newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + deplibs=$new_libs + + # All the library-specific variables (install_libdir is set above). + library_names= + old_library= + dlname= + + # Test again, we may have decided not to build it any more + if test yes = "$build_libtool_libs"; then + # Remove $wl instances when linking with ld. + # FIXME: should test the right _cmds variable. + case $archive_cmds in + *\$LD\ *) wl= ;; + esac + if test yes = "$hardcode_into_libs"; then + # Hardcode the library paths + hardcode_libdirs= + dep_rpath= + rpath=$finalize_rpath + test relink = "$opt_mode" || rpath=$compile_rpath$rpath + for libdir in $rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + func_replace_sysroot "$libdir" + libdir=$func_replace_sysroot_result + if test -z "$hardcode_libdirs"; then + hardcode_libdirs=$libdir + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append dep_rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir=$hardcode_libdirs + eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" + fi + if test -n "$runpath_var" && test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" + fi + test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" + fi + + shlibpath=$finalize_shlibpath + test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath + if test -n "$shlibpath"; then + eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" + fi + + # Get the real and link names of the library. + eval shared_ext=\"$shrext_cmds\" + eval library_names=\"$library_names_spec\" + set dummy $library_names + shift + realname=$1 + shift + + if test -n "$soname_spec"; then + eval soname=\"$soname_spec\" + else + soname=$realname + fi + if test -z "$dlname"; then + dlname=$soname + fi + + lib=$output_objdir/$realname + linknames= + for link + do + func_append linknames " $link" + done + + # Use standard objects if they are pic + test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` + test "X$libobjs" = "X " && libobjs= + + delfiles= + if test -n "$export_symbols" && test -n "$include_expsyms"; then + $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" + export_symbols=$output_objdir/$libname.uexp + func_append delfiles " $export_symbols" + fi + + orig_export_symbols= + case $host_os in + cygwin* | mingw* | cegcc*) + if test -n "$export_symbols" && test -z "$export_symbols_regex"; then + # exporting using user supplied symfile + func_dll_def_p "$export_symbols" || { + # and it's NOT already a .def file. Must figure out + # which of the given symbols are data symbols and tag + # them as such. So, trigger use of export_symbols_cmds. + # export_symbols gets reassigned inside the "prepare + # the list of exported symbols" if statement, so the + # include_expsyms logic still works. + orig_export_symbols=$export_symbols + export_symbols= + always_export_symbols=yes + } + fi + ;; + esac + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp + $opt_dry_run || $RM $export_symbols + cmds=$export_symbols_cmds + save_ifs=$IFS; IFS='~' + for cmd1 in $cmds; do + IFS=$save_ifs + # Take the normal branch if the nm_file_list_spec branch + # doesn't work or if tool conversion is not needed. + case $nm_file_list_spec~$to_tool_file_cmd in + *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) + try_normal_branch=yes + eval cmd=\"$cmd1\" + func_len " $cmd" + len=$func_len_result + ;; + *) + try_normal_branch=no + ;; + esac + if test yes = "$try_normal_branch" \ + && { test "$len" -lt "$max_cmd_len" \ + || test "$max_cmd_len" -le -1; } + then + func_show_eval "$cmd" 'exit $?' + skipped_export=false + elif test -n "$nm_file_list_spec"; then + func_basename "$output" + output_la=$func_basename_result + save_libobjs=$libobjs + save_output=$output + output=$output_objdir/$output_la.nm + func_to_tool_file "$output" + libobjs=$nm_file_list_spec$func_to_tool_file_result + func_append delfiles " $output" + func_verbose "creating $NM input file list: $output" + for obj in $save_libobjs; do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > "$output" + eval cmd=\"$cmd1\" + func_show_eval "$cmd" 'exit $?' + output=$save_output + libobjs=$save_libobjs + skipped_export=false + else + # The command line is too long to execute in one step. + func_verbose "using reloadable object file for export list..." + skipped_export=: + # Break out early, otherwise skipped_export may be + # set to false by a later but shorter cmd. + break + fi + done + IFS=$save_ifs + if test -n "$export_symbols_regex" && test : != "$skipped_export"; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + fi + + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test : != "$skipped_export" && test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands, which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + + tmp_deplibs= + for test_deplib in $deplibs; do + case " $convenience " in + *" $test_deplib "*) ;; + *) + func_append tmp_deplibs " $test_deplib" + ;; + esac + done + deplibs=$tmp_deplibs + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec" && + test yes = "$compiler_needs_object" && + test -z "$libobjs"; then + # extract the archives, so we have objects to list. + # TODO: could optimize this to just extract one archive. + whole_archive_flag_spec= + fi + if test -n "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + else + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + fi + + if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then + eval flag=\"$thread_safe_flag_spec\" + func_append linker_flags " $flag" + fi + + # Make a backup of the uninstalled library when relinking + if test relink = "$opt_mode"; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? + fi + + # Do each of the archive commands. + if test yes = "$module" && test -n "$module_cmds"; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + eval test_cmds=\"$module_expsym_cmds\" + cmds=$module_expsym_cmds + else + eval test_cmds=\"$module_cmds\" + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + eval test_cmds=\"$archive_expsym_cmds\" + cmds=$archive_expsym_cmds + else + eval test_cmds=\"$archive_cmds\" + cmds=$archive_cmds + fi + fi + + if test : != "$skipped_export" && + func_len " $test_cmds" && + len=$func_len_result && + test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + : + else + # The command line is too long to link in one step, link piecewise + # or, if using GNU ld and skipped_export is not :, use a linker + # script. + + # Save the value of $output and $libobjs because we want to + # use them later. If we have whole_archive_flag_spec, we + # want to use save_libobjs as it was before + # whole_archive_flag_spec was expanded, because we can't + # assume the linker understands whole_archive_flag_spec. + # This may have to be revisited, in case too many + # convenience libraries get linked in and end up exceeding + # the spec. + if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + fi + save_output=$output + func_basename "$output" + output_la=$func_basename_result + + # Clear the reloadable object creation command queue and + # initialize k to one. + test_cmds= + concat_cmds= + objlist= + last_robj= + k=1 + + if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then + output=$output_objdir/$output_la.lnkscript + func_verbose "creating GNU ld script: $output" + echo 'INPUT (' > $output + for obj in $save_libobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + echo ')' >> $output + func_append delfiles " $output" + func_to_tool_file "$output" + output=$func_to_tool_file_result + elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then + output=$output_objdir/$output_la.lnk + func_verbose "creating linker input file list: $output" + : > $output + set x $save_libobjs + shift + firstobj= + if test yes = "$compiler_needs_object"; then + firstobj="$1 " + shift + fi + for obj + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + func_append delfiles " $output" + func_to_tool_file "$output" + output=$firstobj\"$file_list_spec$func_to_tool_file_result\" + else + if test -n "$save_libobjs"; then + func_verbose "creating reloadable object files..." + output=$output_objdir/$output_la-$k.$objext + eval test_cmds=\"$reload_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + + # Loop over the list of objects to be linked. + for obj in $save_libobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + if test -z "$objlist" || + test "$len" -lt "$max_cmd_len"; then + func_append objlist " $obj" + else + # The command $test_cmds is almost too long, add a + # command to the queue. + if test 1 -eq "$k"; then + # The first file doesn't have a previous command to add. + reload_objs=$objlist + eval concat_cmds=\"$reload_cmds\" + else + # All subsequent reloadable object files will link in + # the last one created. + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" + fi + last_robj=$output_objdir/$output_la-$k.$objext + func_arith $k + 1 + k=$func_arith_result + output=$output_objdir/$output_la-$k.$objext + objlist=" $obj" + func_len " $last_robj" + func_arith $len0 + $func_len_result + len=$func_arith_result + fi + done + # Handle the remaining objects by creating one last + # reloadable object file. All subsequent reloadable object + # files will link in the last one created. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\$concat_cmds$reload_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + func_append delfiles " $output" + + else + output= + fi + + ${skipped_export-false} && { + func_verbose "generating symbol list for '$libname.la'" + export_symbols=$output_objdir/$libname.exp + $opt_dry_run || $RM $export_symbols + libobjs=$output + # Append the command to create the export file. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + } + + test -n "$save_libobjs" && + func_verbose "creating a temporary reloadable object file: $output" + + # Loop through the commands generated above and execute them. + save_ifs=$IFS; IFS='~' + for cmd in $concat_cmds; do + IFS=$save_ifs + $opt_quiet || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test relink = "$opt_mode"; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS=$save_ifs + + if test -n "$export_symbols_regex" && ${skipped_export-false}; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + + ${skipped_export-false} && { + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols=$export_symbols + test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for '$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands, which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + } + + libobjs=$output + # Restore the value of output. + output=$save_output + + if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + fi + # Expand the library linking commands again to reset the + # value of $libobjs for piecewise linking. + + # Do each of the archive commands. + if test yes = "$module" && test -n "$module_cmds"; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + cmds=$module_expsym_cmds + else + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + cmds=$archive_expsym_cmds + else + cmds=$archive_cmds + fi + fi + fi + + if test -n "$delfiles"; then + # Append the command to remove temporary files to $cmds. + eval cmds=\"\$cmds~\$RM $delfiles\" + fi + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + + save_ifs=$IFS; IFS='~' + for cmd in $cmds; do + IFS=$sp$nl + eval cmd=\"$cmd\" + IFS=$save_ifs + $opt_quiet || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test relink = "$opt_mode"; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS=$save_ifs + + # Restore the uninstalled library and exit + if test relink = "$opt_mode"; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? + + if test -n "$convenience"; then + if test -z "$whole_archive_flag_spec"; then + func_show_eval '${RM}r "$gentop"' + fi + fi + + exit $EXIT_SUCCESS + fi + + # Create links to the real library. + for linkname in $linknames; do + if test "$realname" != "$linkname"; then + func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' + fi + done + + # If -module or -export-dynamic was specified, set the dlname. + if test yes = "$module" || test yes = "$export_dynamic"; then + # On all known operating systems, these are identical. + dlname=$soname + fi + fi + ;; + + obj) + if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then + func_warning "'-dlopen' is ignored for objects" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "'-l' and '-L' are ignored for objects" ;; + esac + + test -n "$rpath" && \ + func_warning "'-rpath' is ignored for objects" + + test -n "$xrpath" && \ + func_warning "'-R' is ignored for objects" + + test -n "$vinfo" && \ + func_warning "'-version-info' is ignored for objects" + + test -n "$release" && \ + func_warning "'-release' is ignored for objects" + + case $output in + *.lo) + test -n "$objs$old_deplibs" && \ + func_fatal_error "cannot build library object '$output' from non-libtool objects" + + libobj=$output + func_lo2o "$libobj" + obj=$func_lo2o_result + ;; + *) + libobj= + obj=$output + ;; + esac + + # Delete the old objects. + $opt_dry_run || $RM $obj $libobj + + # Objects from convenience libraries. This assumes + # single-version convenience libraries. Whenever we create + # different ones for PIC/non-PIC, this we'll have to duplicate + # the extraction. + reload_conv_objs= + gentop= + # if reload_cmds runs $LD directly, get rid of -Wl from + # whole_archive_flag_spec and hope we can get by with turning comma + # into space. + case $reload_cmds in + *\$LD[\ \$]*) wl= ;; + esac + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then + eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" + test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags + else + gentop=$output_objdir/${obj}x + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + reload_conv_objs="$reload_objs $func_extract_archives_result" + fi + fi + + # If we're not building shared, we need to use non_pic_objs + test yes = "$build_libtool_libs" || libobjs=$non_pic_objects + + # Create the old-style object. + reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs + + output=$obj + func_execute_cmds "$reload_cmds" 'exit $?' + + # Exit if we aren't doing a library object file. + if test -z "$libobj"; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + fi + + test yes = "$build_libtool_libs" || { + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + # Create an invalid libtool object if no PIC, so that we don't + # accidentally link it into a program. + # $show "echo timestamp > $libobj" + # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? + exit $EXIT_SUCCESS + } + + if test -n "$pic_flag" || test default != "$pic_mode"; then + # Only do commands if we really have different PIC objects. + reload_objs="$libobjs $reload_conv_objs" + output=$libobj + func_execute_cmds "$reload_cmds" 'exit $?' + fi + + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + ;; + + prog) + case $host in + *cygwin*) func_stripname '' '.exe' "$output" + output=$func_stripname_result.exe;; + esac + test -n "$vinfo" && \ + func_warning "'-version-info' is ignored for programs" + + test -n "$release" && \ + func_warning "'-release' is ignored for programs" + + $preload \ + && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ + && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library is the System framework + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + case $host in + *-*-darwin*) + # Don't allow lazy linking, it breaks C++ global constructors + # But is supposedly fixed on 10.4 or later (yay!). + if test CXX = "$tagname"; then + case ${MACOSX_DEPLOYMENT_TARGET-10.0} in + 10.[0123]) + func_append compile_command " $wl-bind_at_load" + func_append finalize_command " $wl-bind_at_load" + ;; + esac + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $compile_deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $compile_deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + compile_deplibs=$new_libs + + + func_append compile_command " $compile_deplibs" + func_append finalize_command " $finalize_deplibs" + + if test -n "$rpath$xrpath"; then + # If the user specified any rpath flags, then add them. + for libdir in $rpath $xrpath; do + # This is the magic to use -rpath. + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + fi + + # Now hardcode the library paths + rpath= + hardcode_libdirs= + for libdir in $compile_rpath $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs=$libdir + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$libdir:"*) ;; + ::) dllsearchpath=$libdir;; + *) func_append dllsearchpath ":$libdir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir=$hardcode_libdirs + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + compile_rpath=$rpath + + rpath= + hardcode_libdirs= + for libdir in $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs=$libdir + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$finalize_perm_rpath " in + *" $libdir "*) ;; + *) func_append finalize_perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir=$hardcode_libdirs + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + finalize_rpath=$rpath + + if test -n "$libobjs" && test yes = "$build_old_libs"; then + # Transform all the library objects into standard objects. + compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + fi + + func_generate_dlsyms "$outputname" "@PROGRAM@" false + + # template prelinking step + if test -n "$prelink_cmds"; then + func_execute_cmds "$prelink_cmds" 'exit $?' + fi + + wrappers_required=: + case $host in + *cegcc* | *mingw32ce*) + # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. + wrappers_required=false + ;; + *cygwin* | *mingw* ) + test yes = "$build_libtool_libs" || wrappers_required=false + ;; + *) + if test no = "$need_relink" || test yes != "$build_libtool_libs"; then + wrappers_required=false + fi + ;; + esac + $wrappers_required || { + # Replace the output file specification. + compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + link_command=$compile_command$compile_rpath + + # We have no uninstalled library dependencies, so finalize right now. + exit_status=0 + func_show_eval "$link_command" 'exit_status=$?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Delete the generated files. + if test -f "$output_objdir/${outputname}S.$objext"; then + func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' + fi + + exit $exit_status + } + + if test -n "$compile_shlibpath$finalize_shlibpath"; then + compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" + fi + if test -n "$finalize_shlibpath"; then + finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" + fi + + compile_var= + finalize_var= + if test -n "$runpath_var"; then + if test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + compile_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + if test -n "$finalize_perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $finalize_perm_rpath; do + func_append rpath "$dir:" + done + finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + fi + + if test yes = "$no_install"; then + # We don't need to create a wrapper script. + link_command=$compile_var$compile_command$compile_rpath + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + # Delete the old output file. + $opt_dry_run || $RM $output + # Link the executable and exit + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + exit $EXIT_SUCCESS + fi + + case $hardcode_action,$fast_install in + relink,*) + # Fast installation is not supported + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath + + func_warning "this platform does not like uninstalled shared libraries" + func_warning "'$output' will be relinked during installation" + ;; + *,yes) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + ;; + *,no) + link_command=$compile_var$compile_command$compile_rpath + relink_command=$finalize_var$finalize_command$finalize_rpath + ;; + *,needless) + link_command=$finalize_var$compile_command$finalize_rpath + relink_command= + ;; + esac + + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` + + # Delete the old output files. + $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname + + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output_objdir/$outputname" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Now create the wrapper script. + func_verbose "creating $output" + + # Quote the relink command for shipping. + if test -n "$relink_command"; then + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + relink_command="(cd `pwd`; $relink_command)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + fi + + # Only actually do things if not in dry run mode. + $opt_dry_run || { + # win32 will think the script is a binary if it has + # a .exe suffix, so we strip it off here. + case $output in + *.exe) func_stripname '' '.exe' "$output" + output=$func_stripname_result ;; + esac + # test for cygwin because mv fails w/o .exe extensions + case $host in + *cygwin*) + exeext=.exe + func_stripname '' '.exe' "$outputname" + outputname=$func_stripname_result ;; + *) exeext= ;; + esac + case $host in + *cygwin* | *mingw* ) + func_dirname_and_basename "$output" "" "." + output_name=$func_basename_result + output_path=$func_dirname_result + cwrappersource=$output_path/$objdir/lt-$output_name.c + cwrapper=$output_path/$output_name.exe + $RM $cwrappersource $cwrapper + trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 + + func_emit_cwrapperexe_src > $cwrappersource + + # The wrapper executable is built using the $host compiler, + # because it contains $host paths and files. If cross- + # compiling, it, like the target executable, must be + # executed on the $host or under an emulation environment. + $opt_dry_run || { + $LTCC $LTCFLAGS -o $cwrapper $cwrappersource + $STRIP $cwrapper + } + + # Now, create the wrapper script for func_source use: + func_ltwrapper_scriptname $cwrapper + $RM $func_ltwrapper_scriptname_result + trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 + $opt_dry_run || { + # note: this script will not be executed, so do not chmod. + if test "x$build" = "x$host"; then + $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result + else + func_emit_wrapper no > $func_ltwrapper_scriptname_result + fi + } + ;; + * ) + $RM $output + trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 + + func_emit_wrapper no > $output + chmod +x $output + ;; + esac + } + exit $EXIT_SUCCESS + ;; + esac + + # See if we need to build an old-fashioned archive. + for oldlib in $oldlibs; do + + case $build_libtool_libs in + convenience) + oldobjs="$libobjs_save $symfileobj" + addlibs=$convenience + build_libtool_libs=no + ;; + module) + oldobjs=$libobjs_save + addlibs=$old_convenience + build_libtool_libs=no + ;; + *) + oldobjs="$old_deplibs $non_pic_objects" + $preload && test -f "$symfileobj" \ + && func_append oldobjs " $symfileobj" + addlibs=$old_convenience + ;; + esac + + if test -n "$addlibs"; then + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + + func_extract_archives $gentop $addlibs + func_append oldobjs " $func_extract_archives_result" + fi + + # Do each command in the archive commands. + if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then + cmds=$old_archive_from_new_cmds + else + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append oldobjs " $func_extract_archives_result" + fi + + # POSIX demands no paths to be encoded in archives. We have + # to avoid creating archives with duplicate basenames if we + # might have to extract them afterwards, e.g., when creating a + # static archive out of a convenience library, or when linking + # the entirety of a libtool archive into another (currently + # not supported by libtool). + if (for obj in $oldobjs + do + func_basename "$obj" + $ECHO "$func_basename_result" + done | sort | sort -uc >/dev/null 2>&1); then + : + else + echo "copying selected object files to avoid basename conflicts..." + gentop=$output_objdir/${outputname}x + func_append generated " $gentop" + func_mkdir_p "$gentop" + save_oldobjs=$oldobjs + oldobjs= + counter=1 + for obj in $save_oldobjs + do + func_basename "$obj" + objbase=$func_basename_result + case " $oldobjs " in + " ") oldobjs=$obj ;; + *[\ /]"$objbase "*) + while :; do + # Make sure we don't pick an alternate name that also + # overlaps. + newobj=lt$counter-$objbase + func_arith $counter + 1 + counter=$func_arith_result + case " $oldobjs " in + *[\ /]"$newobj "*) ;; + *) if test ! -f "$gentop/$newobj"; then break; fi ;; + esac + done + func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" + func_append oldobjs " $gentop/$newobj" + ;; + *) func_append oldobjs " $obj" ;; + esac + done + fi + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + eval cmds=\"$old_archive_cmds\" + + func_len " $cmds" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + cmds=$old_archive_cmds + elif test -n "$archiver_list_spec"; then + func_verbose "using command file archive linking..." + for obj in $oldobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > $output_objdir/$libname.libcmd + func_to_tool_file "$output_objdir/$libname.libcmd" + oldobjs=" $archiver_list_spec$func_to_tool_file_result" + cmds=$old_archive_cmds + else + # the command line is too long to link in one step, link in parts + func_verbose "using piecewise archive linking..." + save_RANLIB=$RANLIB + RANLIB=: + objlist= + concat_cmds= + save_oldobjs=$oldobjs + oldobjs= + # Is there a better way of finding the last object in the list? + for obj in $save_oldobjs + do + last_oldobj=$obj + done + eval test_cmds=\"$old_archive_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + for obj in $save_oldobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + func_append objlist " $obj" + if test "$len" -lt "$max_cmd_len"; then + : + else + # the above command should be used before it gets too long + oldobjs=$objlist + if test "$obj" = "$last_oldobj"; then + RANLIB=$save_RANLIB + fi + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" + objlist= + len=$len0 + fi + done + RANLIB=$save_RANLIB + oldobjs=$objlist + if test -z "$oldobjs"; then + eval cmds=\"\$concat_cmds\" + else + eval cmds=\"\$concat_cmds~\$old_archive_cmds\" + fi + fi + fi + func_execute_cmds "$cmds" 'exit $?' + done + + test -n "$generated" && \ + func_show_eval "${RM}r$generated" + + # Now create the libtool archive. + case $output in + *.la) + old_library= + test yes = "$build_old_libs" && old_library=$libname.$libext + func_verbose "creating $output" + + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + # Quote the link command for shipping. + relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + if test yes = "$hardcode_automatic"; then + relink_command= + fi + + # Only create the output if not a dry run. + $opt_dry_run || { + for installed in no yes; do + if test yes = "$installed"; then + if test -z "$install_libdir"; then + break + fi + output=$output_objdir/${outputname}i + # Replace all uninstalled libtool libraries with the installed ones + newdependency_libs= + for deplib in $dependency_libs; do + case $deplib in + *.la) + func_basename "$deplib" + name=$func_basename_result + func_resolve_sysroot "$deplib" + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + test -z "$libdir" && \ + func_fatal_error "'$deplib' is not a valid libtool archive" + func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" + ;; + -L*) + func_stripname -L '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -L$func_replace_sysroot_result" + ;; + -R*) + func_stripname -R '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -R$func_replace_sysroot_result" + ;; + *) func_append newdependency_libs " $deplib" ;; + esac + done + dependency_libs=$newdependency_libs + newdlfiles= + + for lib in $dlfiles; do + case $lib in + *.la) + func_basename "$lib" + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "'$lib' is not a valid libtool archive" + func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" + ;; + *) func_append newdlfiles " $lib" ;; + esac + done + dlfiles=$newdlfiles + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + *.la) + # Only pass preopened files to the pseudo-archive (for + # eventual linking with the app. that links it) if we + # didn't already link the preopened objects directly into + # the library: + func_basename "$lib" + name=$func_basename_result + eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "'$lib' is not a valid libtool archive" + func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" + ;; + esac + done + dlprefiles=$newdlprefiles + else + newdlfiles= + for lib in $dlfiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlfiles " $abs" + done + dlfiles=$newdlfiles + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlprefiles " $abs" + done + dlprefiles=$newdlprefiles + fi + $RM $output + # place dlname in correct position for cygwin + # In fact, it would be nice if we could use this code for all target + # systems that can't hard-code library paths into their executables + # and that have no shared library path variable independent of PATH, + # but it turns out we can't easily determine that from inspecting + # libtool variables, so we have to hard-code the OSs to which it + # applies here; at the moment, that means platforms that use the PE + # object format with DLL files. See the long comment at the top of + # tests/bindir.at for full details. + tdlname=$dlname + case $host,$output,$installed,$module,$dlname in + *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) + # If a -bindir argument was supplied, place the dll there. + if test -n "$bindir"; then + func_relative_path "$install_libdir" "$bindir" + tdlname=$func_relative_path_result/$dlname + else + # Otherwise fall back on heuristic. + tdlname=../bin/$dlname + fi + ;; + esac + $ECHO > $output "\ +# $outputname - a libtool library file +# Generated by $PROGRAM (GNU $PACKAGE) $VERSION +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='$tdlname' + +# Names of this library. +library_names='$library_names' + +# The name of the static archive. +old_library='$old_library' + +# Linker flags that cannot go in dependency_libs. +inherited_linker_flags='$new_inherited_linker_flags' + +# Libraries that this one depends upon. +dependency_libs='$dependency_libs' + +# Names of additional weak libraries provided by this library +weak_library_names='$weak_libs' + +# Version information for $libname. +current=$current +age=$age +revision=$revision + +# Is this an already installed library? +installed=$installed + +# Should we warn about portability when linking against -modules? +shouldnotlink=$module + +# Files to dlopen/dlpreopen +dlopen='$dlfiles' +dlpreopen='$dlprefiles' + +# Directory that this library needs to be installed in: +libdir='$install_libdir'" + if test no,yes = "$installed,$need_relink"; then + $ECHO >> $output "\ +relink_command=\"$relink_command\"" + fi + done + } + + # Do a symbolic link so that the libtool archive can be found in + # LD_LIBRARY_PATH before the program is installed. + func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' + ;; + esac + exit $EXIT_SUCCESS +} + +if test link = "$opt_mode" || test relink = "$opt_mode"; then + func_mode_link ${1+"$@"} +fi + + +# func_mode_uninstall arg... +func_mode_uninstall () +{ + $debug_cmd + + RM=$nonopt + files= + rmforce=false + exit_status=0 + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic=$magic + + for arg + do + case $arg in + -f) func_append RM " $arg"; rmforce=: ;; + -*) func_append RM " $arg" ;; + *) func_append files " $arg" ;; + esac + done + + test -z "$RM" && \ + func_fatal_help "you must specify an RM program" + + rmdirs= + + for file in $files; do + func_dirname "$file" "" "." + dir=$func_dirname_result + if test . = "$dir"; then + odir=$objdir + else + odir=$dir/$objdir + fi + func_basename "$file" + name=$func_basename_result + test uninstall = "$opt_mode" && odir=$dir + + # Remember odir for removal later, being careful to avoid duplicates + if test clean = "$opt_mode"; then + case " $rmdirs " in + *" $odir "*) ;; + *) func_append rmdirs " $odir" ;; + esac + fi + + # Don't error if the file doesn't exist and rm -f was used. + if { test -L "$file"; } >/dev/null 2>&1 || + { test -h "$file"; } >/dev/null 2>&1 || + test -f "$file"; then + : + elif test -d "$file"; then + exit_status=1 + continue + elif $rmforce; then + continue + fi + + rmfiles=$file + + case $name in + *.la) + # Possibly a libtool archive, so verify it. + if func_lalib_p "$file"; then + func_source $dir/$name + + # Delete the libtool libraries and symlinks. + for n in $library_names; do + func_append rmfiles " $odir/$n" + done + test -n "$old_library" && func_append rmfiles " $odir/$old_library" + + case $opt_mode in + clean) + case " $library_names " in + *" $dlname "*) ;; + *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; + esac + test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" + ;; + uninstall) + if test -n "$library_names"; then + # Do each command in the postuninstall commands. + func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' + fi + + if test -n "$old_library"; then + # Do each command in the old_postuninstall commands. + func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' + fi + # FIXME: should reinstall the best remaining shared library. + ;; + esac + fi + ;; + + *.lo) + # Possibly a libtool object, so verify it. + if func_lalib_p "$file"; then + + # Read the .lo file + func_source $dir/$name + + # Add PIC object to the list of files to remove. + if test -n "$pic_object" && test none != "$pic_object"; then + func_append rmfiles " $dir/$pic_object" + fi + + # Add non-PIC object to the list of files to remove. + if test -n "$non_pic_object" && test none != "$non_pic_object"; then + func_append rmfiles " $dir/$non_pic_object" + fi + fi + ;; + + *) + if test clean = "$opt_mode"; then + noexename=$name + case $file in + *.exe) + func_stripname '' '.exe' "$file" + file=$func_stripname_result + func_stripname '' '.exe' "$name" + noexename=$func_stripname_result + # $file with .exe has already been added to rmfiles, + # add $file without .exe + func_append rmfiles " $file" + ;; + esac + # Do a test to see if this is a libtool program. + if func_ltwrapper_p "$file"; then + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + relink_command= + func_source $func_ltwrapper_scriptname_result + func_append rmfiles " $func_ltwrapper_scriptname_result" + else + relink_command= + func_source $dir/$noexename + fi + + # note $name still contains .exe if it was in $file originally + # as does the version of $file that was added into $rmfiles + func_append rmfiles " $odir/$name $odir/${name}S.$objext" + if test yes = "$fast_install" && test -n "$relink_command"; then + func_append rmfiles " $odir/lt-$name" + fi + if test "X$noexename" != "X$name"; then + func_append rmfiles " $odir/lt-$noexename.c" + fi + fi + fi + ;; + esac + func_show_eval "$RM $rmfiles" 'exit_status=1' + done + + # Try to remove the $objdir's in the directories where we deleted files + for dir in $rmdirs; do + if test -d "$dir"; then + func_show_eval "rmdir $dir >/dev/null 2>&1" + fi + done + + exit $exit_status +} + +if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then + func_mode_uninstall ${1+"$@"} +fi + +test -z "$opt_mode" && { + help=$generic_help + func_fatal_help "you must specify a MODE" +} + +test -z "$exec_cmd" && \ + func_fatal_help "invalid operation mode '$opt_mode'" + +if test -n "$exec_cmd"; then + eval exec "$exec_cmd" + exit $EXIT_FAILURE +fi + +exit $exit_status + + +# The TAGs below are defined such that we never get into a situation +# where we disable both kinds of libraries. Given conflicting +# choices, we go for a static library, that is the most portable, +# since we can't tell whether shared libraries were disabled because +# the user asked for that or because the platform doesn't support +# them. This is particularly important on AIX, because we don't +# support having both static and shared libraries enabled at the same +# time on that platform, so we default to a shared-only configuration. +# If a disable-shared tag is given, we'll fallback to a static-only +# configuration. But we'll never go from static-only to shared-only. + +# ### BEGIN LIBTOOL TAG CONFIG: disable-shared +build_libtool_libs=no +build_old_libs=yes +# ### END LIBTOOL TAG CONFIG: disable-shared + +# ### BEGIN LIBTOOL TAG CONFIG: disable-static +build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` +# ### END LIBTOOL TAG CONFIG: disable-static + +# Local Variables: +# mode:shell-script +# sh-indentation:2 +# End: diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/crash-me b/wlx/wayland_qt_base/build/enca-1.19/m4/crash-me new file mode 100644 index 0000000..9051a3b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/crash-me @@ -0,0 +1,45 @@ +\indexentry{pohyb!hmotn\'eho bodu}{17} +\indexentry{ud\'alost}{17} +\indexentry{hodiny!ide\'aln\IeC {\'\i }}{17} +\indexentry{interval}{17} +\indexentry{sou\v casnost!absolutn\IeC {\'\i }}{18} +\indexentry{prostor!t\v r\IeC {\'\i }rozm\v ern\'y}{18} +\indexentry{geometrie!euklidovsk\'a}{18} +\indexentry{soustava!vzta\v zn\'a}{18} +\indexentry{syst\'em!vzta\v zn\'y}{18} +\indexentry{bod!hmotn\'y}{18} +\indexentry{vzd\'alenost!vzta\v zn\'ych bod\r u}{18} +\indexentry{soustava!tuh\'a}{18} +\indexentry{soustava!kart\'ezsk\'a sou\v radnicov\'a}{18} +\indexentry{vektor!ortonorm\'aln\IeC {\'\i }}{18} +\indexentry{osa!sou\v radnic}{18} +\indexentry{vektor!polohov\'y}{18} +\indexentry{sou\v radnice}{18} +\indexentry{d\'elka trajektorie}{18} +\indexentry{dr\'aha}{18} +\indexentry{rychlost}{19} +\indexentry{vektor!rychlosti}{19} +\indexentry{zrychlen\IeC {\'\i }}{19} +\indexentry{vektor!zrychlen\IeC {\'\i }}{19} +\indexentry{rychlost!kart\'ezsk\'e slo\v zky}{19} +\indexentry{zrychlen\IeC {\'\i }}{19} +\indexentry{pohyb!fyzik\'aln\IeC {\'\i } studium}{19} +\indexentry{vektor!jednotkov\'y}{19} +\indexentry{vektor!te\v cn\'y}{19} +\indexentry{formule!Frenetova}{19} +\indexentry{polom\v er k\v rivosti trajektorie}{19} +\indexentry{zrychlen\IeC {\'\i }!norm\'alov\'e}{19} +\indexentry{symetrie}{20} +\indexentry{sou\v radnice!kart\'ezsk\'a}{20} +\indexentry{transformace!inverzn\IeC {\'\i }}{20} +\indexentry{tenzor!metrick\'y}{20} +\indexentry{sou\v radnice!k\v rivo\v car\'a}{20} +\indexentry{\v c\'ara!sou\v radnicov\'a}{20} +\indexentry{vektor!te\v cn\'y}{20} +\indexentry{b\'aze!kovariantn\IeC {\'\i }}{20} +\indexentry{plocha!sou\v radnicov\'a}{20} +\indexentry{b\'aze!kontravariantn\IeC {\'\i }}{21} +\indexentry{matice!jednotkov\'a}{21} +\indexentry{tenzor!metrick\'y}{21} +\indexentry{sou\v cin!skal\'arn\IeC {\'\i }}{21} +\indexentry{matice!inverzn\IeC {\'\i }}{22} diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/gcov.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/gcov.m4 new file mode 100644 index 0000000..d190af6 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/gcov.m4 @@ -0,0 +1,26 @@ +# AM_GCOV + +AC_DEFUN([AM_GCOV], +[ + +AC_ARG_WITH( gcov, + [ --with-gcov compile for coverage tests using gcov (default=no)], + [ +if test "$GCC" = "yes" +then + using_gcov=$with_gcov +fi +] +) + +AC_PATH_PROG([GCOV], [gcov]) +if test "$GCOV" -a "$using_gcov" = "yes" +then + GCOV_FLAGS="-fprofile-arcs -ftest-coverage" + GCOV_CPPFLAGS=${GCOV_FLAGS} + GCOV_LDFLAGS=${GCOV_FLAGS} + AC_SUBST(GCOV_FLAGS) + AC_SUBST(GCOV_CPPFLAGS) + AC_SUBST(GCOV_LDFLAGS) +fi +]) diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/gtk-doc.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/gtk-doc.m4 new file mode 100644 index 0000000..5dca072 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/gtk-doc.m4 @@ -0,0 +1,50 @@ +## Gtk-doc tests. This file is in public domain. + +## Check for gtk-doc. +## Defines: +## HTML_DIR to direcotry to install HTML docs into +## GTKDOC to whether gtkdoc-mkdb is found +## ENABLE_GTK_DOC to yes when gtk-doc should be enabled +AC_DEFUN([gtk_CHECK_GTK_DOC], +[dnl + +AC_ARG_WITH(html-dir, [ --with-html-dir=PATH path to installed docs @<:@DATADIR/gtk-doc/html@:>@]) + +if test "x$with_html_dir" = "x" ; then + HTML_DIR=$datadir/gtk-doc/html +else + HTML_DIR=$with_html_dir +fi + +AC_SUBST(HTML_DIR) + +AC_CHECK_PROG(GTKDOC, gtkdoc-mkdb, true, false) + +gtk_doc_min_version=1.0 +if $GTKDOC ; then + gtk_doc_version=`gtkdoc-mkdb --version` + AC_MSG_CHECKING([gtk-doc version ($gtk_doc_version) >= $gtk_doc_min_version]) + if perl <= "$gtk_doc_min_version") ? 0 : 1); +EOF + AC_MSG_RESULT(yes) + else + AC_MSG_RESULT(no) + GTKDOC=false + fi +fi + +dnl Let people disable the gtk-doc stuff. +AC_ARG_ENABLE(gtk-doc, [ --enable-gtk-doc use gtk-doc to build documentation @<:@auto@:>@], enable_gtk_doc="$enableval", enable_gtk_doc=auto) + +if test x$enable_gtk_doc = xauto ; then + if test x$GTKDOC = xtrue ; then + enable_gtk_doc=yes + else + enable_gtk_doc=no + fi +fi + +AM_CONDITIONAL([ENABLE_GTK_DOC], test x$enable_gtk_doc = xyes) +]) diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/libiconv.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/libiconv.m4 new file mode 100644 index 0000000..fc8c6f8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/libiconv.m4 @@ -0,0 +1,66 @@ +## Several iconv tests. This file is in public domain. +## N.B.: Following test relies on files iconvcap.c and has to compile and +## run it. +## Defines: +## HAVE_GOOD_ICONV when have iconv_open(), iconv.h and it's usable +## ICONV_IS_TRANSITIVE when it seems no triangulation is needed. +## CONVERTER_LIBS (adds library when needed) +## Creates file iconvenc.h (to be included only if defined(HAVE_ICONV))---it +## would be cleaner to put all the definitions to config.h, but then +## (1) we would have to check for every charset separately +## (2) config.h would get polluted by dozens of charset aliases +## Note we need tools/iconvenc.null +AC_DEFUN([ye_CHECK_FUNC_ICONV_USABLE], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_HEADER_STDC])dnl +AC_REQUIRE([AC_C_CONST])dnl +dnl + +dnl Use standard iconv test +AM_ICONV +CONVERTER_LIBS="$CONVERTER_LIBS $LIBICONV" + +dnl Compile iconvcap.c and run it to determine what encodings iconv actually +dnl knows an under what names. This is not needed with GNU iconv. HAVE_ICONV +dnl is finally defined _only_ if iconv prove at least some minimal reasonable +dnl capabilities. +libiconv_ok="$am_cv_func_iconv" +if test "$libiconv_ok" = yes; then + AC_MSG_CHECKING([whether iconv implementation is usable]) + if $CC -o iconvcap$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS $srcdir/iconvcap.c $LIBS $CONVERTER_LIBS 1>&5 2>&5 && test -s ./iconvcap$ac_exeext 2>&5; then + if ./iconvcap 2>&5 >iconvenc.h; then + libiconv_ok=yes + else + libiconv_ok=no + fi + else + libiconv_ok=no + fi + AC_MSG_RESULT($libiconv_ok) + if test "$libiconv_ok" = yes; then + AC_DEFINE(HAVE_GOOD_ICONV,1,[Define if you have the UNIX98 iconv functions.]) + AC_CACHE_CHECK([whether iconv is transitive], + yeti_cv_lib_c_iconv_transitive, + if ./iconvcap iconvenc.h 2>&5; then + yeti_cv_lib_c_iconv_transitive=yes + else + yeti_cv_lib_c_iconv_transitive=no + fi) + if test "$yeti_cv_lib_c_iconv_transitive" = yes; then + AC_DEFINE(ICONV_IS_TRANSITIVE,1,[Define if iconv is transitive.]) + else + AC_MSG_WARN([A non-transitive but otherwise usable iconv implementation + was found. This beast was believed to be mythical. + Please send your system specs to the maintainer.]) + fi + else + echo >iconvenc.h + fi +else + libiconv_ok=no +fi + +if test "$libiconv_ok" != "yes"; then + cat $srcdir/tools/iconvenc.null >iconvenc.h +fi]) + diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/libm.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/libm.m4 new file mode 100644 index 0000000..e2dafab --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/libm.m4 @@ -0,0 +1,27 @@ +## Check for math library. Taken from libtool.m4. +## Defines: +## LIBM +## LIBS (adds library when needed) +AC_DEFUN([ye_CHECK_LIBM], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl + +case "$target" in +NONE) yeti_libm_target="$host" ;; +*) yeti_libm_target="$target" ;; +esac + +LIBM= +case "$yeti_libm_target" in +*-*-beos* | *-*-cygwin*) + # These system don't have libm + ;; +*-ncr-sysv4.3*) + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(m, sqrt, LIBM="$LIBM -lm") + ;; +*) + AC_CHECK_LIB(m, sqrt, LIBM="-lm") + ;; +esac +AC_SUBST(LIBM) +LIBS="$LIBS $LIBM"]) diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/librecode.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/librecode.m4 new file mode 100644 index 0000000..f015a7a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/librecode.m4 @@ -0,0 +1,67 @@ +## GNU recode library test. This file is in public domain. +## Defines: +## HAVE_LIBRECODE when have recode_new_outer() and recode.h +## LIBS (adds library when needed) +AC_DEFUN([ye_CHECK_LIB_RECODE], +[AC_REQUIRE([AC_PROG_CC])dnl +dnl + +dnl Test for librecode. +dnl Braindead librecode depends on symbol program_name defined in main program +dnl this makes the test braindead too. In header file test, we have to use +dnl a whole load of fakes, since it depends e.g. on bool and FILE defined. +AC_ARG_WITH(librecode, + [ --with-librecode@<:@=DIR@:>@ look for librecode in DIR/lib and DIR/include @<:@auto@:>@], + [case "$withval" in + yes|auto) WANT_LIBRECODE=1 ;; + no) WANT_LIBRECODE=0 ;; + *) WANT_LIBRECODE=1 ; yeti_librecode_CPPFLAGS="-I$withval/include" ; yeti_librecode_LDFLAGS="-L$withval/lib" ;; + esac], + [WANT_LIBRECODE=1]) + +if test "$WANT_LIBRECODE" = 1; then + yeti_save_LIBS="$LIBS" + yeti_save_CPPFLAGS="$CPPFLAGS" + yeti_save_LDFLAGS="$LDFLAGS" + LIBS="$LIBS -lrecode" + CPPFLAGS="$CPPFLAGS $yeti_librecode_CPPFLAGS" + LDFLAGS="$LDFLAGS $yeti_librecode_LDFLAGS" + AC_CACHE_CHECK([for recode_new_outer in librecode], + yeti_cv_lib_recode_new_outer, + AC_TRY_LINK([char* program_name = "";], + [recode_new_outer(0);], + yeti_cv_lib_recode_new_outer=yes, + yeti_cv_lib_recode_new_outer=no)) + librecode_ok="$yeti_cv_lib_recode_new_outer"; + if test "$librecode_ok" = yes; then + AC_CHECK_HEADER(recode.h, + librecode_ok=yes, + librecode_ok=no, + [#define bool int + #define size_t int + #define FILE void]) + fi + if test "$librecode_ok" = yes; then + AC_CHECK_HEADER(recodext.h, + librecode_ok=yes, + librecode_ok=no, + [#define bool int + #define size_t int + #define FILE void]) + fi + if test "$librecode_ok" = yes; then + AC_DEFINE(HAVE_LIBRECODE,1,[Define if you have the recode library (-lrecode).]) + CONVERTER_LIBS="$CONVERTER_LIBS -lrecode" + fi + LIBS="$yeti_save_LIBS" +else + librecode_ok=no +fi + +if test "$librecode_ok" != "yes"; then + if test "$WANT_LIBRECODE" = 1; then + CPPFLAGS="$yeti_save_CPPFLAGS" + LDFLAGS="$yeti_save_LDFLAGS" + fi +fi]) + diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/libtool.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/libtool.m4 new file mode 100644 index 0000000..ee80844 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/libtool.m4 @@ -0,0 +1,8387 @@ +# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- +# +# Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +m4_define([_LT_COPYING], [dnl +# Copyright (C) 2014 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +]) + +# serial 58 LT_INIT + + +# LT_PREREQ(VERSION) +# ------------------ +# Complain and exit if this libtool version is less that VERSION. +m4_defun([LT_PREREQ], +[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, + [m4_default([$3], + [m4_fatal([Libtool version $1 or higher is required], + 63)])], + [$2])]) + + +# _LT_CHECK_BUILDDIR +# ------------------ +# Complain if the absolute build directory name contains unusual characters +m4_defun([_LT_CHECK_BUILDDIR], +[case `pwd` in + *\ * | *\ *) + AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; +esac +]) + + +# LT_INIT([OPTIONS]) +# ------------------ +AC_DEFUN([LT_INIT], +[AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK +AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl +AC_BEFORE([$0], [LT_LANG])dnl +AC_BEFORE([$0], [LT_OUTPUT])dnl +AC_BEFORE([$0], [LTDL_INIT])dnl +m4_require([_LT_CHECK_BUILDDIR])dnl + +dnl Autoconf doesn't catch unexpanded LT_ macros by default: +m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl +m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl +dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 +dnl unless we require an AC_DEFUNed macro: +AC_REQUIRE([LTOPTIONS_VERSION])dnl +AC_REQUIRE([LTSUGAR_VERSION])dnl +AC_REQUIRE([LTVERSION_VERSION])dnl +AC_REQUIRE([LTOBSOLETE_VERSION])dnl +m4_require([_LT_PROG_LTMAIN])dnl + +_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) + +dnl Parse OPTIONS +_LT_SET_OPTIONS([$0], [$1]) + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS=$ltmain + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +AC_SUBST(LIBTOOL)dnl + +_LT_SETUP + +# Only expand once: +m4_define([LT_INIT]) +])# LT_INIT + +# Old names: +AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) +AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PROG_LIBTOOL], []) +dnl AC_DEFUN([AM_PROG_LIBTOOL], []) + + +# _LT_PREPARE_CC_BASENAME +# ----------------------- +m4_defun([_LT_PREPARE_CC_BASENAME], [ +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in @S|@*""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} +])# _LT_PREPARE_CC_BASENAME + + +# _LT_CC_BASENAME(CC) +# ------------------- +# It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, +# but that macro is also expanded into generated libtool script, which +# arranges for $SED and $ECHO to be set by different means. +m4_defun([_LT_CC_BASENAME], +[m4_require([_LT_PREPARE_CC_BASENAME])dnl +AC_REQUIRE([_LT_DECL_SED])dnl +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl +func_cc_basename $1 +cc_basename=$func_cc_basename_result +]) + + +# _LT_FILEUTILS_DEFAULTS +# ---------------------- +# It is okay to use these file commands and assume they have been set +# sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. +m4_defun([_LT_FILEUTILS_DEFAULTS], +[: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} +])# _LT_FILEUTILS_DEFAULTS + + +# _LT_SETUP +# --------- +m4_defun([_LT_SETUP], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl + +_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl +dnl +_LT_DECL([], [host_alias], [0], [The host system])dnl +_LT_DECL([], [host], [0])dnl +_LT_DECL([], [host_os], [0])dnl +dnl +_LT_DECL([], [build_alias], [0], [The build system])dnl +_LT_DECL([], [build], [0])dnl +_LT_DECL([], [build_os], [0])dnl +dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +dnl +AC_REQUIRE([AC_PROG_LN_S])dnl +test -z "$LN_S" && LN_S="ln -s" +_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl +dnl +AC_REQUIRE([LT_CMD_MAX_LEN])dnl +_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl +_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl +dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl +m4_require([_LT_CMD_RELOAD])dnl +m4_require([_LT_CHECK_MAGIC_METHOD])dnl +m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl +m4_require([_LT_CMD_OLD_ARCHIVE])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_WITH_SYSROOT])dnl +m4_require([_LT_CMD_TRUNCATE])dnl + +_LT_CONFIG_LIBTOOL_INIT([ +# See if we are running on zsh, and set the options that allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST +fi +]) +if test -n "${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST +fi + +_LT_CHECK_OBJDIR + +m4_require([_LT_TAG_COMPILER])dnl + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test set != "${COLLECT_NAMES+set}"; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a '.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld=$lt_cv_prog_gnu_ld + +old_CC=$CC +old_CFLAGS=$CFLAGS + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +_LT_CC_BASENAME([$compiler]) + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + _LT_PATH_MAGIC + fi + ;; +esac + +# Use C for the default configuration in the libtool script +LT_SUPPORTED_TAG([CC]) +_LT_LANG_C_CONFIG +_LT_LANG_DEFAULT_CONFIG +_LT_CONFIG_COMMANDS +])# _LT_SETUP + + +# _LT_PREPARE_SED_QUOTE_VARS +# -------------------------- +# Define a few sed substitution that help us do robust quoting. +m4_defun([_LT_PREPARE_SED_QUOTE_VARS], +[# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\([["`\\]]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' +]) + +# _LT_PROG_LTMAIN +# --------------- +# Note that this code is called both from 'configure', and 'config.status' +# now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, +# 'config.status' has no value for ac_aux_dir unless we are using Automake, +# so we pass a copy along to make sure it has a sensible value anyway. +m4_defun([_LT_PROG_LTMAIN], +[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl +_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) +ltmain=$ac_aux_dir/ltmain.sh +])# _LT_PROG_LTMAIN + + +## ------------------------------------- ## +## Accumulate code for creating libtool. ## +## ------------------------------------- ## + +# So that we can recreate a full libtool script including additional +# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS +# in macros and then make a single call at the end using the 'libtool' +# label. + + +# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) +# ---------------------------------------- +# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL_INIT], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_INIT], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_INIT]) + + +# _LT_CONFIG_LIBTOOL([COMMANDS]) +# ------------------------------ +# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) + + +# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) +# ----------------------------------------------------- +m4_defun([_LT_CONFIG_SAVE_COMMANDS], +[_LT_CONFIG_LIBTOOL([$1]) +_LT_CONFIG_LIBTOOL_INIT([$2]) +]) + + +# _LT_FORMAT_COMMENT([COMMENT]) +# ----------------------------- +# Add leading comment marks to the start of each line, and a trailing +# full-stop to the whole comment if one is not present already. +m4_define([_LT_FORMAT_COMMENT], +[m4_ifval([$1], [ +m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], + [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) +)]) + + + +## ------------------------ ## +## FIXME: Eliminate VARNAME ## +## ------------------------ ## + + +# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) +# ------------------------------------------------------------------- +# CONFIGNAME is the name given to the value in the libtool script. +# VARNAME is the (base) name used in the configure script. +# VALUE may be 0, 1 or 2 for a computed quote escaped value based on +# VARNAME. Any other value will be used directly. +m4_define([_LT_DECL], +[lt_if_append_uniq([lt_decl_varnames], [$2], [, ], + [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], + [m4_ifval([$1], [$1], [$2])]) + lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) + m4_ifval([$4], + [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) + lt_dict_add_subkey([lt_decl_dict], [$2], + [tagged?], [m4_ifval([$5], [yes], [no])])]) +]) + + +# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) +# -------------------------------------------------------- +m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) + + +# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_tag_varnames], +[_lt_decl_filter([tagged?], [yes], $@)]) + + +# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) +# --------------------------------------------------------- +m4_define([_lt_decl_filter], +[m4_case([$#], + [0], [m4_fatal([$0: too few arguments: $#])], + [1], [m4_fatal([$0: too few arguments: $#: $1])], + [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], + [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], + [lt_dict_filter([lt_decl_dict], $@)])[]dnl +]) + + +# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) +# -------------------------------------------------- +m4_define([lt_decl_quote_varnames], +[_lt_decl_filter([value], [1], $@)]) + + +# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_dquote_varnames], +[_lt_decl_filter([value], [2], $@)]) + + +# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_varnames_tagged], +[m4_assert([$# <= 2])dnl +_$0(m4_quote(m4_default([$1], [[, ]])), + m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), + m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) +m4_define([_lt_decl_varnames_tagged], +[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) + + +# lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_all_varnames], +[_$0(m4_quote(m4_default([$1], [[, ]])), + m4_if([$2], [], + m4_quote(lt_decl_varnames), + m4_quote(m4_shift($@))))[]dnl +]) +m4_define([_lt_decl_all_varnames], +[lt_join($@, lt_decl_varnames_tagged([$1], + lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl +]) + + +# _LT_CONFIG_STATUS_DECLARE([VARNAME]) +# ------------------------------------ +# Quote a variable value, and forward it to 'config.status' so that its +# declaration there will have the same value as in 'configure'. VARNAME +# must have a single quote delimited value for this to work. +m4_define([_LT_CONFIG_STATUS_DECLARE], +[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) + + +# _LT_CONFIG_STATUS_DECLARATIONS +# ------------------------------ +# We delimit libtool config variables with single quotes, so when +# we write them to config.status, we have to be sure to quote all +# embedded single quotes properly. In configure, this macro expands +# each variable declared with _LT_DECL (and _LT_TAGDECL) into: +# +# ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' +m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], +[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), + [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAGS +# ---------------- +# Output comment and list of tags supported by the script +m4_defun([_LT_LIBTOOL_TAGS], +[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl +available_tags='_LT_TAGS'dnl +]) + + +# _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) +# ----------------------------------- +# Extract the dictionary values for VARNAME (optionally with TAG) and +# expand to a commented shell variable setting: +# +# # Some comment about what VAR is for. +# visible_name=$lt_internal_name +m4_define([_LT_LIBTOOL_DECLARE], +[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], + [description])))[]dnl +m4_pushdef([_libtool_name], + m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl +m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), + [0], [_libtool_name=[$]$1], + [1], [_libtool_name=$lt_[]$1], + [2], [_libtool_name=$lt_[]$1], + [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl +m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl +]) + + +# _LT_LIBTOOL_CONFIG_VARS +# ----------------------- +# Produce commented declarations of non-tagged libtool config variables +# suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' +# script. Tagged libtool config variables (even for the LIBTOOL CONFIG +# section) are produced by _LT_LIBTOOL_TAG_VARS. +m4_defun([_LT_LIBTOOL_CONFIG_VARS], +[m4_foreach([_lt_var], + m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAG_VARS(TAG) +# ------------------------- +m4_define([_LT_LIBTOOL_TAG_VARS], +[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) + + +# _LT_TAGVAR(VARNAME, [TAGNAME]) +# ------------------------------ +m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) + + +# _LT_CONFIG_COMMANDS +# ------------------- +# Send accumulated output to $CONFIG_STATUS. Thanks to the lists of +# variables for single and double quote escaping we saved from calls +# to _LT_DECL, we can put quote escaped variables declarations +# into 'config.status', and then the shell code to quote escape them in +# for loops in 'config.status'. Finally, any additional code accumulated +# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. +m4_defun([_LT_CONFIG_COMMANDS], +[AC_PROVIDE_IFELSE([LT_OUTPUT], + dnl If the libtool generation code has been placed in $CONFIG_LT, + dnl instead of duplicating it all over again into config.status, + dnl then we will have config.status run $CONFIG_LT later, so it + dnl needs to know what name is stored there: + [AC_CONFIG_COMMANDS([libtool], + [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], + dnl If the libtool generation code is destined for config.status, + dnl expand the accumulated commands and init code now: + [AC_CONFIG_COMMANDS([libtool], + [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) +])#_LT_CONFIG_COMMANDS + + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], +[ + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +_LT_CONFIG_STATUS_DECLARATIONS +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$[]1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_quote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_dquote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +_LT_OUTPUT_LIBTOOL_INIT +]) + +# _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) +# ------------------------------------ +# Generate a child script FILE with all initialization necessary to +# reuse the environment learned by the parent script, and make the +# file executable. If COMMENT is supplied, it is inserted after the +# '#!' sequence but before initialization text begins. After this +# macro, additional text can be appended to FILE to form the body of +# the child script. The macro ends with non-zero status if the +# file could not be fully written (such as if the disk is full). +m4_ifdef([AS_INIT_GENERATED], +[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], +[m4_defun([_LT_GENERATED_FILE_INIT], +[m4_require([AS_PREPARE])]dnl +[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl +[lt_write_fail=0 +cat >$1 <<_ASEOF || lt_write_fail=1 +#! $SHELL +# Generated by $as_me. +$2 +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$1 <<\_ASEOF || lt_write_fail=1 +AS_SHELL_SANITIZE +_AS_PREPARE +exec AS_MESSAGE_FD>&1 +_ASEOF +test 0 = "$lt_write_fail" && chmod +x $1[]dnl +m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT + +# LT_OUTPUT +# --------- +# This macro allows early generation of the libtool script (before +# AC_OUTPUT is called), incase it is used in configure for compilation +# tests. +AC_DEFUN([LT_OUTPUT], +[: ${CONFIG_LT=./config.lt} +AC_MSG_NOTICE([creating $CONFIG_LT]) +_LT_GENERATED_FILE_INIT(["$CONFIG_LT"], +[# Run this file to recreate a libtool stub with the current configuration.]) + +cat >>"$CONFIG_LT" <<\_LTEOF +lt_cl_silent=false +exec AS_MESSAGE_LOG_FD>>config.log +{ + echo + AS_BOX([Running $as_me.]) +} >&AS_MESSAGE_LOG_FD + +lt_cl_help="\ +'$as_me' creates a local libtool stub from the current configuration, +for use in further configure time tests before the real libtool is +generated. + +Usage: $[0] [[OPTIONS]] + + -h, --help print this help, then exit + -V, --version print version number, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + +Report bugs to ." + +lt_cl_version="\ +m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl +m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) +configured by $[0], generated by m4_PACKAGE_STRING. + +Copyright (C) 2011 Free Software Foundation, Inc. +This config.lt script is free software; the Free Software Foundation +gives unlimited permision to copy, distribute and modify it." + +while test 0 != $[#] +do + case $[1] in + --version | --v* | -V ) + echo "$lt_cl_version"; exit 0 ;; + --help | --h* | -h ) + echo "$lt_cl_help"; exit 0 ;; + --debug | --d* | -d ) + debug=: ;; + --quiet | --q* | --silent | --s* | -q ) + lt_cl_silent=: ;; + + -*) AC_MSG_ERROR([unrecognized option: $[1] +Try '$[0] --help' for more information.]) ;; + + *) AC_MSG_ERROR([unrecognized argument: $[1] +Try '$[0] --help' for more information.]) ;; + esac + shift +done + +if $lt_cl_silent; then + exec AS_MESSAGE_FD>/dev/null +fi +_LTEOF + +cat >>"$CONFIG_LT" <<_LTEOF +_LT_OUTPUT_LIBTOOL_COMMANDS_INIT +_LTEOF + +cat >>"$CONFIG_LT" <<\_LTEOF +AC_MSG_NOTICE([creating $ofile]) +_LT_OUTPUT_LIBTOOL_COMMANDS +AS_EXIT(0) +_LTEOF +chmod +x "$CONFIG_LT" + +# configure is writing to config.log, but config.lt does its own redirection, +# appending to config.log, which fails on DOS, as config.log is still kept +# open by configure. Here we exec the FD to /dev/null, effectively closing +# config.log, so it can be properly (re)opened and appended to by config.lt. +lt_cl_success=: +test yes = "$silent" && + lt_config_lt_args="$lt_config_lt_args --quiet" +exec AS_MESSAGE_LOG_FD>/dev/null +$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false +exec AS_MESSAGE_LOG_FD>>config.log +$lt_cl_success || AS_EXIT(1) +])# LT_OUTPUT + + +# _LT_CONFIG(TAG) +# --------------- +# If TAG is the built-in tag, create an initial libtool script with a +# default configuration from the untagged config vars. Otherwise add code +# to config.status for appending the configuration named by TAG from the +# matching tagged config vars. +m4_defun([_LT_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_CONFIG_SAVE_COMMANDS([ + m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl + m4_if(_LT_TAG, [C], [ + # See if we are running on zsh, and set the options that allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST + fi + + cfgfile=${ofile}T + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL +# Generated automatically by $as_me ($PACKAGE) $VERSION +# NOTE: Changes made to this file will be lost: look at ltmain.sh. + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + +_LT_COPYING +_LT_LIBTOOL_TAGS + +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} + +# ### BEGIN LIBTOOL CONFIG +_LT_LIBTOOL_CONFIG_VARS +_LT_LIBTOOL_TAG_VARS +# ### END LIBTOOL CONFIG + +_LT_EOF + + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +_LT_PREPARE_MUNGE_PATH_LIST +_LT_PREPARE_CC_BASENAME + +# ### END FUNCTIONS SHARED WITH CONFIGURE + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test set != "${COLLECT_NAMES+set}"; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + _LT_PROG_LTMAIN + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" +], +[cat <<_LT_EOF >> "$ofile" + +dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded +dnl in a comment (ie after a #). +# ### BEGIN LIBTOOL TAG CONFIG: $1 +_LT_LIBTOOL_TAG_VARS(_LT_TAG) +# ### END LIBTOOL TAG CONFIG: $1 +_LT_EOF +])dnl /m4_if +], +[m4_if([$1], [], [ + PACKAGE='$PACKAGE' + VERSION='$VERSION' + RM='$RM' + ofile='$ofile'], []) +])dnl /_LT_CONFIG_SAVE_COMMANDS +])# _LT_CONFIG + + +# LT_SUPPORTED_TAG(TAG) +# --------------------- +# Trace this macro to discover what tags are supported by the libtool +# --tag option, using: +# autoconf --trace 'LT_SUPPORTED_TAG:$1' +AC_DEFUN([LT_SUPPORTED_TAG], []) + + +# C support is built-in for now +m4_define([_LT_LANG_C_enabled], []) +m4_define([_LT_TAGS], []) + + +# LT_LANG(LANG) +# ------------- +# Enable libtool support for the given language if not already enabled. +AC_DEFUN([LT_LANG], +[AC_BEFORE([$0], [LT_OUTPUT])dnl +m4_case([$1], + [C], [_LT_LANG(C)], + [C++], [_LT_LANG(CXX)], + [Go], [_LT_LANG(GO)], + [Java], [_LT_LANG(GCJ)], + [Fortran 77], [_LT_LANG(F77)], + [Fortran], [_LT_LANG(FC)], + [Windows Resource], [_LT_LANG(RC)], + [m4_ifdef([_LT_LANG_]$1[_CONFIG], + [_LT_LANG($1)], + [m4_fatal([$0: unsupported language: "$1"])])])dnl +])# LT_LANG + + +# _LT_LANG(LANGNAME) +# ------------------ +m4_defun([_LT_LANG], +[m4_ifdef([_LT_LANG_]$1[_enabled], [], + [LT_SUPPORTED_TAG([$1])dnl + m4_append([_LT_TAGS], [$1 ])dnl + m4_define([_LT_LANG_]$1[_enabled], [])dnl + _LT_LANG_$1_CONFIG($1)])dnl +])# _LT_LANG + + +m4_ifndef([AC_PROG_GO], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_GO. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ +m4_defun([AC_PROG_GO], +[AC_LANG_PUSH(Go)dnl +AC_ARG_VAR([GOC], [Go compiler command])dnl +AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl +_AC_ARG_VAR_LDFLAGS()dnl +AC_CHECK_TOOL(GOC, gccgo) +if test -z "$GOC"; then + if test -n "$ac_tool_prefix"; then + AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) + fi +fi +if test -z "$GOC"; then + AC_CHECK_PROG(GOC, gccgo, gccgo, false) +fi +])#m4_defun +])#m4_ifndef + + +# _LT_LANG_DEFAULT_CONFIG +# ----------------------- +m4_defun([_LT_LANG_DEFAULT_CONFIG], +[AC_PROVIDE_IFELSE([AC_PROG_CXX], + [LT_LANG(CXX)], + [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) + +AC_PROVIDE_IFELSE([AC_PROG_F77], + [LT_LANG(F77)], + [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) + +AC_PROVIDE_IFELSE([AC_PROG_FC], + [LT_LANG(FC)], + [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) + +dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal +dnl pulling things in needlessly. +AC_PROVIDE_IFELSE([AC_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([LT_PROG_GCJ], + [LT_LANG(GCJ)], + [m4_ifdef([AC_PROG_GCJ], + [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([A][M_PROG_GCJ], + [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([LT_PROG_GCJ], + [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) + +AC_PROVIDE_IFELSE([AC_PROG_GO], + [LT_LANG(GO)], + [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) + +AC_PROVIDE_IFELSE([LT_PROG_RC], + [LT_LANG(RC)], + [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) +])# _LT_LANG_DEFAULT_CONFIG + +# Obsolete macros: +AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) +AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) +AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) +AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) +AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_CXX], []) +dnl AC_DEFUN([AC_LIBTOOL_F77], []) +dnl AC_DEFUN([AC_LIBTOOL_FC], []) +dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) +dnl AC_DEFUN([AC_LIBTOOL_RC], []) + + +# _LT_TAG_COMPILER +# ---------------- +m4_defun([_LT_TAG_COMPILER], +[AC_REQUIRE([AC_PROG_CC])dnl + +_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl +_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl +_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl +_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC +])# _LT_TAG_COMPILER + + +# _LT_COMPILER_BOILERPLATE +# ------------------------ +# Check for compiler boilerplate output or warnings with +# the simple compiler test code. +m4_defun([_LT_COMPILER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* +])# _LT_COMPILER_BOILERPLATE + + +# _LT_LINKER_BOILERPLATE +# ---------------------- +# Check for linker boilerplate output or warnings with +# the simple link test code. +m4_defun([_LT_LINKER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* +])# _LT_LINKER_BOILERPLATE + +# _LT_REQUIRED_DARWIN_CHECKS +# ------------------------- +m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ + case $host_os in + rhapsody* | darwin*) + AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) + AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) + AC_CHECK_TOOL([LIPO], [lipo], [:]) + AC_CHECK_TOOL([OTOOL], [otool], [:]) + AC_CHECK_TOOL([OTOOL64], [otool64], [:]) + _LT_DECL([], [DSYMUTIL], [1], + [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) + _LT_DECL([], [NMEDIT], [1], + [Tool to change global to local symbols on Mac OS X]) + _LT_DECL([], [LIPO], [1], + [Tool to manipulate fat objects and archives on Mac OS X]) + _LT_DECL([], [OTOOL], [1], + [ldd/readelf like tool for Mach-O binaries on Mac OS X]) + _LT_DECL([], [OTOOL64], [1], + [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) + + AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], + [lt_cv_apple_cc_single_mod=no + if test -z "$LT_MULTI_MODULE"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test 0 = "$_lt_result"; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi]) + + AC_CACHE_CHECK([for -exported_symbols_list linker flag], + [lt_cv_ld_exported_symbols_list], + [lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [lt_cv_ld_exported_symbols_list=yes], + [lt_cv_ld_exported_symbols_list=no]) + LDFLAGS=$save_LDFLAGS + ]) + + AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], + [lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD + echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD + $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD + echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD + $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + ]) + case $host_os in + rhapsody* | darwin1.[[012]]) + _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; + 10.[[012]][[,.]]*) + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test yes = "$lt_cv_apple_cc_single_mod"; then + _lt_dar_single_mod='$single_module' + fi + if test yes = "$lt_cv_ld_exported_symbols_list"; then + _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' + fi + if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac +]) + + +# _LT_DARWIN_LINKER_FEATURES([TAG]) +# --------------------------------- +# Checks for linker and compiler features on darwin +m4_defun([_LT_DARWIN_LINKER_FEATURES], +[ + m4_require([_LT_REQUIRED_DARWIN_CHECKS]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_automatic, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + if test yes = "$lt_cv_ld_force_load"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], + [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='' + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined + case $cc_basename in + ifort*|nagfor*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test yes = "$_lt_dar_can_shared"; then + output_verbose_link_cmd=func_echo_all + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" + m4_if([$1], [CXX], +[ if test yes != "$lt_cv_apple_cc_single_mod"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" + fi +],[]) + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi +]) + +# _LT_SYS_MODULE_PATH_AIX([TAGNAME]) +# ---------------------------------- +# Links a minimal program and checks the executable +# for the system default hardcoded library path. In most cases, +# this is /usr/lib:/lib, but when the MPI compilers are used +# the location of the communication and MPI libs are included too. +# If we don't find anything, use the default library path according +# to the aix ld manual. +# Store the results from the different compilers for each TAGNAME. +# Allow to override them for all tags through lt_cv_aix_libpath. +m4_defun([_LT_SYS_MODULE_PATH_AIX], +[m4_require([_LT_DECL_SED])dnl +if test set = "${lt_cv_aix_libpath+set}"; then + aix_libpath=$lt_cv_aix_libpath +else + AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], + [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ + lt_aix_libpath_sed='[ + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }]' + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi],[]) + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib + fi + ]) + aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) +fi +])# _LT_SYS_MODULE_PATH_AIX + + +# _LT_SHELL_INIT(ARG) +# ------------------- +m4_define([_LT_SHELL_INIT], +[m4_divert_text([M4SH-INIT], [$1 +])])# _LT_SHELL_INIT + + + +# _LT_PROG_ECHO_BACKSLASH +# ----------------------- +# Find how we can fake an echo command that does not interpret backslash. +# In particular, with Autoconf 2.60 or later we add some code to the start +# of the generated configure script that will find a shell with a builtin +# printf (that we can use as an echo command). +m4_defun([_LT_PROG_ECHO_BACKSLASH], +[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +AC_MSG_CHECKING([how to print strings]) +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$[]1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +case $ECHO in + printf*) AC_MSG_RESULT([printf]) ;; + print*) AC_MSG_RESULT([print -r]) ;; + *) AC_MSG_RESULT([cat]) ;; +esac + +m4_ifdef([_AS_DETECT_SUGGESTED], +[_AS_DETECT_SUGGESTED([ + test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test "X`printf %s $ECHO`" = "X$ECHO" \ + || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) + +_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) +_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) +])# _LT_PROG_ECHO_BACKSLASH + + +# _LT_WITH_SYSROOT +# ---------------- +AC_DEFUN([_LT_WITH_SYSROOT], +[AC_MSG_CHECKING([for sysroot]) +AC_ARG_WITH([sysroot], +[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], + [Search for dependent libraries within DIR (or the compiler's sysroot + if not specified).])], +[], [with_sysroot=no]) + +dnl lt_sysroot will always be passed unquoted. We quote it here +dnl in case the user passed a directory name. +lt_sysroot= +case $with_sysroot in #( + yes) + if test yes = "$GCC"; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + AC_MSG_RESULT([$with_sysroot]) + AC_MSG_ERROR([The sysroot must be an absolute path.]) + ;; +esac + + AC_MSG_RESULT([${lt_sysroot:-no}]) +_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl +[dependent libraries, and where our libraries should be installed.])]) + +# _LT_ENABLE_LOCK +# --------------- +m4_defun([_LT_ENABLE_LOCK], +[AC_ARG_ENABLE([libtool-lock], + [AS_HELP_STRING([--disable-libtool-lock], + [avoid locking (might break parallel builds)])]) +test no = "$enable_libtool_lock" || enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out what ABI is being produced by ac_compile, and set mode + # options accordingly. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE=32 + ;; + *ELF-64*) + HPUX_IA64_MODE=64 + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + if test yes = "$lt_cv_prog_gnu_ld"; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +mips64*-*linux*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + emul=elf + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + emul="${emul}32" + ;; + *64-bit*) + emul="${emul}64" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *MSB*) + emul="${emul}btsmip" + ;; + *LSB*) + emul="${emul}ltsmip" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *N32*) + emul="${emul}n32" + ;; + esac + LD="${LD-ld} -m $emul" + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. Note that the listed cases only cover the + # situations where additional linker options are needed (such as when + # doing 32-bit compilation for a host where ld defaults to 64-bit, or + # vice versa); the common cases where no linker options are needed do + # not appear in the list. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + case `/usr/bin/file conftest.o` in + *x86-64*) + LD="${LD-ld} -m elf32_x86_64" + ;; + *) + LD="${LD-ld} -m elf_i386" + ;; + esac + ;; + powerpc64le-*linux*) + LD="${LD-ld} -m elf32lppclinux" + ;; + powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + powerpcle-*linux*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS=$CFLAGS + CFLAGS="$CFLAGS -belf" + AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, + [AC_LANG_PUSH(C) + AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) + AC_LANG_POP]) + if test yes != "$lt_cv_cc_needs_belf"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS=$SAVE_CFLAGS + fi + ;; +*-*solaris*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*|x86_64-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD=${LD-ld}_sol2 + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks=$enable_libtool_lock +])# _LT_ENABLE_LOCK + + +# _LT_PROG_AR +# ----------- +m4_defun([_LT_PROG_AR], +[AC_CHECK_TOOLS(AR, [ar], false) +: ${AR=ar} +: ${AR_FLAGS=cru} +_LT_DECL([], [AR], [1], [The archiver]) +_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) + +AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], + [lt_cv_ar_at_file=no + AC_COMPILE_IFELSE([AC_LANG_PROGRAM], + [echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' + AC_TRY_EVAL([lt_ar_try]) + if test 0 -eq "$ac_status"; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + AC_TRY_EVAL([lt_ar_try]) + if test 0 -ne "$ac_status"; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + ]) + ]) + +if test no = "$lt_cv_ar_at_file"; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi +_LT_DECL([], [archiver_list_spec], [1], + [How to feed a file listing to the archiver]) +])# _LT_PROG_AR + + +# _LT_CMD_OLD_ARCHIVE +# ------------------- +m4_defun([_LT_CMD_OLD_ARCHIVE], +[_LT_PROG_AR + +AC_CHECK_TOOL(STRIP, strip, :) +test -z "$STRIP" && STRIP=: +_LT_DECL([], [STRIP], [1], [A symbol stripping program]) + +AC_CHECK_TOOL(RANLIB, ranlib, :) +test -z "$RANLIB" && RANLIB=: +_LT_DECL([], [RANLIB], [1], + [Commands used to install an old-style archive]) + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + bitrig* | openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac +_LT_DECL([], [old_postinstall_cmds], [2]) +_LT_DECL([], [old_postuninstall_cmds], [2]) +_LT_TAGDECL([], [old_archive_cmds], [2], + [Commands used to build an old-style archive]) +_LT_DECL([], [lock_old_archive_extraction], [0], + [Whether to use a lock for old archive extraction]) +])# _LT_CMD_OLD_ARCHIVE + + +# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------------------- +# Check whether the given compiler option works +AC_DEFUN([_LT_COMPILER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + fi + $RM conftest* +]) + +if test yes = "[$]$2"; then + m4_if([$5], , :, [$5]) +else + m4_if([$6], , :, [$6]) +fi +])# _LT_COMPILER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) + + +# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------- +# Check whether the given linker option works +AC_DEFUN([_LT_LINKER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS $3" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&AS_MESSAGE_LOG_FD + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + else + $2=yes + fi + fi + $RM -r conftest* + LDFLAGS=$save_LDFLAGS +]) + +if test yes = "[$]$2"; then + m4_if([$4], , :, [$4]) +else + m4_if([$5], , :, [$5]) +fi +])# _LT_LINKER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) + + +# LT_CMD_MAX_LEN +#--------------- +AC_DEFUN([LT_CMD_MAX_LEN], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +# find the maximum length of command line arguments +AC_MSG_CHECKING([the maximum length of command line arguments]) +AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl + i=0 + teststring=ABCD + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len" && \ + test undefined != "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test X`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test 17 != "$i" # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac +]) +if test -n "$lt_cv_sys_max_cmd_len"; then + AC_MSG_RESULT($lt_cv_sys_max_cmd_len) +else + AC_MSG_RESULT(none) +fi +max_cmd_len=$lt_cv_sys_max_cmd_len +_LT_DECL([], [max_cmd_len], [0], + [What is the maximum length of a command?]) +])# LT_CMD_MAX_LEN + +# Old name: +AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) + + +# _LT_HEADER_DLFCN +# ---------------- +m4_defun([_LT_HEADER_DLFCN], +[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl +])# _LT_HEADER_DLFCN + + +# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, +# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) +# ---------------------------------------------------------------- +m4_defun([_LT_TRY_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test yes = "$cross_compiling"; then : + [$4] +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +[#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisibility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +}] +_LT_EOF + if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then + (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) $1 ;; + x$lt_dlneed_uscore) $2 ;; + x$lt_dlunknown|x*) $3 ;; + esac + else : + # compilation failed + $3 + fi +fi +rm -fr conftest* +])# _LT_TRY_DLOPEN_SELF + + +# LT_SYS_DLOPEN_SELF +# ------------------ +AC_DEFUN([LT_SYS_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test yes != "$enable_dlopen"; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen=load_add_on + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen=LoadLibrary + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen=dlopen + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ + lt_cv_dlopen=dyld + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ]) + ;; + + tpf*) + # Don't try to run any link tests for TPF. We know it's impossible + # because TPF is a cross-compiler, and we know how we open DSOs. + lt_cv_dlopen=dlopen + lt_cv_dlopen_libs= + lt_cv_dlopen_self=no + ;; + + *) + AC_CHECK_FUNC([shl_load], + [lt_cv_dlopen=shl_load], + [AC_CHECK_LIB([dld], [shl_load], + [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], + [AC_CHECK_FUNC([dlopen], + [lt_cv_dlopen=dlopen], + [AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], + [AC_CHECK_LIB([svld], [dlopen], + [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], + [AC_CHECK_LIB([dld], [dld_link], + [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) + ]) + ]) + ]) + ]) + ]) + ;; + esac + + if test no = "$lt_cv_dlopen"; then + enable_dlopen=no + else + enable_dlopen=yes + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS=$CPPFLAGS + test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS=$LDFLAGS + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS=$LIBS + LIBS="$lt_cv_dlopen_libs $LIBS" + + AC_CACHE_CHECK([whether a program can dlopen itself], + lt_cv_dlopen_self, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, + lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) + ]) + + if test yes = "$lt_cv_dlopen_self"; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + AC_CACHE_CHECK([whether a statically linked program can dlopen itself], + lt_cv_dlopen_self_static, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, + lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) + ]) + fi + + CPPFLAGS=$save_CPPFLAGS + LDFLAGS=$save_LDFLAGS + LIBS=$save_LIBS + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi +_LT_DECL([dlopen_support], [enable_dlopen], [0], + [Whether dlopen is supported]) +_LT_DECL([dlopen_self], [enable_dlopen_self], [0], + [Whether dlopen of programs is supported]) +_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], + [Whether dlopen of statically linked programs is supported]) +])# LT_SYS_DLOPEN_SELF + +# Old name: +AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) + + +# _LT_COMPILER_C_O([TAGNAME]) +# --------------------------- +# Check to see if options -c and -o are simultaneously supported by compiler. +# This macro does not hard code the compiler like AC_PROG_CC_C_O. +m4_defun([_LT_COMPILER_C_O], +[m4_require([_LT_DECL_SED])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + fi + fi + chmod u+w . 2>&AS_MESSAGE_LOG_FD + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* +]) +_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], + [Does compiler simultaneously support -c and -o options?]) +])# _LT_COMPILER_C_O + + +# _LT_COMPILER_FILE_LOCKS([TAGNAME]) +# ---------------------------------- +# Check to see if we can do hard links to lock some files if needed +m4_defun([_LT_COMPILER_FILE_LOCKS], +[m4_require([_LT_ENABLE_LOCK])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_COMPILER_C_O([$1]) + +hard_links=nottested +if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then + # do not overwrite the value of need_locks provided by the user + AC_MSG_CHECKING([if we can lock with hard links]) + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + AC_MSG_RESULT([$hard_links]) + if test no = "$hard_links"; then + AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) + need_locks=warn + fi +else + need_locks=no +fi +_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) +])# _LT_COMPILER_FILE_LOCKS + + +# _LT_CHECK_OBJDIR +# ---------------- +m4_defun([_LT_CHECK_OBJDIR], +[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], +[rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null]) +objdir=$lt_cv_objdir +_LT_DECL([], [objdir], [0], + [The name of the directory that contains temporary libtool files])dnl +m4_pattern_allow([LT_OBJDIR])dnl +AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", + [Define to the sub-directory where libtool stores uninstalled libraries.]) +])# _LT_CHECK_OBJDIR + + +# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) +# -------------------------------------- +# Check hardcoding attributes. +m4_defun([_LT_LINKER_HARDCODE_LIBPATH], +[AC_MSG_CHECKING([how to hardcode library paths into programs]) +_LT_TAGVAR(hardcode_action, $1)= +if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || + test -n "$_LT_TAGVAR(runpath_var, $1)" || + test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then + + # We can hardcode non-existent directories. + if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && + test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then + # Linking always hardcodes the temporary library directory. + _LT_TAGVAR(hardcode_action, $1)=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + _LT_TAGVAR(hardcode_action, $1)=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + _LT_TAGVAR(hardcode_action, $1)=unsupported +fi +AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) + +if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || + test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then + # Fast installation is not supported + enable_fast_install=no +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then + # Fast installation is not necessary + enable_fast_install=needless +fi +_LT_TAGDECL([], [hardcode_action], [0], + [How to hardcode a shared library path into an executable]) +])# _LT_LINKER_HARDCODE_LIBPATH + + +# _LT_CMD_STRIPLIB +# ---------------- +m4_defun([_LT_CMD_STRIPLIB], +[m4_require([_LT_DECL_EGREP]) +striplib= +old_striplib= +AC_MSG_CHECKING([whether stripping libraries is possible]) +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + AC_MSG_RESULT([yes]) +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP"; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + fi + ;; + *) + AC_MSG_RESULT([no]) + ;; + esac +fi +_LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) +_LT_DECL([], [striplib], [1]) +])# _LT_CMD_STRIPLIB + + +# _LT_PREPARE_MUNGE_PATH_LIST +# --------------------------- +# Make sure func_munge_path_list() is defined correctly. +m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], +[[# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x@S|@2 in + x) + ;; + *:) + eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" + ;; + x:*) + eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" + ;; + *) + eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" + ;; + esac +} +]])# _LT_PREPARE_PATH_LIST + + +# _LT_SYS_DYNAMIC_LINKER([TAG]) +# ----------------------------- +# PORTME Fill in your ld.so characteristics +m4_defun([_LT_SYS_DYNAMIC_LINKER], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_OBJDUMP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl +AC_MSG_CHECKING([dynamic linker characteristics]) +m4_if([$1], + [], [ +if test yes = "$GCC"; then + case $host_os in + darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; + *) lt_awk_arg='/^libraries:/' ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; + *) lt_sed_strip_eq='s|=/|/|g' ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary... + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + # ...but if some path component already ends with the multilib dir we assume + # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). + case "$lt_multi_os_dir; $lt_search_path_spec " in + "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) + lt_multi_os_dir= + ;; + esac + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" + elif test -n "$lt_multi_os_dir"; then + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS = " "; FS = "/|\n";} { + lt_foo = ""; + lt_count = 0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo = "/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[[lt_foo]]++; } + if (lt_freq[[lt_foo]] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi]) +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=.so +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +AC_ARG_VAR([LT_SYS_LIBRARY_PATH], +[User-defined run-time library search path.]) + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='$libname$release$shared_ext$major' + ;; + +aix[[4-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test ia64 = "$host_cpu"; then + # AIX 5 supports IA64 + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[[01]] | aix4.[[01]].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a[(]lib.so.V[)]' + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='$libname$shared_ext' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[[45]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=.dll + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec=$LIB + if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[[23]].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[[01]]* | freebsdelf3.[[01]]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ + freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=no + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 + fi + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[[3-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test yes = "$lt_cv_prog_gnu_ld"; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +linux*android*) + version_type=none # Android doesn't support versioned libraries. + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], + [lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ + LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], + [lt_cv_shlibpath_overrides_runpath=yes])]) + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + ]) + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd* | bitrig*) + version_type=sunos + sys_lib_dlsearch_path_spec=/usr/lib + need_lib_prefix=no + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no + else + need_version=yes + fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +os2*) + libname_spec='$name' + version_type=windows + shrext_cmds=.dll + need_version=no + need_lib_prefix=no + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test yes = "$with_gnu_ld"; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec; then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=sco + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test yes = "$with_gnu_ld"; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +AC_MSG_RESULT([$dynamic_linker]) +test no = "$dynamic_linker" && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test yes = "$GCC"; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec +fi + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec +fi + +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + +_LT_DECL([], [variables_saved_for_relink], [1], + [Variables whose values should be saved in libtool wrapper scripts and + restored at link time]) +_LT_DECL([], [need_lib_prefix], [0], + [Do we need the "lib" prefix for modules?]) +_LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) +_LT_DECL([], [version_type], [0], [Library versioning type]) +_LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) +_LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) +_LT_DECL([], [shlibpath_overrides_runpath], [0], + [Is shlibpath searched before the hard-coded library search path?]) +_LT_DECL([], [libname_spec], [1], [Format of library name prefix]) +_LT_DECL([], [library_names_spec], [1], + [[List of archive names. First name is the real one, the rest are links. + The last name is the one that the linker finds with -lNAME]]) +_LT_DECL([], [soname_spec], [1], + [[The coded name of the library, if different from the real name]]) +_LT_DECL([], [install_override_mode], [1], + [Permission mode override for installation of shared libraries]) +_LT_DECL([], [postinstall_cmds], [2], + [Command to use after installation of a shared archive]) +_LT_DECL([], [postuninstall_cmds], [2], + [Command to use after uninstallation of a shared archive]) +_LT_DECL([], [finish_cmds], [2], + [Commands used to finish a libtool library installation in a directory]) +_LT_DECL([], [finish_eval], [1], + [[As "finish_cmds", except a single script fragment to be evaled but + not shown]]) +_LT_DECL([], [hardcode_into_libs], [0], + [Whether we should hardcode library paths into libraries]) +_LT_DECL([], [sys_lib_search_path_spec], [2], + [Compile-time system search path for libraries]) +_LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], + [Detected run-time system search path for libraries]) +_LT_DECL([], [configure_time_lt_sys_library_path], [2], + [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) +])# _LT_SYS_DYNAMIC_LINKER + + +# _LT_PATH_TOOL_PREFIX(TOOL) +# -------------------------- +# find a file program that can recognize shared library +AC_DEFUN([_LT_PATH_TOOL_PREFIX], +[m4_require([_LT_DECL_EGREP])dnl +AC_MSG_CHECKING([for $1]) +AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, +[case $MAGIC_CMD in +[[\\/*] | ?:[\\/]*]) + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR +dnl $ac_dummy forces splitting on constant user-supplied paths. +dnl POSIX.2 word splitting is done only on the output of word expansions, +dnl not every word. This closes a longstanding sh security hole. + ac_dummy="m4_if([$2], , $PATH, [$2])" + for ac_dir in $ac_dummy; do + IFS=$lt_save_ifs + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$1"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"$1" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD=$lt_cv_path_MAGIC_CMD + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD + ;; +esac]) +MAGIC_CMD=$lt_cv_path_MAGIC_CMD +if test -n "$MAGIC_CMD"; then + AC_MSG_RESULT($MAGIC_CMD) +else + AC_MSG_RESULT(no) +fi +_LT_DECL([], [MAGIC_CMD], [0], + [Used to examine libraries when file_magic_cmd begins with "file"])dnl +])# _LT_PATH_TOOL_PREFIX + +# Old name: +AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) + + +# _LT_PATH_MAGIC +# -------------- +# find a file program that can recognize a shared library +m4_defun([_LT_PATH_MAGIC], +[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) + else + MAGIC_CMD=: + fi +fi +])# _LT_PATH_MAGIC + + +# LT_PATH_LD +# ---------- +# find the pathname to the GNU or non-GNU linker +AC_DEFUN([LT_PATH_LD], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PROG_ECHO_BACKSLASH])dnl + +AC_ARG_WITH([gnu-ld], + [AS_HELP_STRING([--with-gnu-ld], + [assume the C compiler uses GNU ld @<:@default=no@:>@])], + [test no = "$withval" || with_gnu_ld=yes], + [with_gnu_ld=no])dnl + +ac_prog=ld +if test yes = "$GCC"; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by $CC]) + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return, which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [[\\/]]* | ?:[[\\/]]*) + re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD=$ac_prog + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test yes = "$with_gnu_ld"; then + AC_MSG_CHECKING([for GNU ld]) +else + AC_MSG_CHECKING([for non-GNU ld]) +fi +AC_CACHE_VAL(lt_cv_path_LD, +[if test -z "$LD"; then + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS=$lt_save_ifs + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD=$ac_dir/$ac_prog + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &1 conftest.i +cat conftest.i conftest.i >conftest2.i +: ${lt_DD:=$DD} +AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], +[if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: +fi]) +rm -f conftest.i conftest2.i conftest.out]) +])# _LT_PATH_DD + + +# _LT_CMD_TRUNCATE +# ---------------- +# find command to truncate a binary pipe +m4_defun([_LT_CMD_TRUNCATE], +[m4_require([_LT_PATH_DD]) +AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], +[printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +lt_cv_truncate_bin= +if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" +fi +rm -f conftest.i conftest2.i conftest.out +test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) +_LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], + [Command to truncate a binary pipe]) +])# _LT_CMD_TRUNCATE + + +# _LT_CHECK_MAGIC_METHOD +# ---------------------- +# how to check for library dependencies +# -- PORTME fill in with the dynamic library characteristics +m4_defun([_LT_CHECK_MAGIC_METHOD], +[m4_require([_LT_DECL_EGREP]) +m4_require([_LT_DECL_OBJDUMP]) +AC_CACHE_CHECK([how to recognize dependent libraries], +lt_cv_deplibs_check_method, +[lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_deplibs_check_method='unknown' +# Need to set the preceding variable on all platforms that support +# interlibrary dependencies. +# 'none' -- dependencies not supported. +# 'unknown' -- same as none, but documents that we really don't know. +# 'pass_all' -- all dependencies passed with no checks. +# 'test_compile' -- check by making test program. +# 'file_magic [[regex]]' -- check by looking for files in library path +# that responds to the $file_magic_cmd with a given extended regex. +# If you have 'file' or equivalent on your system and you're not sure +# whether 'pass_all' will *always* work, you probably want this one. + +case $host_os in +aix[[4-9]]*) + lt_cv_deplibs_check_method=pass_all + ;; + +beos*) + lt_cv_deplibs_check_method=pass_all + ;; + +bsdi[[45]]*) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' + lt_cv_file_magic_cmd='/usr/bin/file -L' + lt_cv_file_magic_test_file=/shlib/libc.so + ;; + +cygwin*) + # func_win32_libid is a shell function defined in ltmain.sh + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + ;; + +mingw* | pw32*) + # Base MSYS/MinGW do not provide the 'file' command needed by + # func_win32_libid shell function, so use a weaker test based on 'objdump', + # unless we find 'file', for example because we are cross-compiling. + if ( file / ) >/dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[[3-9]]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd* | bitrig*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +os2*) + lt_cv_deplibs_check_method=pass_all + ;; +esac +]) + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + +_LT_DECL([], [deplibs_check_method], [1], + [Method to check whether dependent libraries are shared objects]) +_LT_DECL([], [file_magic_cmd], [1], + [Command to use when deplibs_check_method = "file_magic"]) +_LT_DECL([], [file_magic_glob], [1], + [How to find potential files when deplibs_check_method = "file_magic"]) +_LT_DECL([], [want_nocaseglob], [1], + [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) +])# _LT_CHECK_MAGIC_METHOD + + +# LT_PATH_NM +# ---------- +# find the pathname to a BSD- or MS-compatible name lister +AC_DEFUN([LT_PATH_NM], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, +[if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM=$NM +else + lt_nm_to_check=${ac_tool_prefix}nm + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS=$lt_save_ifs + test -z "$ac_dir" && ac_dir=. + tmp_nm=$ac_dir/$lt_tmp_nm + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the 'sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty + case $build_os in + mingw*) lt_bad_file=conftest.nm/nofile ;; + *) lt_bad_file=/dev/null ;; + esac + case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in + *$lt_bad_file* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break 2 + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break 2 + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS=$lt_save_ifs + done + : ${lt_cv_path_NM=no} +fi]) +if test no != "$lt_cv_path_NM"; then + NM=$lt_cv_path_NM +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) + case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols -headers" + ;; + *) + DUMPBIN=: + ;; + esac + fi + AC_SUBST([DUMPBIN]) + if test : != "$DUMPBIN"; then + NM=$DUMPBIN + fi +fi +test -z "$NM" && NM=nm +AC_SUBST([NM]) +_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl + +AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], + [lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) + cat conftest.out >&AS_MESSAGE_LOG_FD + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest*]) +])# LT_PATH_NM + +# Old names: +AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) +AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_PROG_NM], []) +dnl AC_DEFUN([AC_PROG_NM], []) + +# _LT_CHECK_SHAREDLIB_FROM_LINKLIB +# -------------------------------- +# how to determine the name of the shared library +# associated with a specific link library. +# -- PORTME fill in with the dynamic library characteristics +m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], +[m4_require([_LT_DECL_EGREP]) +m4_require([_LT_DECL_OBJDUMP]) +m4_require([_LT_DECL_DLLTOOL]) +AC_CACHE_CHECK([how to associate runtime and link libraries], +lt_cv_sharedlib_from_linklib_cmd, +[lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh; + # decide which one to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd=$ECHO + ;; +esac +]) +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + +_LT_DECL([], [sharedlib_from_linklib_cmd], [1], + [Command to associate shared and link libraries]) +])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB + + +# _LT_PATH_MANIFEST_TOOL +# ---------------------- +# locate the manifest tool +m4_defun([_LT_PATH_MANIFEST_TOOL], +[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], + [lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&AS_MESSAGE_LOG_FD + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest*]) +if test yes != "$lt_cv_path_mainfest_tool"; then + MANIFEST_TOOL=: +fi +_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl +])# _LT_PATH_MANIFEST_TOOL + + +# _LT_DLL_DEF_P([FILE]) +# --------------------- +# True iff FILE is a Windows DLL '.def' file. +# Keep in sync with func_dll_def_p in the libtool script +AC_DEFUN([_LT_DLL_DEF_P], +[dnl + test DEF = "`$SED -n dnl + -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace + -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments + -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl + -e q dnl Only consider the first "real" line + $1`" dnl +])# _LT_DLL_DEF_P + + +# LT_LIB_M +# -------- +# check for math library +AC_DEFUN([LT_LIB_M], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +LIBM= +case $host in +*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) + # These system don't have libm, or don't need it + ;; +*-ncr-sysv4.3*) + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) + AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") + ;; +*) + AC_CHECK_LIB(m, cos, LIBM=-lm) + ;; +esac +AC_SUBST([LIBM]) +])# LT_LIB_M + +# Old name: +AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_CHECK_LIBM], []) + + +# _LT_COMPILER_NO_RTTI([TAGNAME]) +# ------------------------------- +m4_defun([_LT_COMPILER_NO_RTTI], +[m4_require([_LT_TAG_COMPILER])dnl + +_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + +if test yes = "$GCC"; then + case $cc_basename in + nvcc*) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; + *) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; + esac + + _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], + lt_cv_prog_compiler_rtti_exceptions, + [-fno-rtti -fno-exceptions], [], + [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) +fi +_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], + [Compiler flag to turn off builtin functions]) +])# _LT_COMPILER_NO_RTTI + + +# _LT_CMD_GLOBAL_SYMBOLS +# ---------------------- +m4_defun([_LT_CMD_GLOBAL_SYMBOLS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([LT_PATH_NM])dnl +AC_REQUIRE([LT_PATH_LD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_TAG_COMPILER])dnl + +# Check for command to grab the raw symbol name followed by C symbol from nm. +AC_MSG_CHECKING([command to parse $NM output from $compiler object]) +AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], +[ +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[[BCDEGRST]]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[[BCDT]]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[[ABCDGISTW]]' + ;; +hpux*) + if test ia64 = "$host_cpu"; then + symcode='[[ABCDEGRST]]' + fi + ;; +irix* | nonstopux*) + symcode='[[BCDEGRST]]' + ;; +osf*) + symcode='[[BCDEGQRST]]' + ;; +solaris*) + symcode='[[BDRT]]' + ;; +sco3.2v5*) + symcode='[[DT]]' + ;; +sysv4.2uw2*) + symcode='[[DT]]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[[ABDT]]' + ;; +sysv4) + symcode='[[DFNSTU]]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[[ABCDGIRSTW]]' ;; +esac + +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Gets list of data symbols to import. + lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" + # Adjust the below global symbol transforms to fixup imported variables. + lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" + lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" + lt_c_name_lib_hook="\ + -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ + -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" +else + # Disable hooks by default. + lt_cv_sys_global_symbol_to_import= + lt_cdecl_hook= + lt_c_name_hook= + lt_c_name_lib_hook= +fi + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n"\ +$lt_cdecl_hook\ +" -e 's/^T .* \(.*\)$/extern int \1();/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ +$lt_c_name_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" + +# Transform an extracted symbol line into symbol name with lib prefix and +# symbol address. +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ +$lt_c_name_lib_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function, + # D for any global variable and I for any imported variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK ['"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ +" /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ +" /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ +" {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ +" s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx]" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if AC_TRY_EVAL(ac_compile); then + # Now try to grab the symbols. + nlist=conftest.nm + if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT@&t@_DLSYM_CONST +#elif defined __osf__ +/* This system does not cope well with relocations in const data. */ +# define LT@&t@_DLSYM_CONST +#else +# define LT@&t@_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT@&t@_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[[]] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS=conftstm.$ac_objext + CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" + if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD + fi + else + echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test yes = "$pipe_works"; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done +]) +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + AC_MSG_RESULT(failed) +else + AC_MSG_RESULT(ok) +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + +_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], + [Take the output of nm and produce a listing of raw symbols and C names]) +_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], + [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], + [Transform the output of nm into a list of symbols to manually relocate]) +_LT_DECL([global_symbol_to_c_name_address], + [lt_cv_sys_global_symbol_to_c_name_address], [1], + [Transform the output of nm in a C name address pair]) +_LT_DECL([global_symbol_to_c_name_address_lib_prefix], + [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], + [Transform the output of nm in a C name address pair when lib prefix is needed]) +_LT_DECL([nm_interface], [lt_cv_nm_interface], [1], + [The name lister interface]) +_LT_DECL([], [nm_file_list_spec], [1], + [Specify filename containing input files for $NM]) +]) # _LT_CMD_GLOBAL_SYMBOLS + + +# _LT_COMPILER_PIC([TAGNAME]) +# --------------------------- +m4_defun([_LT_COMPILER_PIC], +[m4_require([_LT_TAG_COMPILER])dnl +_LT_TAGVAR(lt_prog_compiler_wl, $1)= +_LT_TAGVAR(lt_prog_compiler_pic, $1)= +_LT_TAGVAR(lt_prog_compiler_static, $1)= + +m4_if([$1], [CXX], [ + # C++ specific cases for pic, static, wl, etc. + if test yes = "$GXX"; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test ia64 = "$host_cpu"; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + else + case $host_os in + aix[[4-9]]*) + # All AIX code is PIC. + if test ia64 = "$host_cpu"; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + dgux*) + case $cc_basename in + ec++*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' + if test ia64 != "$host_cpu"; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + fi + ;; + aCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + case $cc_basename in + KCC*) + # KAI C++ Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64, which still supported -KPIC. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) + # IBM XL 8.0, 9.0 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + cxx*) + # Digital/Compaq C++ + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + lcc*) + # Lucid + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +], +[ + if test yes = "$GCC"; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test ia64 = "$host_cpu"; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' + if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + if test ia64 = "$host_cpu"; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + case $cc_basename in + nagfor*) + # NAG Fortran compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + case $host_os in + os2*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' + ;; + esac + ;; + + hpux9* | hpux10* | hpux11*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC (with -KPIC) is the default. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + case $cc_basename in + # old Intel for x86_64, which still supported -KPIC. + ecc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' + _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' + ;; + nagfor*) + # NAG Fortran compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + ccc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All Alpha code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='' + ;; + *Sun\ F* | *Sun*Fortran*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + ;; + *Intel*\ [[CF]]*Compiler*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + *Portland\ Group*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All OSF/1 code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + rdos*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + solaris*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; + *) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; + esac + ;; + + sunos4*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + unicos*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + + uts4*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +]) +case $host_os in + # For platforms that do not support PIC, -DPIC is meaningless: + *djgpp*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" + ;; +esac + +AC_CACHE_CHECK([for $compiler option to produce PIC], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) +_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], + [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], + [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], + [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in + "" | " "*) ;; + *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; + esac], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) +fi +_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], + [Additional compiler flags for building library objects]) + +_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], + [How to pass a linker flag through the compiler]) +# +# Check to make sure the static flag actually works. +# +wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" +_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], + _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), + $lt_tmp_static_flag, + [], + [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) +_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], + [Compiler flag to prevent dynamic linking]) +])# _LT_COMPILER_PIC + + +# _LT_LINKER_SHLIBS([TAGNAME]) +# ---------------------------- +# See if the linker supports building shared libraries. +m4_defun([_LT_LINKER_SHLIBS], +[AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) +m4_if([$1], [CXX], [ + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + case $host_os in + aix[[4-9]]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds + ;; + cygwin* | mingw* | cegcc*) + case $cc_basename in + cl*) + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + ;; + esac + ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac +], [ + runpath_var= + _LT_TAGVAR(allow_undefined_flag, $1)= + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(archive_cmds, $1)= + _LT_TAGVAR(archive_expsym_cmds, $1)= + _LT_TAGVAR(compiler_needs_object, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(hardcode_automatic, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(hardcode_libdir_separator, $1)= + _LT_TAGVAR(hardcode_minus_L, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_TAGVAR(inherit_rpath, $1)=no + _LT_TAGVAR(link_all_deplibs, $1)=unknown + _LT_TAGVAR(module_cmds, $1)= + _LT_TAGVAR(module_expsym_cmds, $1)= + _LT_TAGVAR(old_archive_from_new_cmds, $1)= + _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= + _LT_TAGVAR(thread_safe_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + _LT_TAGVAR(include_expsyms, $1)= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ' (' and ')$', so one must not match beginning or + # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', + # as well as any symbol that contains 'd'. + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. +dnl Note also adjust exclude_expsyms for C++ above. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test yes != "$GCC"; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd* | bitrig*) + with_gnu_ld=no + ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; + esac + + _LT_TAGVAR(ld_shlibs, $1)=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test yes = "$with_gnu_ld"; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; + *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test yes = "$lt_use_gnu_ld_interface"; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='$wl' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + supports_anon_versioning=no + case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[[3-9]]*) + # On AIX/PPC, the GNU linker is very broken + if test ia64 != "$host_cpu"; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test linux-dietlibc = "$host_os"; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test no = "$tmp_diet" + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + _LT_TAGVAR(whole_archive_flag_spec, $1)= + tmp_sharedflag='--shared' ;; + nagfor*) # NAGFOR 5.3 + tmp_sharedflag='-Wl,-shared' ;; + xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + + if test yes = "$supports_anon_versioning"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + tcc*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' + ;; + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test yes = "$supports_anon_versioning"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + sunos4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + + if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then + runpath_var= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + _LT_TAGVAR(hardcode_direct, $1)=unsupported + fi + ;; + + aix[[4-9]]*) + if test ia64 = "$host_cpu"; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag= + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then + aix_use_runtimelinking=yes + break + fi + done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # traditional, no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + ;; + esac + + if test yes = "$GCC"; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`$CC -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + ;; + esac + shared_flag='-shared' + if test yes = "$aix_use_runtimelinking"; then + shared_flag="$shared_flag "'$wl-G' + fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' + else + # not using gcc + if test ia64 = "$host_cpu"; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' + else + shared_flag='$wl-bM:SRE' + fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag + else + if test ia64 = "$host_cpu"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' + if test yes = "$with_gnu_ld"; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + bsdi[[45]]*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=.dll + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=.dll + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + # FIXME: Should let the user specify the lib program. + _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + esac + ;; + + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + hpux9*) + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + ;; + + hpux10*) + if test yes,no = "$GCC,$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + fi + ;; + + hpux11*) + if test yes,no = "$GCC,$with_gnu_ld"; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + m4_if($1, [], [ + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + _LT_LINKER_OPTION([if $CC understands -b], + _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], + [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) + ;; + esac + fi + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], + [lt_cv_irix_exported_symbol], + [save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" + AC_LINK_IFELSE( + [AC_LANG_SOURCE( + [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], + [C++], [[int foo (void) { return 0; }]], + [Fortran 77], [[ + subroutine foo + end]], + [Fortran], [[ + subroutine foo + end]])])], + [lt_cv_irix_exported_symbol=yes], + [lt_cv_irix_exported_symbol=no]) + LDFLAGS=$save_LDFLAGS]) + if test yes = "$lt_cv_irix_exported_symbol"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' + fi + _LT_TAGVAR(link_all_deplibs, $1)=no + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + linux*) + case $cc_basename in + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + _LT_TAGVAR(ld_shlibs, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + newsos6) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *nto* | *qnx*) + ;; + + openbsd* | bitrig*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + fi + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + + osf3*) + if test yes = "$GCC"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test yes = "$GCC"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + solaris*) + _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' + if test yes = "$GCC"; then + wlarc='$wl' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='$wl' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands '-z linker_flag'. GCC discards it without '$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test yes = "$GCC"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + fi + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + sunos4*) + if test sequent = "$host_vendor"; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4) + case $host_vendor in + sni) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' + _LT_TAGVAR(hardcode_direct, $1)=no + ;; + motorola) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4.3*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + _LT_TAGVAR(ld_shlibs, $1)=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We CANNOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' + runpath_var='LD_RUN_PATH' + + if test yes = "$GCC"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + if test sni = "$host_vendor"; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' + ;; + esac + fi + fi +]) +AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) +test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no + +_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld + +_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl +_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl +_LT_DECL([], [extract_expsyms_cmds], [2], + [The commands to extract the exported symbol list from a shared archive]) + +# +# Do we need to explicitly link libc? +# +case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in +x|xyes) + # Assume -lc should be added + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + + if test yes,yes = "$GCC,$enable_shared"; then + case $_LT_TAGVAR(archive_cmds, $1) in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + AC_CACHE_CHECK([whether -lc should be explicitly linked in], + [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), + [$RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if AC_TRY_EVAL(ac_compile) 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) + pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) + _LT_TAGVAR(allow_undefined_flag, $1)= + if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) + then + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no + else + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes + fi + _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + ]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) + ;; + esac + fi + ;; +esac + +_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], + [Whether or not to add -lc for building shared libraries]) +_LT_TAGDECL([allow_libtool_libs_with_static_runtimes], + [enable_shared_with_static_runtimes], [0], + [Whether or not to disallow shared libs when runtime libs are static]) +_LT_TAGDECL([], [export_dynamic_flag_spec], [1], + [Compiler flag to allow reflexive dlopens]) +_LT_TAGDECL([], [whole_archive_flag_spec], [1], + [Compiler flag to generate shared objects directly from archives]) +_LT_TAGDECL([], [compiler_needs_object], [1], + [Whether the compiler copes with passing no objects directly]) +_LT_TAGDECL([], [old_archive_from_new_cmds], [2], + [Create an old-style archive from a shared archive]) +_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], + [Create a temporary old-style archive to link instead of a shared archive]) +_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) +_LT_TAGDECL([], [archive_expsym_cmds], [2]) +_LT_TAGDECL([], [module_cmds], [2], + [Commands used to build a loadable module if different from building + a shared archive.]) +_LT_TAGDECL([], [module_expsym_cmds], [2]) +_LT_TAGDECL([], [with_gnu_ld], [1], + [Whether we are building with GNU ld or not]) +_LT_TAGDECL([], [allow_undefined_flag], [1], + [Flag that allows shared libraries with undefined symbols to be built]) +_LT_TAGDECL([], [no_undefined_flag], [1], + [Flag that enforces no undefined symbols]) +_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], + [Flag to hardcode $libdir into a binary during linking. + This must work even if $libdir does not exist]) +_LT_TAGDECL([], [hardcode_libdir_separator], [1], + [Whether we need a single "-rpath" flag with a separated argument]) +_LT_TAGDECL([], [hardcode_direct], [0], + [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes + DIR into the resulting binary]) +_LT_TAGDECL([], [hardcode_direct_absolute], [0], + [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes + DIR into the resulting binary and the resulting library dependency is + "absolute", i.e impossible to change by setting $shlibpath_var if the + library is relocated]) +_LT_TAGDECL([], [hardcode_minus_L], [0], + [Set to "yes" if using the -LDIR flag during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_shlibpath_var], [0], + [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_automatic], [0], + [Set to "yes" if building a shared library automatically hardcodes DIR + into the library and all subsequent libraries and executables linked + against it]) +_LT_TAGDECL([], [inherit_rpath], [0], + [Set to yes if linker adds runtime paths of dependent libraries + to runtime path list]) +_LT_TAGDECL([], [link_all_deplibs], [0], + [Whether libtool must link a program against all its dependency libraries]) +_LT_TAGDECL([], [always_export_symbols], [0], + [Set to "yes" if exported symbols are required]) +_LT_TAGDECL([], [export_symbols_cmds], [2], + [The commands to list exported symbols]) +_LT_TAGDECL([], [exclude_expsyms], [1], + [Symbols that should not be listed in the preloaded symbols]) +_LT_TAGDECL([], [include_expsyms], [1], + [Symbols that must always be exported]) +_LT_TAGDECL([], [prelink_cmds], [2], + [Commands necessary for linking programs (against libraries) with templates]) +_LT_TAGDECL([], [postlink_cmds], [2], + [Commands necessary for finishing linking programs]) +_LT_TAGDECL([], [file_list_spec], [1], + [Specify filename containing input files]) +dnl FIXME: Not yet implemented +dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], +dnl [Compiler flag to generate thread safe objects]) +])# _LT_LINKER_SHLIBS + + +# _LT_LANG_C_CONFIG([TAG]) +# ------------------------ +# Ensure that the configuration variables for a C compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to 'libtool'. +m4_defun([_LT_LANG_C_CONFIG], +[m4_require([_LT_DECL_EGREP])dnl +lt_save_CC=$CC +AC_LANG_PUSH(C) + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + +_LT_TAG_COMPILER +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + LT_SYS_DLOPEN_SELF + _LT_CMD_STRIPLIB + + # Report what library types will actually be built + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test no = "$can_build_shared" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test yes = "$enable_shared" && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[[4-9]]*) + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test yes = "$enable_shared" || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_CONFIG($1) +fi +AC_LANG_POP +CC=$lt_save_CC +])# _LT_LANG_C_CONFIG + + +# _LT_LANG_CXX_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a C++ compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to 'libtool'. +m4_defun([_LT_LANG_CXX_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +if test -n "$CXX" && ( test no != "$CXX" && + ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || + (test g++ != "$CXX"))); then + AC_PROG_CXXCPP +else + _lt_caught_CXX_error=yes +fi + +AC_LANG_PUSH(C++) +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(compiler_needs_object, $1)=no +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test yes != "$_lt_caught_CXX_error"; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_CFLAGS=$CFLAGS + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + CFLAGS=$CXXFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test yes = "$GXX"; then + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' + else + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + fi + + if test yes = "$GXX"; then + # Set up default GNU C++ configuration + + LT_PATH_LD + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test yes = "$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='$wl' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) + _LT_TAGVAR(ld_shlibs, $1)=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aix[[4-9]]*) + if test ia64 = "$host_cpu"; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag= + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + ;; + esac + + if test yes = "$GXX"; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`$CC -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + esac + shared_flag='-shared' + if test yes = "$aix_use_runtimelinking"; then + shared_flag=$shared_flag' $wl-G' + fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' + else + # not using gcc + if test ia64 = "$host_cpu"; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' + else + shared_flag='$wl-bM:SRE' + fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + # The "-G" linker flag allows undefined symbols. + _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' + # Determine the default libpath from the value encoded in an empty + # executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" + + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag + else + if test ia64 = "$host_cpu"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' + if test yes = "$with_gnu_ld"; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared + # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + case $GXX,$cc_basename in + ,cl* | no,cl*) + # Native MSVC + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=.dll + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # g++ + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + shrext_cmds=.dll + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + freebsd2.*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + freebsd-elf*) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + hpux9*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test yes = "$GXX"; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' + fi + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + esac + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) + _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' + _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 6 and above use weak symbols + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + ;; + cxx*) + # Compaq C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + ;; + xl* | mpixl* | bgxl*) + # IBM XL 8.0 on PPC, with GNU ld + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + if test yes = "$supports_anon_versioning"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + openbsd* | bitrig*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' + fi + output_verbose_link_cmd=func_echo_all + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + cxx*) + case $host in + osf3*) + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + ;; + *) + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ + $RM $lib.exp' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test yes,no = "$GXX,$with_gnu_ld"; then + _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + case $host in + osf3*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(archive_cmds_need_lc,$1)=yes + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands '-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test yes,no = "$GXX,$with_gnu_ld"; then + _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + else + # g++ 2.7 appears to require '-G' NOT '-shared' on this + # platform. + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + fi + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We CANNOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ + '"$_LT_TAGVAR(old_archive_cmds, $1)" + _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ + '"$_LT_TAGVAR(reload_cmds, $1)" + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) + test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no + + _LT_TAGVAR(GCC, $1)=$GXX + _LT_TAGVAR(LD, $1)=$LD + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test yes != "$_lt_caught_CXX_error" + +AC_LANG_POP +])# _LT_LANG_CXX_CONFIG + + +# _LT_FUNC_STRIPNAME_CNF +# ---------------------- +# func_stripname_cnf prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# +# This function is identical to the (non-XSI) version of func_stripname, +# except this one can be used by m4 code that may be executed by configure, +# rather than the libtool script. +m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl +AC_REQUIRE([_LT_DECL_SED]) +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) +func_stripname_cnf () +{ + case @S|@2 in + .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; + *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; + esac +} # func_stripname_cnf +])# _LT_FUNC_STRIPNAME_CNF + + +# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) +# --------------------------------- +# Figure out "hidden" library dependencies from verbose +# compiler output when linking a shared library. +# Parse the compiler output and extract the necessary +# objects, libraries and library flags. +m4_defun([_LT_SYS_HIDDEN_LIBDEPS], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl +# Dependencies to place before and after the object being linked: +_LT_TAGVAR(predep_objects, $1)= +_LT_TAGVAR(postdep_objects, $1)= +_LT_TAGVAR(predeps, $1)= +_LT_TAGVAR(postdeps, $1)= +_LT_TAGVAR(compiler_lib_search_path, $1)= + +dnl we can't use the lt_simple_compile_test_code here, +dnl because it contains code intended for an executable, +dnl not a library. It's possible we should let each +dnl tag define a new lt_????_link_test_code variable, +dnl but it's only used here... +m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF +int a; +void foo (void) { a = 0; } +_LT_EOF +], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF +], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer*4 a + a=0 + return + end +_LT_EOF +], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer a + a=0 + return + end +_LT_EOF +], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF +public class foo { + private int a; + public void bar (void) { + a = 0; + } +}; +_LT_EOF +], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF +package foo +func foo() { +} +_LT_EOF +]) + +_lt_libdeps_save_CFLAGS=$CFLAGS +case "$CC $CFLAGS " in #( +*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; +*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; +esac + +dnl Parse the compiler output and extract the necessary +dnl objects, libraries and library flags. +if AC_TRY_EVAL(ac_compile); then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case $prev$p in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test x-L = "$p" || + test x-R = "$p"; then + prev=$p + continue + fi + + # Expand the sysroot to ease extracting the directories later. + if test -z "$prev"; then + case $p in + -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; + -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; + -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; + esac + fi + case $p in + =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; + esac + if test no = "$pre_test_object_deps_done"; then + case $prev in + -L | -R) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then + _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p + else + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$_LT_TAGVAR(postdeps, $1)"; then + _LT_TAGVAR(postdeps, $1)=$prev$p + else + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" + fi + fi + prev= + ;; + + *.lto.$objext) ;; # Ignore GCC LTO objects + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test no = "$pre_test_object_deps_done"; then + if test -z "$_LT_TAGVAR(predep_objects, $1)"; then + _LT_TAGVAR(predep_objects, $1)=$p + else + _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" + fi + else + if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then + _LT_TAGVAR(postdep_objects, $1)=$p + else + _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling $1 test program" +fi + +$RM -f confest.$objext +CFLAGS=$_lt_libdeps_save_CFLAGS + +# PORTME: override above test on systems where it is broken +m4_if([$1], [CXX], +[case $host_os in +interix[[3-9]]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + _LT_TAGVAR(predep_objects,$1)= + _LT_TAGVAR(postdep_objects,$1)= + _LT_TAGVAR(postdeps,$1)= + ;; +esac +]) + +case " $_LT_TAGVAR(postdeps, $1) " in +*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; +esac + _LT_TAGVAR(compiler_lib_search_dirs, $1)= +if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` +fi +_LT_TAGDECL([], [compiler_lib_search_dirs], [1], + [The directories searched by this compiler when creating a shared library]) +_LT_TAGDECL([], [predep_objects], [1], + [Dependencies to place before and after the objects being linked to + create a shared library]) +_LT_TAGDECL([], [postdep_objects], [1]) +_LT_TAGDECL([], [predeps], [1]) +_LT_TAGDECL([], [postdeps], [1]) +_LT_TAGDECL([], [compiler_lib_search_path], [1], + [The library search path used internally by the compiler when linking + a shared library]) +])# _LT_SYS_HIDDEN_LIBDEPS + + +# _LT_LANG_F77_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a Fortran 77 compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to 'libtool'. +m4_defun([_LT_LANG_F77_CONFIG], +[AC_LANG_PUSH(Fortran 77) +if test -z "$F77" || test no = "$F77"; then + _lt_disable_F77=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for f77 test sources. +ac_ext=f + +# Object file extension for compiled f77 test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the F77 compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test yes != "$_lt_disable_F77"; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${F77-"f77"} + CFLAGS=$FFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + GCC=$G77 + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test no = "$can_build_shared" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test yes = "$enable_shared" && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test yes = "$enable_shared" || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)=$G77 + _LT_TAGVAR(LD, $1)=$LD + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS +fi # test yes != "$_lt_disable_F77" + +AC_LANG_POP +])# _LT_LANG_F77_CONFIG + + +# _LT_LANG_FC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for a Fortran compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to 'libtool'. +m4_defun([_LT_LANG_FC_CONFIG], +[AC_LANG_PUSH(Fortran) + +if test -z "$FC" || test no = "$FC"; then + _lt_disable_FC=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for fc test sources. +ac_ext=${ac_fc_srcext-f} + +# Object file extension for compiled fc test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the FC compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test yes != "$_lt_disable_FC"; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${FC-"f95"} + CFLAGS=$FCFLAGS + compiler=$CC + GCC=$ac_cv_fc_compiler_gnu + + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test no = "$can_build_shared" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test yes = "$enable_shared" && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test yes = "$enable_shared" || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu + _LT_TAGVAR(LD, $1)=$LD + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS +fi # test yes != "$_lt_disable_FC" + +AC_LANG_POP +])# _LT_LANG_FC_CONFIG + + +# _LT_LANG_GCJ_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Java Compiler compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to 'libtool'. +m4_defun([_LT_LANG_GCJ_CONFIG], +[AC_REQUIRE([LT_PROG_GCJ])dnl +AC_LANG_SAVE + +# Source file extension for Java test sources. +ac_ext=java + +# Object file extension for compiled Java test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="class foo {}" + +# Code to be used in simple link tests +lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GCJ-"gcj"} +CFLAGS=$GCJFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)=$LD +_LT_CC_BASENAME([$compiler]) + +# GCJ did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GCJ_CONFIG + + +# _LT_LANG_GO_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Go compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to 'libtool'. +m4_defun([_LT_LANG_GO_CONFIG], +[AC_REQUIRE([LT_PROG_GO])dnl +AC_LANG_SAVE + +# Source file extension for Go test sources. +ac_ext=go + +# Object file extension for compiled Go test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="package main; func main() { }" + +# Code to be used in simple link tests +lt_simple_link_test_code='package main; func main() { }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GOC-"gccgo"} +CFLAGS=$GOFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)=$LD +_LT_CC_BASENAME([$compiler]) + +# Go did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GO_CONFIG + + +# _LT_LANG_RC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for the Windows resource compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to 'libtool'. +m4_defun([_LT_LANG_RC_CONFIG], +[AC_REQUIRE([LT_PROG_RC])dnl +AC_LANG_SAVE + +# Source file extension for RC test sources. +ac_ext=rc + +# Object file extension for compiled RC test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' + +# Code to be used in simple link tests +lt_simple_link_test_code=$lt_simple_compile_test_code + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC= +CC=${RC-"windres"} +CFLAGS= +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_CC_BASENAME([$compiler]) +_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + +if test -n "$compiler"; then + : + _LT_CONFIG($1) +fi + +GCC=$lt_save_GCC +AC_LANG_RESTORE +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_RC_CONFIG + + +# LT_PROG_GCJ +# ----------- +AC_DEFUN([LT_PROG_GCJ], +[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], + [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], + [AC_CHECK_TOOL(GCJ, gcj,) + test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" + AC_SUBST(GCJFLAGS)])])[]dnl +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_GCJ], []) + + +# LT_PROG_GO +# ---------- +AC_DEFUN([LT_PROG_GO], +[AC_CHECK_TOOL(GOC, gccgo,) +]) + + +# LT_PROG_RC +# ---------- +AC_DEFUN([LT_PROG_RC], +[AC_CHECK_TOOL(RC, windres,) +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_RC], []) + + +# _LT_DECL_EGREP +# -------------- +# If we don't have a new enough Autoconf to choose the best grep +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_EGREP], +[AC_REQUIRE([AC_PROG_EGREP])dnl +AC_REQUIRE([AC_PROG_FGREP])dnl +test -z "$GREP" && GREP=grep +_LT_DECL([], [GREP], [1], [A grep program that handles long lines]) +_LT_DECL([], [EGREP], [1], [An ERE matcher]) +_LT_DECL([], [FGREP], [1], [A literal string matcher]) +dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too +AC_SUBST([GREP]) +]) + + +# _LT_DECL_OBJDUMP +# -------------- +# If we don't have a new enough Autoconf to choose the best objdump +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_OBJDUMP], +[AC_CHECK_TOOL(OBJDUMP, objdump, false) +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) +AC_SUBST([OBJDUMP]) +]) + +# _LT_DECL_DLLTOOL +# ---------------- +# Ensure DLLTOOL variable is set. +m4_defun([_LT_DECL_DLLTOOL], +[AC_CHECK_TOOL(DLLTOOL, dlltool, false) +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program]) +AC_SUBST([DLLTOOL]) +]) + +# _LT_DECL_SED +# ------------ +# Check for a fully-functional sed program, that truncates +# as few characters as possible. Prefer GNU sed if found. +m4_defun([_LT_DECL_SED], +[AC_PROG_SED +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" +_LT_DECL([], [SED], [1], [A sed program that does not truncate output]) +_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], + [Sed that helps us avoid accidentally triggering echo(1) options like -n]) +])# _LT_DECL_SED + +m4_ifndef([AC_PROG_SED], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_SED. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ + +m4_defun([AC_PROG_SED], +[AC_MSG_CHECKING([for a sed that does not truncate output]) +AC_CACHE_VAL(lt_cv_path_SED, +[# Loop through the user's path and test for sed and gsed. +# Then use that list of sed's as ones to test for truncation. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for lt_ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then + lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" + fi + done + done +done +IFS=$as_save_IFS +lt_ac_max=0 +lt_ac_count=0 +# Add /usr/xpg4/bin/sed as it is typically found on Solaris +# along with /bin/sed that truncates output. +for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do + test ! -f "$lt_ac_sed" && continue + cat /dev/null > conftest.in + lt_ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >conftest.in + # Check for GNU sed and select it if it is found. + if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then + lt_cv_path_SED=$lt_ac_sed + break + fi + while true; do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo >>conftest.nl + $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break + cmp -s conftest.out conftest.nl || break + # 10000 chars as input seems more than enough + test 10 -lt "$lt_ac_count" && break + lt_ac_count=`expr $lt_ac_count + 1` + if test "$lt_ac_count" -gt "$lt_ac_max"; then + lt_ac_max=$lt_ac_count + lt_cv_path_SED=$lt_ac_sed + fi + done +done +]) +SED=$lt_cv_path_SED +AC_SUBST([SED]) +AC_MSG_RESULT([$SED]) +])#AC_PROG_SED +])#m4_ifndef + +# Old name: +AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_SED], []) + + +# _LT_CHECK_SHELL_FEATURES +# ------------------------ +# Find out whether the shell is Bourne or XSI compatible, +# or has some other useful features. +m4_defun([_LT_CHECK_SHELL_FEATURES], +[if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi +_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac +_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl +_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl +])# _LT_CHECK_SHELL_FEATURES + + +# _LT_PATH_CONVERSION_FUNCTIONS +# ----------------------------- +# Determine what file name conversion functions should be used by +# func_to_host_file (and, implicitly, by func_to_host_path). These are needed +# for certain cross-compile configurations and native mingw. +m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_MSG_CHECKING([how to convert $build file names to $host format]) +AC_CACHE_VAL(lt_cv_to_host_file_cmd, +[case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac +]) +to_host_file_cmd=$lt_cv_to_host_file_cmd +AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) +_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], + [0], [convert $build file names to $host format])dnl + +AC_MSG_CHECKING([how to convert $build file names to toolchain format]) +AC_CACHE_VAL(lt_cv_to_tool_file_cmd, +[#assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac +]) +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) +_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], + [0], [convert $build files to toolchain format])dnl +])# _LT_PATH_CONVERSION_FUNCTIONS diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/localias.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/localias.m4 new file mode 100644 index 0000000..daefffb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/localias.m4 @@ -0,0 +1,26 @@ +## Locale alias location. This file is in public domain. +## Defines: +## HAVE_LOCALE_ALIAS when locale.alias is found +## LOCALE_ALIAS_PATH to path to locale.alias (has sense iff HAVE_LOCALE_ALIAS) +AC_DEFUN([ye_PATH_LOCALE_ALIAS], +[dnl Check for locale.alias +locale_alias_ok=no +if test "$ac_cv_func_setlocale" = yes; then + AC_CACHE_CHECK([for locale.alias], + yeti_cv_file_locale_alias, + for yeti_ac_tmp in /usr/share/locale /usr/local/share/locale /etc /usr/lib/X11/locale /usr/X11/lib/locale; do + if test -f "$yeti_ac_tmp/locale.alias"; then + yeti_cv_file_locale_alias="$yeti_ac_tmp/locale.alias" + break + fi + if test -f "$yeti_ac_tmp/locale.aliases"; then + yeti_cv_file_locale_alias="$yeti_ac_tmp/locale.aliases" + break + fi + done) + if test -n "$yeti_cv_file_locale_alias"; then + locale_alias_ok=yes + AC_DEFINE(HAVE_LOCALE_ALIAS,1,[Define if you have locale.alias file.]) + AC_DEFINE_UNQUOTED(LOCALE_ALIAS_PATH,"$yeti_cv_file_locale_alias",[Define to the path to locale.alias file.]) + fi +fi]) diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/long-text.l2 b/wlx/wayland_qt_base/build/enca-1.19/m4/long-text.l2 new file mode 100644 index 0000000..fb28035 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/long-text.l2 @@ -0,0 +1,61 @@ +3. kapitola + +Stopav prvodce po Galaxii ml v dob, kter z legrace kme minulost, hodn +co ct k problmu paralelnch vesmr. Pro vechny, kdo nedosahuj rovn +Zkuenho Boha, je z toho ovem srozumiteln velmi mlo. A ponvad je nyn +prokzno, e vichni znm bohov vznikli dobrou tmiliontinu vteiny po +zatku vesmru, a ne minul tden, jak obvykle tvrdvali, ek je u tak hodn +vysvtlovn, take k zleitostem kosmologie se te nedostanou. + Prvodce na tma paraleln vesmry sdluje i jednu povzbudivou vc, a sice +nemte nejmen anci to pochopit. A tak nemuste mt strach, e se ztrapnte, a +klidn mete kat 'Prosm?' a 'Coe?' a tpat a podle libosti plcat nesmysly. + Pedn je poteba si v souvislosti s paralelnmi vesmry uvdomit, uvd +Prvodce, e nejsou paraleln. + Dle je dleit si uvdomit, e to v pesnm slova smyslu nejsou vesmry, +ale nejlep bude, kdy se budete snait si toto uvdomit a trochu pozdji, a +si uvdomte, e vechno, co jste si a do tto chvle uvdomili, je nepravdiv. + Dvodem, pro to nejsou vesmry, je to, e dn konkrtn vesmr vlastn +neexistuje jako takov, jako jedna vc, ale je to zpsob, jakm pohlme na to, +emu se odborn k NVM, neboli 'Naprost a veobecn mima'. Naprost a +veobecn mima tak ve skutenosti neexistuje. Je to prost souet vech +rozdlnch nhled na nj, kter by se vyskytly, kdyby existoval. + Dvodem, pro nejsou paraleln, je tent dvod, ze kterho nen paraleln +moe. Nem to dn vznam. A rozlente Naprost a veobecn mima jakkoli, +vdycky vm vyjde nco, emu nkdo bude kat domov. + Prosm, poslute si a klidn plcejte nesmysly. + + Do Zem, kter ns te zajm pro svou specifickou polohu v Naprostm a +veobecnm mimai, narazilo neutrino, kter nenarazilo do jinch Zem. + Neutrino nen velk. + V podstat tko pijdete na nco menho, co vs me jak tak +zashnout. A ne e by nraz neutrina do objektu zvcho velikosti Zem byl sm o +sob njakou extra zvltnost. Kdepak. Extra zvltn by byla ta nanosekunda, +pi n by Zemi nezashlo nkolik miliard letcch neutrin. + Samozejm e vechno zle na tom, co si pedstavte pod pojmem +'narazit', kdy uvte, e se ta vcika neskld u skoro vbec z nieho. +ance, e se neutrino na cest nedozrnou przdnotou opravdu do neho tref, +jsou zhruba podobn, jako kdy v libovolnm okamiku spadne z letcho Boeingu +kulikov loisko a tref, eknme, sendvi s vajkem. + Ale zptky k vci. Toto neutrino nco zashlo. Mete namtnout: Co to je +v porovnn s celm tm nedozrnem? Ale takov nmitka m hek - je to toti +tchoovina na entou. Jakmile se toti nco stane v nem tak sloitm, jako je +vesmr, Kevin v, k emu vemu to povede - kde 'Kevin' je jakkoli nhodn +bytost, kter nev nic 'o niem'. + Toto neutrino zashlo atom. + Atom byl st molekuly. Molekula byla st nukleov kyseliny. Nukleov +kyselina byla st genu. Gen byl st genetick vbavy rstu... a tak dle. V +konenm dsledku to vedlo k tomu, e jedn rostlin narostl list navc. V +Essexu. Lpe eeno tam, kde po veker mraven prci a pekonn loklnch +problm geologick povahy, bude Essex. + Tou rostlinou byl jetel. Nesmrn inn rozhazoval po okol sv st, +nebo sp semnka, a brzy se stal dominantnm typem jetele. Pesn pinn +spojitost mezi tmto nhodnm biologickm vskytem a nkolika jinmi drobnmi +odchylkami, kter v tom dleku Naprostho a veobecnho mimae existuj +napklad nevydaen odlet Tricie McMillanov se Zafodem Bblbroxem, abnormln +patn odbyt zmrzliny s pchut pekanovch ok a skutenost, e Zemi, na +kter se toto vechno nachzelo, nezniili Vogoni kvli vstavb novho +hyperprostorovho obchvatu - je te na seznamu vzkumnch projekt seazench +podle dleitosti na katede historie Maximegalonsk univerzity (vlastn tam, +kde kdysi bvala) na pce slo 4 763 984 132, a nikdo z tch, kdo se v tto +chvli astn u baznu modlitby, nem, zd se, pocit, e je teba ten problm +urychlen eit. diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/ltoptions.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/ltoptions.m4 new file mode 100644 index 0000000..94b0829 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/ltoptions.m4 @@ -0,0 +1,437 @@ +# Helper functions for option handling. -*- Autoconf -*- +# +# Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software +# Foundation, Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 8 ltoptions.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) + + +# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) +# ------------------------------------------ +m4_define([_LT_MANGLE_OPTION], +[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) + + +# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) +# --------------------------------------- +# Set option OPTION-NAME for macro MACRO-NAME, and if there is a +# matching handler defined, dispatch to it. Other OPTION-NAMEs are +# saved as a flag. +m4_define([_LT_SET_OPTION], +[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl +m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), + _LT_MANGLE_DEFUN([$1], [$2]), + [m4_warning([Unknown $1 option '$2'])])[]dnl +]) + + +# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) +# ------------------------------------------------------------ +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +m4_define([_LT_IF_OPTION], +[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) + + +# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) +# ------------------------------------------------------- +# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME +# are set. +m4_define([_LT_UNLESS_OPTIONS], +[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), + [m4_define([$0_found])])])[]dnl +m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 +])[]dnl +]) + + +# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) +# ---------------------------------------- +# OPTION-LIST is a space-separated list of Libtool options associated +# with MACRO-NAME. If any OPTION has a matching handler declared with +# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about +# the unknown option and exit. +m4_defun([_LT_SET_OPTIONS], +[# Set options +m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [_LT_SET_OPTION([$1], _LT_Option)]) + +m4_if([$1],[LT_INIT],[ + dnl + dnl Simply set some default values (i.e off) if boolean options were not + dnl specified: + _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no + ]) + _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no + ]) + dnl + dnl If no reference was made to various pairs of opposing options, then + dnl we run the default mode handler for the pair. For example, if neither + dnl 'shared' nor 'disable-shared' was passed, we enable building of shared + dnl archives by default: + _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) + _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], + [_LT_ENABLE_FAST_INSTALL]) + _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4], + [_LT_WITH_AIX_SONAME([aix])]) + ]) +])# _LT_SET_OPTIONS + + +## --------------------------------- ## +## Macros to handle LT_INIT options. ## +## --------------------------------- ## + +# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) +# ----------------------------------------- +m4_define([_LT_MANGLE_DEFUN], +[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) + + +# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) +# ----------------------------------------------- +m4_define([LT_OPTION_DEFINE], +[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl +])# LT_OPTION_DEFINE + + +# dlopen +# ------ +LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes +]) + +AU_DEFUN([AC_LIBTOOL_DLOPEN], +[_LT_SET_OPTION([LT_INIT], [dlopen]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the 'dlopen' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) + + +# win32-dll +# --------- +# Declare package support for building win32 dll's. +LT_OPTION_DEFINE([LT_INIT], [win32-dll], +[enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) + AC_CHECK_TOOL(AS, as, false) + AC_CHECK_TOOL(DLLTOOL, dlltool, false) + AC_CHECK_TOOL(OBJDUMP, objdump, false) + ;; +esac + +test -z "$AS" && AS=as +_LT_DECL([], [AS], [1], [Assembler program])dnl + +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl + +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl +])# win32-dll + +AU_DEFUN([AC_LIBTOOL_WIN32_DLL], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +_LT_SET_OPTION([LT_INIT], [win32-dll]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the 'win32-dll' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) + + +# _LT_ENABLE_SHARED([DEFAULT]) +# ---------------------------- +# implement the --enable-shared flag, and supports the 'shared' and +# 'disable-shared' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. +m4_define([_LT_ENABLE_SHARED], +[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([shared], + [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], + [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for pkg in $enableval; do + IFS=$lt_save_ifs + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS=$lt_save_ifs + ;; + esac], + [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) + + _LT_DECL([build_libtool_libs], [enable_shared], [0], + [Whether or not to build shared libraries]) +])# _LT_ENABLE_SHARED + +LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) +]) + +AC_DEFUN([AC_DISABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], [disable-shared]) +]) + +AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) +AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_SHARED], []) +dnl AC_DEFUN([AM_DISABLE_SHARED], []) + + + +# _LT_ENABLE_STATIC([DEFAULT]) +# ---------------------------- +# implement the --enable-static flag, and support the 'static' and +# 'disable-static' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. +m4_define([_LT_ENABLE_STATIC], +[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([static], + [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], + [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for pkg in $enableval; do + IFS=$lt_save_ifs + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS=$lt_save_ifs + ;; + esac], + [enable_static=]_LT_ENABLE_STATIC_DEFAULT) + + _LT_DECL([build_old_libs], [enable_static], [0], + [Whether or not to build static libraries]) +])# _LT_ENABLE_STATIC + +LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) +]) + +AC_DEFUN([AC_DISABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], [disable-static]) +]) + +AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) +AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_STATIC], []) +dnl AC_DEFUN([AM_DISABLE_STATIC], []) + + + +# _LT_ENABLE_FAST_INSTALL([DEFAULT]) +# ---------------------------------- +# implement the --enable-fast-install flag, and support the 'fast-install' +# and 'disable-fast-install' LT_INIT options. +# DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. +m4_define([_LT_ENABLE_FAST_INSTALL], +[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([fast-install], + [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], + [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for pkg in $enableval; do + IFS=$lt_save_ifs + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS=$lt_save_ifs + ;; + esac], + [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) + +_LT_DECL([fast_install], [enable_fast_install], [0], + [Whether or not to optimize for fast installation])dnl +])# _LT_ENABLE_FAST_INSTALL + +LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) + +# Old names: +AU_DEFUN([AC_ENABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the 'fast-install' option into LT_INIT's first parameter.]) +]) + +AU_DEFUN([AC_DISABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the 'disable-fast-install' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) +dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) + + +# _LT_WITH_AIX_SONAME([DEFAULT]) +# ---------------------------------- +# implement the --with-aix-soname flag, and support the `aix-soname=aix' +# and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT +# is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'. +m4_define([_LT_WITH_AIX_SONAME], +[m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl +shared_archive_member_spec= +case $host,$enable_shared in +power*-*-aix[[5-9]]*,yes) + AC_MSG_CHECKING([which variant of shared library versioning to provide]) + AC_ARG_WITH([aix-soname], + [AS_HELP_STRING([--with-aix-soname=aix|svr4|both], + [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], + [case $withval in + aix|svr4|both) + ;; + *) + AC_MSG_ERROR([Unknown argument to --with-aix-soname]) + ;; + esac + lt_cv_with_aix_soname=$with_aix_soname], + [AC_CACHE_VAL([lt_cv_with_aix_soname], + [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT) + with_aix_soname=$lt_cv_with_aix_soname]) + AC_MSG_RESULT([$with_aix_soname]) + if test aix != "$with_aix_soname"; then + # For the AIX way of multilib, we name the shared archive member + # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', + # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. + # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, + # the AIX toolchain works better with OBJECT_MODE set (default 32). + if test 64 = "${OBJECT_MODE-32}"; then + shared_archive_member_spec=shr_64 + else + shared_archive_member_spec=shr + fi + fi + ;; +*) + with_aix_soname=aix + ;; +esac + +_LT_DECL([], [shared_archive_member_spec], [0], + [Shared archive member basename, for filename based shared library versioning on AIX])dnl +])# _LT_WITH_AIX_SONAME + +LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) +LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) +LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) + + +# _LT_WITH_PIC([MODE]) +# -------------------- +# implement the --with-pic flag, and support the 'pic-only' and 'no-pic' +# LT_INIT options. +# MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. +m4_define([_LT_WITH_PIC], +[AC_ARG_WITH([pic], + [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], + [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], + [lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for lt_pkg in $withval; do + IFS=$lt_save_ifs + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS=$lt_save_ifs + ;; + esac], + [pic_mode=m4_default([$1], [default])]) + +_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl +])# _LT_WITH_PIC + +LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) + +# Old name: +AU_DEFUN([AC_LIBTOOL_PICMODE], +[_LT_SET_OPTION([LT_INIT], [pic-only]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the 'pic-only' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) + +## ----------------- ## +## LTDL_INIT Options ## +## ----------------- ## + +m4_define([_LTDL_MODE], []) +LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], + [m4_define([_LTDL_MODE], [nonrecursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [recursive], + [m4_define([_LTDL_MODE], [recursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [subproject], + [m4_define([_LTDL_MODE], [subproject])]) + +m4_define([_LTDL_TYPE], []) +LT_OPTION_DEFINE([LTDL_INIT], [installable], + [m4_define([_LTDL_TYPE], [installable])]) +LT_OPTION_DEFINE([LTDL_INIT], [convenience], + [m4_define([_LTDL_TYPE], [convenience])]) diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/ltsugar.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/ltsugar.m4 new file mode 100644 index 0000000..48bc934 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/ltsugar.m4 @@ -0,0 +1,124 @@ +# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- +# +# Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software +# Foundation, Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 6 ltsugar.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) + + +# lt_join(SEP, ARG1, [ARG2...]) +# ----------------------------- +# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their +# associated separator. +# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier +# versions in m4sugar had bugs. +m4_define([lt_join], +[m4_if([$#], [1], [], + [$#], [2], [[$2]], + [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) +m4_define([_lt_join], +[m4_if([$#$2], [2], [], + [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) + + +# lt_car(LIST) +# lt_cdr(LIST) +# ------------ +# Manipulate m4 lists. +# These macros are necessary as long as will still need to support +# Autoconf-2.59, which quotes differently. +m4_define([lt_car], [[$1]]) +m4_define([lt_cdr], +[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], + [$#], 1, [], + [m4_dquote(m4_shift($@))])]) +m4_define([lt_unquote], $1) + + +# lt_append(MACRO-NAME, STRING, [SEPARATOR]) +# ------------------------------------------ +# Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'. +# Note that neither SEPARATOR nor STRING are expanded; they are appended +# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). +# No SEPARATOR is output if MACRO-NAME was previously undefined (different +# than defined and empty). +# +# This macro is needed until we can rely on Autoconf 2.62, since earlier +# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. +m4_define([lt_append], +[m4_define([$1], + m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) + + + +# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) +# ---------------------------------------------------------- +# Produce a SEP delimited list of all paired combinations of elements of +# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list +# has the form PREFIXmINFIXSUFFIXn. +# Needed until we can rely on m4_combine added in Autoconf 2.62. +m4_define([lt_combine], +[m4_if(m4_eval([$# > 3]), [1], + [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl +[[m4_foreach([_Lt_prefix], [$2], + [m4_foreach([_Lt_suffix], + ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, + [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) + + +# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) +# ----------------------------------------------------------------------- +# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited +# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. +m4_define([lt_if_append_uniq], +[m4_ifdef([$1], + [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], + [lt_append([$1], [$2], [$3])$4], + [$5])], + [lt_append([$1], [$2], [$3])$4])]) + + +# lt_dict_add(DICT, KEY, VALUE) +# ----------------------------- +m4_define([lt_dict_add], +[m4_define([$1($2)], [$3])]) + + +# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) +# -------------------------------------------- +m4_define([lt_dict_add_subkey], +[m4_define([$1($2:$3)], [$4])]) + + +# lt_dict_fetch(DICT, KEY, [SUBKEY]) +# ---------------------------------- +m4_define([lt_dict_fetch], +[m4_ifval([$3], + m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), + m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) + + +# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) +# ----------------------------------------------------------------- +m4_define([lt_if_dict_fetch], +[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], + [$5], + [$6])]) + + +# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) +# -------------------------------------------------------------- +m4_define([lt_dict_filter], +[m4_if([$5], [], [], + [lt_join(m4_quote(m4_default([$4], [[, ]])), + lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), + [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl +]) diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/ltversion.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/ltversion.m4 new file mode 100644 index 0000000..fa04b52 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/ltversion.m4 @@ -0,0 +1,23 @@ +# ltversion.m4 -- version numbers -*- Autoconf -*- +# +# Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# @configure_input@ + +# serial 4179 ltversion.m4 +# This file is part of GNU Libtool + +m4_define([LT_PACKAGE_VERSION], [2.4.6]) +m4_define([LT_PACKAGE_REVISION], [2.4.6]) + +AC_DEFUN([LTVERSION_VERSION], +[macro_version='2.4.6' +macro_revision='2.4.6' +_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) +_LT_DECL(, macro_revision, 0) +]) diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/lt~obsolete.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/lt~obsolete.m4 new file mode 100644 index 0000000..c6b26f8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/lt~obsolete.m4 @@ -0,0 +1,99 @@ +# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- +# +# Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software +# Foundation, Inc. +# Written by Scott James Remnant, 2004. +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 5 lt~obsolete.m4 + +# These exist entirely to fool aclocal when bootstrapping libtool. +# +# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN), +# which have later been changed to m4_define as they aren't part of the +# exported API, or moved to Autoconf or Automake where they belong. +# +# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN +# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us +# using a macro with the same name in our local m4/libtool.m4 it'll +# pull the old libtool.m4 in (it doesn't see our shiny new m4_define +# and doesn't know about Autoconf macros at all.) +# +# So we provide this file, which has a silly filename so it's always +# included after everything else. This provides aclocal with the +# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything +# because those macros already exist, or will be overwritten later. +# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. +# +# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. +# Yes, that means every name once taken will need to remain here until +# we give up compatibility with versions before 1.7, at which point +# we need to keep only those names which we still refer to. + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) + +m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) +m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) +m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) +m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) +m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) +m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) +m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) +m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) +m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) +m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) +m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) +m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) +m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) +m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) +m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) +m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) +m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) +m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) +m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) +m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) +m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) +m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) +m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) +m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) +m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) +m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) +m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) +m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) +m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) +m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) +m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) +m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) +m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) +m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) +m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) +m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) +m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) +m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) +m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) +m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) +m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) +m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) +m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) +m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) +m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) +m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) +m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) +m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) +m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) +m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) +m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/recode-bugs.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/recode-bugs.m4 new file mode 100644 index 0000000..ba309cd --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/recode-bugs.m4 @@ -0,0 +1,156 @@ +## GNU recode well-known bugs test. This file is in public domain. +## Defines: +## RECODE_PROG_BUGGY when at least one of the bugs is present +## +## Checks for: +## whether conversion to UTF-7 loses the `-' in `+-' +## (reported in Feb 2001) +## whether recode crashes on i/o errors +## (reported in Feb 2001) +## whether conversion to UCS*/CRLF forgets the last EOL +## (reported in Mar 2001) +## whether conversion to UTF-8 corrupts files +## (reported in Mar 2001) +## whether recode crashes on TeX/..ISO-8859-2 conversions +## (reported in Jul 2001) +## whether recode MacCE map is broken for Latvian +## whether recode built-in KOI8-U map is broken +## whether recode ISO8859-13 to Unicode map is broken. + +## GNU recode broken test. +## Prints a warning for broken recode -- no sensible workaround known ;-( +## Maybe we should at least not to use recode for some conversions. +## Defines: +## RECODE_PROG_BUGGY when at least one of the bugs is present +AC_DEFUN([ye_RECODE_BROKEN], +[dnl Check for recode bugs and print a warning if found. +ye_RECODE_BROKEN_UTF8PM +if test "$yeti_cv_prog_recode_utf7pm" = "yes"; then yeti_recode_buggy=yes; fi +ye_RECODE_BROKEN_IOSEGV +if test "$yeti_cv_prog_recode_iosegv" = "yes"; then yeti_recode_buggy=yes; fi +ye_RECODE_BROKEN_UCSCRLF +if test "$yeti_cv_prog_recode_ucscrlf" = "yes"; then yeti_recode_buggy=yes; fi +ye_RECODE_BROKEN_UTF8CORR +if test "$yeti_cv_prog_recode_utf8corr" = "yes"; then yeti_recode_buggy=yes; fi +ye_RECODE_BROKEN_TEXL2SEGV +if test "$yeti_cv_prog_recode_texl2segv" = "yes"; then yeti_recode_buggy=yes; fi +ye_RECODE_BROKEN_MACCELV +if test "$yeti_cv_prog_recode_maccelv" = "yes"; then yeti_recode_buggy=yes; fi +ye_RECODE_BROKEN_KOI8U +if test "$yeti_cv_prog_recode_koi8u" = "yes"; then yeti_recode_buggy=yes; fi +ye_RECODE_BROKEN_ISO885913 +if test "$yeti_cv_prog_recode_iso885913" = "yes"; then yeti_recode_buggy=yes; fi +if test "$yeti_recode_buggy" = "yes"; then + AC_DEFINE(RECODE_PROG_BUGGY,1,[Define if the recode recoder is incredibily buggy.]) +fi]) + +## GNU recode bug test +AC_DEFUN([ye_RECODE_BROKEN_UTF8PM], +[dnl Check whether conversion to UTF-7 loses the - in +- +AC_CACHE_CHECK([whether recode loses - in +- in to-UTF-7 conversion], + yeti_cv_prog_recode_utf7pm, + if test "`echo +- | recode l1..utf7 | recode utf7..l1`" = "+-"; then + yeti_cv_prog_recode_utf7pm=no + else + yeti_cv_prog_recode_utf7pm=yes + fi) +]) + +## GNU recode bug test +AC_DEFUN([ye_RECODE_BROKEN_IOSEGV], +[dnl Check whether recode crashes on i/o errors +dnl FIXME: this obviously can't work when one is root! +AC_CACHE_CHECK([whether recode crashes on i/o errors], + yeti_cv_prog_recode_iosegv, + rm -f core* + mkdir ac_tmp_dir + echo >ac_tmp_dir/ac_tmp.txt + chmod 0555 ac_tmp_dir + yeti_cv_prog_recode_iosegv=no + { recode l2..ascii ac_tmp_dir/ac_tmp.txt; } 2>&5 || yeti_cv_prog_recode_iosegv=yes + if test -n "`ls | grep '^core\(\.[0-9]\+\)\?'`"; then + yeti_cv_prog_recode_iosegv=yes + fi + rm -f core* + chmod 0777 ac_tmp_dir + rm -f ac_tmp_dir/ac_tmp.txt + rmdir ac_tmp_dir) +]) + +## GNU recode bug test +AC_DEFUN([ye_RECODE_BROKEN_UCSCRLF], +[dnl Check whether conversion to UCS*/CRLF forgets the last EOL +AC_CACHE_CHECK([whether conversion to UCS/CRLF results in odd-sized files], + yeti_cv_prog_recode_ucscrlf, + if test "`echo | recode l2..ucs2/crlf | wc -c | sed -e 's: ::g'`" = "5"; then + yeti_cv_prog_recode_ucscrlf=yes + else + yeti_cv_prog_recode_ucscrlf=no + fi) +]) + +## GNU recode bug test +AC_DEFUN([ye_RECODE_BROKEN_UTF8CORR], +[dnl Check whether conversion to UTF-8 corrupts files +AC_CACHE_CHECK([whether conversion to UTF-8 corrupts files], + yeti_cv_prog_recode_utf8corr, + recode l2..utf8 <$srcdir/m4/long-text.l2 | recode utf8..l2 >ac_tmp.txt + if diff ac_tmp.txt $srcdir/m4/long-text.l2 1>&5 2>&5; then + yeti_cv_prog_recode_utf8corr=no + else + yeti_cv_prog_recode_utf8corr=yes + fi + rm -f ac_tmp.txt) +]) + +## GNU recode bug test +AC_DEFUN([ye_RECODE_BROKEN_TEXL2SEGV], +[dnl Check whether recode crashes on TeX/..ISO-8859-2 conversion +AC_CACHE_CHECK([whether recode crashes on TeX/..ISO-8859-2 conversions], + yeti_cv_prog_recode_texl2segv, + rm -f core* crash-me-a crash-me-b + cat $srcdir/m4/crash-me >crash-me-a + cat $srcdir/m4/crash-me >crash-me-b + yeti_cv_prog_recode_texl2segv=no + { recode TeX/..ISO-8859-2 crash-me-a crash-me-b; } 2>&5 || yeti_cv_prog_recode_texl2segv=yes + if test -n "`ls | grep '^core\(\.[0-9]\+\)\?'`"; then + yeti_cv_prog_recode_texl2segv=yes + fi + rm -f core* crash-me-a crash-me-b) +]) + +## GNU recode bug test +AC_DEFUN([ye_RECODE_BROKEN_MACCELV], +[dnl Check whether recode MacCE map is broken for Latvian +AC_CACHE_CHECK([whether recode MacCE map is broken for Latvian], + yeti_cv_prog_recode_maccelv, + if test "`echo | recode 1257/..macce/`" != ""; then + yeti_cv_prog_recode_maccelv=yes + else + yeti_cv_prog_recode_maccelv=no + fi) +]) + +## GNU recode bug test +AC_DEFUN([ye_RECODE_BROKEN_KOI8U], +[dnl Check whether recode KOI8-U map is broken. +AC_CACHE_CHECK([whether recode built-in KOI8-U map is broken], + yeti_cv_prog_recode_koi8u, + if test "`echo | recode -x:libiconv: koi8u..iso88595`" != ""; then + yeti_cv_prog_recode_koi8u=yes + else + yeti_cv_prog_recode_koi8u=no + fi) +]) + +## GNU recode bug test +AC_DEFUN([ye_RECODE_BROKEN_ISO885913], +[dnl Check whether recode ISO8859-13 to Unicode map is broken. +AC_CACHE_CHECK([whether recode ISO8859-13 to Unicode map is broken], + yeti_cv_prog_recode_iso885913, + if test "`echo | recode iso8859-13..ucs2 | recode ucs2..l1`" = ""; then + yeti_cv_prog_recode_iso885913=yes + else + yeti_cv_prog_recode_iso885913=no + fi) +]) diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/tools.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/tools.m4 new file mode 100644 index 0000000..a9fb2c5 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/tools.m4 @@ -0,0 +1,18 @@ +## Some non-test macros. This file is in public domain. + +## Set directories containing automake m4 macros (bootstraping). +## Defines: (nothing) +dnl AM_ACLOCAL_INCLUDE(macrodir) +AC_DEFUN([AM_ACLOCAL_INCLUDE], +[dnl Append aclocal flags and then add all specified dirs. + test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" + for k in $1 ; do ACLOCAL="$ACLOCAL -I $k" ; done +]) + +## Print warning. +## Defines: (nothing) +AC_DEFUN([ye_WARN_FAIL], +[dnl Test if given variable is yes and possibly print warning. +if test "$1" != yes; then + AC_MSG_WARN(expect build to fail since we depend on $2) +fi]) diff --git a/wlx/wayland_qt_base/build/enca-1.19/m4/typevar.m4 b/wlx/wayland_qt_base/build/enca-1.19/m4/typevar.m4 new file mode 100644 index 0000000..66077eb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/m4/typevar.m4 @@ -0,0 +1,20 @@ +## `Small' checks for typedefs and variables. This file is in public domain. + +## program_invocation_short_name test. +## Defines: +## HAVE_PROGRAM_INVOCATION_SHORT_NAME when program_invocation_short_name is +## defined in errno.h +AC_DEFUN([ye_CHECK_VAR_PROGRAM_INVOCATION_SHORT_NAME], +[AC_REQUIRE([AC_PROG_CC])dnl +dnl + +dnl Check for program_invocation_short_name (present on GNU systems only?) +AC_CACHE_CHECK([for program_invocation_short_name], + yeti_cv_lib_c_program_invocation_short_name, + AC_TRY_LINK([#include ], + [if (!program_invocation_short_name) return 1;], + yeti_cv_lib_c_program_invocation_short_name=yes, + yeti_cv_lib_c_program_invocation_short_name=no)) +if test "$yeti_cv_lib_c_program_invocation_short_name" = yes; then + AC_DEFINE(HAVE_PROGRAM_INVOCATION_SHORT_NAME,1,[Define if you have program_invocation_short_name variable.]) +fi]) diff --git a/wlx/wayland_qt_base/build/enca-1.19/man/enca.1 b/wlx/wayland_qt_base/build/enca-1.19/man/enca.1 new file mode 100644 index 0000000..be2fccb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/man/enca.1 @@ -0,0 +1,887 @@ +.de XA +.RS +.PP +\\$1 +.RE +.PP +.. +.TH "enca" "1" "Sep 2009" "enca 1.11" " " +.SH "NAME" +.PP +enca \-\- detect and convert encoding of text files +. +. +.SH "SYNOPSIS" +.PP +\fBenca\fR [\fB\-L\fR \fILANGUAGE\fR] [\fIOPTION\fR]... [\fIFILE\fR]... +.br +\fBenconv\fR [\fB\-L\fR \fILANGUAGE\fR] [\fIOPTION\fR]... [\fIFILE\fR]... +. +.SH "INTRODUCTION AND EXAMPLES" +.PP +If you are lucky enough, the only two things you will ever need to know are: +command +.XA "enca \fIFILE\fR" +will tell you which encoding file \fIFILE\fR uses (without changing it), and +.XA "enconv \fIFILE\fR" +will convert file \fIFILE\fR to your locale native encoding. +To convert the file to some other encoding use the \fB-x\fR option +(see \fB\-x\fR entry in section \fBOPTIONS\fR and sections \fBCONVERSION\fR +and \fBENCODINGS\fR for details). +.PP +Both work with multiple files and standard input (output) too. +E.g. +.XA "enca \-x latin2 2,1) +/4321@Byte order reversed in quadruples (1,2,3,4 -> 4,3,2,1) +N.A.@Both little and big endian chunks, concatenated +/qp@Quoted-printable encoded +.TE +.PP +Note some surfaces have N.A. in place of identifier\-\-they +cannot be specified on command line, they can only be reported by Enca. +This is intentional because they only inform you why the file cannot be +considered surface-consistent instead of representing a real surface. +.PP +Each charset has its natural surface (called `implied' in recode) which is not +reported, e.g., for IBM 852 charset it's `CRLF line terminators'. +For UCS encodings, big endian is considered as natural surface; +unusual byte orders are constructed from 21 and 4321 permutations: +2143 is reported simply as 21, +while 3412 is reported as combination of 4321 and 21. +.PP +Doubly-encoded UTF-8 is neither charset nor surface, it's just reported. +.PP +. +.SS About charsets, encodings and surfaces +.PP +Charset is a set of character entities while encoding is its representation +in the terms of bytes and bits. +In Enca, the word \fIencoding\fR means the same as `representation of text', +i.e. the relation between sequence of character entities constituting the +text and sequence of bytes (bits) constituting the file. +.PP +So, encoding is both character set and so-called surface +(line terminators, byte order, combining, Base64 transformation, etc.). +Nevertheless, it proves convenient to work with some {charset,surface} pairs +as with genuine charsets. +So, as in \fIrecode\fR(1), all UCS- and UTF- encodings of Universal character +set are called charsets. +Please see recode documentation for more details of this issue. +.PP +The only good thing about surfaces is: when you don't start playing with +them, neither Enca won't start and it will try to behave as much as +possible as a surface-unaware program, even when talking to recode. +.PP +. +. +.SH "LANGUAGES" +.PP +Enca needs to know the language of input files to work reliably, at least +in case of regular 8bit encoding. +Multibyte encodings should be recognised for any Latin, Cyrillic or Greek +language. +.PP +You can (or have to) use \fB\-L\fR option to tell Enca the language. +Since people most often work with files in the same language for which they +have configured locales, Enca tries tries to guess the language by examining +value of \fBLC_CTYPE\fR and other locale categories +(please see \fIlocale\fR(7)) and using it for the +language when you don't specify any. +Of course, it may be completely wrong and will give you nonsense answers and +damage your files, so please don't forget to use the \fB\-L\fR option. +You can also use \fBENCAOPT\fR environment variable to set a default language +(see section \fBENVIRONMENT\fR). +.PP +Following languages are supported by Enca (each language is listed together +with supported 8bit encodings). +.PP +.TS +tab (@); +l l. +Belarusian @CP1251 IBM866 ISO\-8859\-5 KOI8\-UNI maccyr IBM855 +Bulgarian @CP1251 ISO\-8859\-5 IBM855 maccyr ECMA\-113 +Czech @ISO\-8859\-2 CP1250 IBM852 KEYBCS2 macce KOI\-8_CS_2 CORK +Estonian @ISO\-8859\-4 CP1257 IBM775 ISO\-8859\-13 macce baltic +Croatian @CP1250 ISO\-8859\-2 IBM852 macce CORK +Hungarian @ISO\-8859\-2 CP1250 IBM852 macce CORK +Lithuanian @CP1257 ISO\-8859\-4 IBM775 ISO\-8859\-13 macce baltic +Latvian @CP1257 ISO\-8859\-4 IBM775 ISO\-8859\-13 macce baltic +Polish @ISO\-8859\-2 CP1250 IBM852 macce ISO\-8859\-13 ISO\-8859\-16 baltic CORK +Russian @KOI8\-R CP1251 ISO\-8859\-5 IBM866 maccyr +Slovak @CP1250 ISO\-8859\-2 IBM852 KEYBCS2 macce KOI\-8_CS_2 CORK +Slovene @ISO\-8859\-2 CP1250 IBM852 macce CORK +Ukrainian @CP1251 IBM855 ISO\-8859\-5 CP1125 KOI8\-U maccyr +Chinese @GBK BIG5 HZ +none @ +.TE +.PP +The special language \fBnone\fR can be shortened to \fB__\fR, it +contains no 8bit encodings, so only multibyte encodings are detected. +.PP +You can also use locale names instead of languages: +.TS +tab (@); +l l. +Belarusian @be +Bulgarian @bg +Czech @cs +Estonian @et +Croatian @hr +Hungarian @hu +Lithuanian @lt +Latvian @lv +Polish @pl +Russian @ru +Slovak @sk +Slovene @sl +Ukrainian @uk +Chinese @zh +.TE +.PP +. +. +.SH "FEATURES" +.PP +Several Enca's features depend on what is available on your system and how +it was compiled. +You can get their list with +.XA "enca \-\-version" +Plus sign before a feature name means it's available, minus sign means +this build lacks the particular feature. +.PP +\fBlibrecode\-interface\fR. +Enca has interface to GNU recode library charset conversion functions. +.sp +\fBiconv\-interface\fR. +Enca has interface to UNIX98 iconv charset conversion functions. +.sp +\fBexternal\-converter\fR. +Enca can use external conversion programs (if you have some suitable +installed). +.sp +\fBlanguage\-detection\fR. +Enca tries to guess language (\fB\-L\fR) from locales. You don't need the +\fB\-\-language\fR option, at least in principle. +.sp +\fBlocale\-alias\fR. +Enca is able to decrypt locale aliases used for language names. +.sp +\fBtarget\-charset\-auto\fR. +Enca tries to detect your preferred charset from locales. +Option \fB\-\-auto\-convert\fR and calling Enca as \fBenconv\fR works, at +least in principle. +.sp +\fBENCAOPT\fR. +Enca is able to correctly parse this environment variable before command line +parameters. Simple stuff like \fBENCAOPT="\-L uk"\fR will work even without +this feature. +.PP +. +. +.SH "ENVIRONMENT" +.PP +The variable \fBENCAOPT\fR can hold set of default Enca options. +Its content is interpreted before command line arguments. +Unfortunately, this doesn't work everywhere (must have +ENCAOPT +feature). +.PP +\fBLC_CTYPE\fR, \fBLC_COLLATE\fR, \fBLC_MESSAGES\fR +(possibly inherited from \fBLC_ALL\fR or \fBLANG\fR) is used +for guessing your language (must have +language-detection feature). +.PP +The variable \fBDEFAULT_CHARSET\fR can be used by \fBenconv\fR as the default +target charset. +.PP +. +. +.SH "DIAGNOSTICS" +.PP +Enca returns exit code\~0 when all input files were successfully proceeded +(i.e. all encodings were detected and all files were converted to required +encoding, if conversion was asked for). +Exit code\~1 is returned when Enca wasn't able to either guess encoding or +perform conversion on any input file because it's not clever enough. +Exit code\~2 is returned in case of serious (e.g. I/O) troubles. +.PP +. +. +.SH "SECURITY" +.PP +It should be possible to let Enca work unattended, it's its goal. However: +.PP +There's no warranty the detection works 100%. Don't bet on it, you can easily +lose valuable data. +.PP +Don't use enca (the program), link to libenca instead if you want anything +resembling security. You have to perform the eventual conversion yourself +then. +.PP +Don't use external converters. Ideally, disable them compile-time. +.PP +Be aware of \fBENCAOPT\fR and all the built-in automagic guessing various +things from environment, namely locales. +.PP +. +. +.SH "SEE ALSO" +.PP +\fIautoconvert\fR(1), +\fIcstocs\fR(1), +\fIfile\fR(1), +\fIiconv\fR(1), +\fIiconv\fR(3), +\fInl_langinfo\fR(3), +\fImap\fR(1), +\fIpiconv\fR(1), +\fIrecode\fR(1), +\fIlocale\fR(5), +\fIlocale\fR(7), +\fIltt\fR(1), +\fIumap\fR(1), +\fIunicode\fR(7), +\fIutf-8\fR(7), +\fIxcode\fR(1) +.PP +. +. +.SH "KNOWN BUGS" +.PP +It has too many \fIunknown\fR bugs. +.PP +The idea of using \fBLC_*\fR value for language is certainly braindead. +However I like it. +.PP +It can't backup files before mangling them. +.PP +In certain situations, it may behave incorrectly on >31bit file systems +and/or over NFS (both untested but shouldn't cause problems in practice). +.PP +Built\-in converter does not convert character `ch' from \fIKOI8-CS2\fR, +and possibly some other characters you've probably never heard about anyway. +.PP +EOL type recognition works poorly on Quoted-printable encoded files. +This should be fixed someday. +.PP +There are no command line options to tune libenca parameters. +This is intentional (Enca should DWIM) but sometimes this is a nuisance. +.PP +The manual page is too long, especially this section. +This doesn't matter since nobody does read it. +.PP +Send bug reports to . +. +. +.SH "TRIVIA" +.PP +Enca is Extremely Naive Charset Analyser. +Nevertheless, the `enc' originally comes from `encoding' +so the leading\~`e' should be read as in +`encoding' not as in `extreme'. +. +. +.SH "AUTHORS" +.PP +David Necas (Yeti) +.PP +Michal Cihar +.sp +Unicode data has been generated from various (free) on\-line resources or +using GNU recode. +Statistical data has been generated from various texts on the Net, I hope +character counting doesn't break anyone's copyright. +. +. +.SH "ACKNOWLEDGEMENTS" +.PP +Please see the file THANKS in distribution. +. +. +.SH "COPYRIGHT" +.PP +Copyright (C) 2000-2003 David Necas (Yeti). +.PP +Copyright (C) 2009 Michal Cihar . +.sp +Enca is free software; you can redistribute it and/or modify it +under the terms of version 2 of the GNU General Public License +as published by the Free Software Foundation. +.sp +Enca is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +See the GNU General Public License for more details. +.sp +You should have received a copy of the GNU General Public License +along with Enca; if not, write to the Free Software Foundation, +Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +. diff --git a/wlx/wayland_qt_base/build/enca-1.19/missing b/wlx/wayland_qt_base/build/enca-1.19/missing new file mode 100755 index 0000000..f62bbae --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/missing @@ -0,0 +1,215 @@ +#! /bin/sh +# Common wrapper for a few potentially missing GNU programs. + +scriptversion=2013-10-28.13; # UTC + +# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Originally written by Fran,cois Pinard , 1996. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +if test $# -eq 0; then + echo 1>&2 "Try '$0 --help' for more information" + exit 1 +fi + +case $1 in + + --is-lightweight) + # Used by our autoconf macros to check whether the available missing + # script is modern enough. + exit 0 + ;; + + --run) + # Back-compat with the calling convention used by older automake. + shift + ;; + + -h|--h|--he|--hel|--help) + echo "\ +$0 [OPTION]... PROGRAM [ARGUMENT]... + +Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due +to PROGRAM being missing or too old. + +Options: + -h, --help display this help and exit + -v, --version output version information and exit + +Supported PROGRAM values: + aclocal autoconf autoheader autom4te automake makeinfo + bison yacc flex lex help2man + +Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and +'g' are ignored when checking the name. + +Send bug reports to ." + exit $? + ;; + + -v|--v|--ve|--ver|--vers|--versi|--versio|--version) + echo "missing $scriptversion (GNU Automake)" + exit $? + ;; + + -*) + echo 1>&2 "$0: unknown '$1' option" + echo 1>&2 "Try '$0 --help' for more information" + exit 1 + ;; + +esac + +# Run the given program, remember its exit status. +"$@"; st=$? + +# If it succeeded, we are done. +test $st -eq 0 && exit 0 + +# Also exit now if we it failed (or wasn't found), and '--version' was +# passed; such an option is passed most likely to detect whether the +# program is present and works. +case $2 in --version|--help) exit $st;; esac + +# Exit code 63 means version mismatch. This often happens when the user +# tries to use an ancient version of a tool on a file that requires a +# minimum version. +if test $st -eq 63; then + msg="probably too old" +elif test $st -eq 127; then + # Program was missing. + msg="missing on your system" +else + # Program was found and executed, but failed. Give up. + exit $st +fi + +perl_URL=http://www.perl.org/ +flex_URL=http://flex.sourceforge.net/ +gnu_software_URL=http://www.gnu.org/software + +program_details () +{ + case $1 in + aclocal|automake) + echo "The '$1' program is part of the GNU Automake package:" + echo "<$gnu_software_URL/automake>" + echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" + echo "<$gnu_software_URL/autoconf>" + echo "<$gnu_software_URL/m4/>" + echo "<$perl_URL>" + ;; + autoconf|autom4te|autoheader) + echo "The '$1' program is part of the GNU Autoconf package:" + echo "<$gnu_software_URL/autoconf/>" + echo "It also requires GNU m4 and Perl in order to run:" + echo "<$gnu_software_URL/m4/>" + echo "<$perl_URL>" + ;; + esac +} + +give_advice () +{ + # Normalize program name to check for. + normalized_program=`echo "$1" | sed ' + s/^gnu-//; t + s/^gnu//; t + s/^g//; t'` + + printf '%s\n' "'$1' is $msg." + + configure_deps="'configure.ac' or m4 files included by 'configure.ac'" + case $normalized_program in + autoconf*) + echo "You should only need it if you modified 'configure.ac'," + echo "or m4 files included by it." + program_details 'autoconf' + ;; + autoheader*) + echo "You should only need it if you modified 'acconfig.h' or" + echo "$configure_deps." + program_details 'autoheader' + ;; + automake*) + echo "You should only need it if you modified 'Makefile.am' or" + echo "$configure_deps." + program_details 'automake' + ;; + aclocal*) + echo "You should only need it if you modified 'acinclude.m4' or" + echo "$configure_deps." + program_details 'aclocal' + ;; + autom4te*) + echo "You might have modified some maintainer files that require" + echo "the 'autom4te' program to be rebuilt." + program_details 'autom4te' + ;; + bison*|yacc*) + echo "You should only need it if you modified a '.y' file." + echo "You may want to install the GNU Bison package:" + echo "<$gnu_software_URL/bison/>" + ;; + lex*|flex*) + echo "You should only need it if you modified a '.l' file." + echo "You may want to install the Fast Lexical Analyzer package:" + echo "<$flex_URL>" + ;; + help2man*) + echo "You should only need it if you modified a dependency" \ + "of a man page." + echo "You may want to install the GNU Help2man package:" + echo "<$gnu_software_URL/help2man/>" + ;; + makeinfo*) + echo "You should only need it if you modified a '.texi' file, or" + echo "any other file indirectly affecting the aspect of the manual." + echo "You might want to install the Texinfo package:" + echo "<$gnu_software_URL/texinfo/>" + echo "The spurious makeinfo call might also be the consequence of" + echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" + echo "want to install GNU make:" + echo "<$gnu_software_URL/make/>" + ;; + *) + echo "You might have modified some files without having the proper" + echo "tools for further handling them. Check the 'README' file, it" + echo "often tells you about the needed prerequisites for installing" + echo "this package. You may also peek at any GNU archive site, in" + echo "case some other package contains this missing '$1' program." + ;; + esac +} + +give_advice "$1" | sed -e '1s/^/WARNING: /' \ + -e '2,$s/^/ /' >&2 + +# Propagate the correct exit status (expected to be 127 for a program +# not found, 63 for a program that failed due to version mismatch). +exit $st + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/wlx/wayland_qt_base/build/enca-1.19/mkinstalldirs b/wlx/wayland_qt_base/build/enca-1.19/mkinstalldirs new file mode 100755 index 0000000..55d537f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/mkinstalldirs @@ -0,0 +1,162 @@ +#! /bin/sh +# mkinstalldirs --- make directory hierarchy + +scriptversion=2009-04-28.21; # UTC + +# Original author: Noah Friedman +# Created: 1993-05-16 +# Public domain. +# +# This file is maintained in Automake, please report +# bugs to or send patches to +# . + +nl=' +' +IFS=" "" $nl" +errstatus=0 +dirmode= + +usage="\ +Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ... + +Create each directory DIR (with mode MODE, if specified), including all +leading file name components. + +Report bugs to ." + +# process command line arguments +while test $# -gt 0 ; do + case $1 in + -h | --help | --h*) # -h for help + echo "$usage" + exit $? + ;; + -m) # -m PERM arg + shift + test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } + dirmode=$1 + shift + ;; + --version) + echo "$0 $scriptversion" + exit $? + ;; + --) # stop option processing + shift + break + ;; + -*) # unknown option + echo "$usage" 1>&2 + exit 1 + ;; + *) # first non-opt arg + break + ;; + esac +done + +for file +do + if test -d "$file"; then + shift + else + break + fi +done + +case $# in + 0) exit 0 ;; +esac + +# Solaris 8's mkdir -p isn't thread-safe. If you mkdir -p a/b and +# mkdir -p a/c at the same time, both will detect that a is missing, +# one will create a, then the other will try to create a and die with +# a "File exists" error. This is a problem when calling mkinstalldirs +# from a parallel make. We use --version in the probe to restrict +# ourselves to GNU mkdir, which is thread-safe. +case $dirmode in + '') + if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then + echo "mkdir -p -- $*" + exec mkdir -p -- "$@" + else + # On NextStep and OpenStep, the 'mkdir' command does not + # recognize any option. It will interpret all options as + # directories to create, and then abort because '.' already + # exists. + test -d ./-p && rmdir ./-p + test -d ./--version && rmdir ./--version + fi + ;; + *) + if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 && + test ! -d ./--version; then + echo "mkdir -m $dirmode -p -- $*" + exec mkdir -m "$dirmode" -p -- "$@" + else + # Clean up after NextStep and OpenStep mkdir. + for d in ./-m ./-p ./--version "./$dirmode"; + do + test -d $d && rmdir $d + done + fi + ;; +esac + +for file +do + case $file in + /*) pathcomp=/ ;; + *) pathcomp= ;; + esac + oIFS=$IFS + IFS=/ + set fnord $file + shift + IFS=$oIFS + + for d + do + test "x$d" = x && continue + + pathcomp=$pathcomp$d + case $pathcomp in + -*) pathcomp=./$pathcomp ;; + esac + + if test ! -d "$pathcomp"; then + echo "mkdir $pathcomp" + + mkdir "$pathcomp" || lasterr=$? + + if test ! -d "$pathcomp"; then + errstatus=$lasterr + else + if test ! -z "$dirmode"; then + echo "chmod $dirmode $pathcomp" + lasterr= + chmod "$dirmode" "$pathcomp" || lasterr=$? + + if test ! -z "$lasterr"; then + errstatus=$lasterr + fi + fi + fi + fi + + pathcomp=$pathcomp/ + done +done + +exit $errstatus + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/Makefile b/wlx/wayland_qt_base/build/enca-1.19/script/Makefile new file mode 100644 index 0000000..542727e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/Makefile @@ -0,0 +1,577 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# script/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + + +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/enca +pkgincludedir = $(includedir)/enca +pkglibdir = $(libdir)/enca +pkglibexecdir = $(libexecdir)/enca +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-pc-linux-gnu +host_triplet = x86_64-pc-linux-gnu +subdir = script +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = b-cstocs b-map b-piconv b-umap +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(extconvdir)" +SCRIPTS = $(extconv_SCRIPTS) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/b-cstocs.in \ + $(srcdir)/b-map.in $(srcdir)/b-piconv.in $(srcdir)/b-umap.in \ + $(top_srcdir)/mkinstalldirs +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing aclocal-1.15 -I m4 +AMTAR = $${TAR-tar} +AM_DEFAULT_VERBOSITY = 1 +AR = ar +AUTOCONF = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoconf +AUTOHEADER = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoheader +AUTOMAKE = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing automake-1.15 +AWK = gawk +CC = /usr/bin/cc +CCDEPMODE = depmode=gcc3 +CFLAGS = -Wall -Wextra -W -pedantic -g -O2 +CONVERTER_LIBS = +CPP = /usr/bin/cc -E +CPPFLAGS = +CSTOCS_PROG = +CYGPATH_W = echo +DEFAULT_CONVERTER_LIST = built-in,iconv +DEFAULT_EXTERNAL_CONVERTER = recode +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +FGREP = /usr/bin/grep -F +GCOV = /usr/bin/gcov +GCOV_CPPFLAGS = +GCOV_FLAGS = +GCOV_LDFLAGS = +GREP = /usr/bin/grep +GTKDOC = false +HTML_DIR = ${datarootdir}/gtk-doc/html +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBICONV = +LIBM = -lm +LIBOBJS = +LIBS = -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LN_S = ln -s +LTLIBICONV = +LTLIBOBJS = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing makeinfo +MANIFEST_TOOL = : +MAP_PROG = +MKDIR_P = /usr/bin/mkdir -p +MKTEMP_PROG = /usr/bin/mktemp +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = enca +PACKAGE_BUGREPORT = https://github.com/nijel/enca/issues +PACKAGE_NAME = Enca +PACKAGE_STRING = Enca 1.19 +PACKAGE_TARNAME = enca +PACKAGE_URL = +PACKAGE_VERSION = 1.19 +PATH_SEPARATOR = : +PICONV_PROG = /usr/bin/core_perl/piconv +RANLIB = ranlib +RECODE_PROG = /usr/bin/recode +RELEASE = 1 +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SHELL_RANDOM_FILENAME = `/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` +STRIP = strip +UMAP_PROG = +VERSION = 1.19 +abs_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/script +abs_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/script +abs_top_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +abs_top_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +ac_ct_AR = ar +ac_ct_CC = /usr/bin/cc +ac_ct_DUMPBIN = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-pc-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = pc +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} +dvidir = ${docdir} +exec_prefix = ${prefix} +host = x86_64-pc-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = pc +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /usr/local +program_transform_name = s,x,x, +psdir = ${docdir} +runstatedir = ${localstatedir}/run +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = . +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = .. +AM_INSTALLCHECK_STD_OPTIONS_EXEMPT = $(extconv_SCRIPTS) +extconvdir = $(libexecdir)/enca/extconv +extconv_SCRIPTS = \ + cstocs \ + map \ + piconv \ + recode \ + umap + +EXTRA_DIST = \ + b-recode \ + b-cstocs.in \ + b-map.in \ + b-piconv.in \ + b-umap.in + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits script/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits script/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +b-cstocs: $(top_builddir)/config.status $(srcdir)/b-cstocs.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +b-map: $(top_builddir)/config.status $(srcdir)/b-map.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +b-piconv: $(top_builddir)/config.status $(srcdir)/b-piconv.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +b-umap: $(top_builddir)/config.status $(srcdir)/b-umap.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +install-extconvSCRIPTS: $(extconv_SCRIPTS) + @$(NORMAL_INSTALL) + @list='$(extconv_SCRIPTS)'; test -n "$(extconvdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(extconvdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(extconvdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n' \ + -e 'h;s|.*|.|' \ + -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) { files[d] = files[d] " " $$1; \ + if (++n[d] == $(am__install_max)) { \ + print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ + else { print "f", d "/" $$4, $$1 } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(extconvdir)$$dir'"; \ + $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(extconvdir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-extconvSCRIPTS: + @$(NORMAL_UNINSTALL) + @list='$(extconv_SCRIPTS)'; test -n "$(extconvdir)" || exit 0; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 's,.*/,,;$(transform)'`; \ + dir='$(DESTDIR)$(extconvdir)'; $(am__uninstall_files_from_dir) + +installcheck-extconvSCRIPTS: $(extconv_SCRIPTS) + bad=0; pid=$$$$; list="$(extconv_SCRIPTS)"; for p in $$list; do \ + case ' $(AM_INSTALLCHECK_STD_OPTIONS_EXEMPT) ' in \ + *" $$p "* | *" $(srcdir)/$$p "*) continue;; \ + esac; \ + f=`echo "$$p" | sed 's,^.*/,,;$(transform)'`; \ + for opt in --help --version; do \ + if "$(DESTDIR)$(extconvdir)/$$f" $$opt >c$${pid}_.out \ + 2>c$${pid}_.err &2; bad=1; fi; \ + done; \ + done; rm -f c$${pid}_.???; exit $$bad + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(SCRIPTS) +installdirs: + for dir in "$(DESTDIR)$(extconvdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool clean-local mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-extconvSCRIPTS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: installcheck-extconvSCRIPTS + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-extconvSCRIPTS + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + clean-local cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am \ + install-extconvSCRIPTS install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installcheck-extconvSCRIPTS \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ + ps ps-am tags-am uninstall uninstall-am \ + uninstall-extconvSCRIPTS + +.PRECIOUS: Makefile + + +%: b-% + cat $< >$@ + +clean-local: + rm -f $(extconv_SCRIPTS) *~ core.* + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/Makefile.am b/wlx/wayland_qt_base/build/enca-1.19/script/Makefile.am new file mode 100644 index 0000000..b814e3a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/Makefile.am @@ -0,0 +1,24 @@ + +AM_INSTALLCHECK_STD_OPTIONS_EXEMPT = $(extconv_SCRIPTS) + +extconvdir = $(libexecdir)/enca/extconv + +extconv_SCRIPTS = \ + cstocs \ + map \ + piconv \ + recode \ + umap + +EXTRA_DIST = \ + b-recode \ + b-cstocs.in \ + b-map.in \ + b-piconv.in \ + b-umap.in + +%: b-% + cat $< >$@ + +clean-local: + rm -f $(extconv_SCRIPTS) *~ core.* diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/Makefile.in b/wlx/wayland_qt_base/build/enca-1.19/script/Makefile.in new file mode 100644 index 0000000..8260107 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/Makefile.in @@ -0,0 +1,577 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = script +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = b-cstocs b-map b-piconv b-umap +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(extconvdir)" +SCRIPTS = $(extconv_SCRIPTS) +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/b-cstocs.in \ + $(srcdir)/b-map.in $(srcdir)/b-piconv.in $(srcdir)/b-umap.in \ + $(top_srcdir)/mkinstalldirs +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERTER_LIBS = @CONVERTER_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CSTOCS_PROG = @CSTOCS_PROG@ +CYGPATH_W = @CYGPATH_W@ +DEFAULT_CONVERTER_LIST = @DEFAULT_CONVERTER_LIST@ +DEFAULT_EXTERNAL_CONVERTER = @DEFAULT_EXTERNAL_CONVERTER@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCOV = @GCOV@ +GCOV_CPPFLAGS = @GCOV_CPPFLAGS@ +GCOV_FLAGS = @GCOV_FLAGS@ +GCOV_LDFLAGS = @GCOV_LDFLAGS@ +GREP = @GREP@ +GTKDOC = @GTKDOC@ +HTML_DIR = @HTML_DIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBM = @LIBM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MAP_PROG = @MAP_PROG@ +MKDIR_P = @MKDIR_P@ +MKTEMP_PROG = @MKTEMP_PROG@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PICONV_PROG = @PICONV_PROG@ +RANLIB = @RANLIB@ +RECODE_PROG = @RECODE_PROG@ +RELEASE = @RELEASE@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SHELL_RANDOM_FILENAME = @SHELL_RANDOM_FILENAME@ +STRIP = @STRIP@ +UMAP_PROG = @UMAP_PROG@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_INSTALLCHECK_STD_OPTIONS_EXEMPT = $(extconv_SCRIPTS) +extconvdir = $(libexecdir)/enca/extconv +extconv_SCRIPTS = \ + cstocs \ + map \ + piconv \ + recode \ + umap + +EXTRA_DIST = \ + b-recode \ + b-cstocs.in \ + b-map.in \ + b-piconv.in \ + b-umap.in + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits script/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits script/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +b-cstocs: $(top_builddir)/config.status $(srcdir)/b-cstocs.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +b-map: $(top_builddir)/config.status $(srcdir)/b-map.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +b-piconv: $(top_builddir)/config.status $(srcdir)/b-piconv.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +b-umap: $(top_builddir)/config.status $(srcdir)/b-umap.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +install-extconvSCRIPTS: $(extconv_SCRIPTS) + @$(NORMAL_INSTALL) + @list='$(extconv_SCRIPTS)'; test -n "$(extconvdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(extconvdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(extconvdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n' \ + -e 'h;s|.*|.|' \ + -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) { files[d] = files[d] " " $$1; \ + if (++n[d] == $(am__install_max)) { \ + print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ + else { print "f", d "/" $$4, $$1 } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(extconvdir)$$dir'"; \ + $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(extconvdir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-extconvSCRIPTS: + @$(NORMAL_UNINSTALL) + @list='$(extconv_SCRIPTS)'; test -n "$(extconvdir)" || exit 0; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 's,.*/,,;$(transform)'`; \ + dir='$(DESTDIR)$(extconvdir)'; $(am__uninstall_files_from_dir) + +installcheck-extconvSCRIPTS: $(extconv_SCRIPTS) + bad=0; pid=$$$$; list="$(extconv_SCRIPTS)"; for p in $$list; do \ + case ' $(AM_INSTALLCHECK_STD_OPTIONS_EXEMPT) ' in \ + *" $$p "* | *" $(srcdir)/$$p "*) continue;; \ + esac; \ + f=`echo "$$p" | sed 's,^.*/,,;$(transform)'`; \ + for opt in --help --version; do \ + if "$(DESTDIR)$(extconvdir)/$$f" $$opt >c$${pid}_.out \ + 2>c$${pid}_.err &2; bad=1; fi; \ + done; \ + done; rm -f c$${pid}_.???; exit $$bad + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(SCRIPTS) +installdirs: + for dir in "$(DESTDIR)$(extconvdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool clean-local mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-extconvSCRIPTS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: installcheck-extconvSCRIPTS + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-extconvSCRIPTS + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + clean-local cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am \ + install-extconvSCRIPTS install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installcheck-extconvSCRIPTS \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ + ps ps-am tags-am uninstall uninstall-am \ + uninstall-extconvSCRIPTS + +.PRECIOUS: Makefile + + +%: b-% + cat $< >$@ + +clean-local: + rm -f $(extconv_SCRIPTS) *~ core.* + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/b-cstocs b/wlx/wayland_qt_base/build/enca-1.19/script/b-cstocs new file mode 100644 index 0000000..6d77964 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/b-cstocs @@ -0,0 +1,49 @@ +#! /bin/sh +# cstocs batch-call wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2003 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + case "$1" in + ASCII*) echo ascii ; return ;; + CP1250*) echo 1250 ; return ;; + IBM852*) echo pc2 ; return ;; + ISO-8859-2*) echo il2 ; return ;; + KEYBCS2*) echo kam ; return ;; + KOI-8_CS2*) echo koi ; return ;; + UTF-8*) echo utf8 ; return ;; + TeX*) echo tex ; return ;; + esac + echo "$1"|sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc=`transform_enc_name "$2"` +if test "$4" = "-"; then + if cstocs "$inenc" "$outenc" <"$3"; then + rm -- "$3" + else + echo "$0: cstocs $inenc $outenc failed" 1>&2 + rm -- "$3" + exit 1 + fi +else + temp=`/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` || exit 1 + if cstocs "$inenc" "$outenc" <"$3" >>"$temp"; then + # use cat > to preserve permissions + cat $temp >"$3" + else + echo "$0: cstocs $inenc $outenc $3 failed, file $3 unchanged" 1>&2 + rm -f $temp + exit 1 + fi + rm -f $temp +fi + diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/b-cstocs.in b/wlx/wayland_qt_base/build/enca-1.19/script/b-cstocs.in new file mode 100644 index 0000000..7f8c602 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/b-cstocs.in @@ -0,0 +1,49 @@ +#! /bin/sh +# cstocs batch-call wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2003 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + case "$1" in + ASCII*) echo ascii ; return ;; + CP1250*) echo 1250 ; return ;; + IBM852*) echo pc2 ; return ;; + ISO-8859-2*) echo il2 ; return ;; + KEYBCS2*) echo kam ; return ;; + KOI-8_CS2*) echo koi ; return ;; + UTF-8*) echo utf8 ; return ;; + TeX*) echo tex ; return ;; + esac + echo "$1"|sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc=`transform_enc_name "$2"` +if test "$4" = "-"; then + if cstocs "$inenc" "$outenc" <"$3"; then + rm -- "$3" + else + echo "$0: cstocs $inenc $outenc failed" 1>&2 + rm -- "$3" + exit 1 + fi +else + temp=@SHELL_RANDOM_FILENAME@ || exit 1 + if cstocs "$inenc" "$outenc" <"$3" >>"$temp"; then + # use cat > to preserve permissions + cat $temp >"$3" + else + echo "$0: cstocs $inenc $outenc $3 failed, file $3 unchanged" 1>&2 + rm -f $temp + exit 1 + fi + rm -f $temp +fi + diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/b-map b/wlx/wayland_qt_base/build/enca-1.19/script/b-map new file mode 100644 index 0000000..e4d0f3c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/b-map @@ -0,0 +1,40 @@ +#! /bin/sh +# map batch-call wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2003 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + echo "$1" | sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc=`transform_enc_name "$2"` +if test "$4" = "-"; then + # Note map returns 0 on failure and 1 on success! + if map --from "$inenc" --to "$outenc" <"$3"; then + echo "$0: map --from $inenc --to $outenc failed" 1>&2 + rm -- "$3" + exit 1 + else + rm -- "$3" + fi +else + temp=`/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` || exit 1 + # Note map returns 0 on failure and 1 on success! + if map --from "$inenc" --to "$outenc" <"$3" >"$temp"; then + echo "$0: map --from $inenc --to $outenc <$3 failed, file $3 unchanged" 1>&2 + rm -f $temp + exit 1 + else + # use cat > to preserve permissions + cat $temp >"$3" + fi + rm -f $temp +fi diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/b-map.in b/wlx/wayland_qt_base/build/enca-1.19/script/b-map.in new file mode 100644 index 0000000..4148b1c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/b-map.in @@ -0,0 +1,40 @@ +#! /bin/sh +# map batch-call wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2003 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + echo "$1" | sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc=`transform_enc_name "$2"` +if test "$4" = "-"; then + # Note map returns 0 on failure and 1 on success! + if map --from "$inenc" --to "$outenc" <"$3"; then + echo "$0: map --from $inenc --to $outenc failed" 1>&2 + rm -- "$3" + exit 1 + else + rm -- "$3" + fi +else + temp=@SHELL_RANDOM_FILENAME@ || exit 1 + # Note map returns 0 on failure and 1 on success! + if map --from "$inenc" --to "$outenc" <"$3" >"$temp"; then + echo "$0: map --from $inenc --to $outenc <$3 failed, file $3 unchanged" 1>&2 + rm -f $temp + exit 1 + else + # use cat > to preserve permissions + cat $temp >"$3" + fi + rm -f $temp +fi diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/b-piconv b/wlx/wayland_qt_base/build/enca-1.19/script/b-piconv new file mode 100644 index 0000000..25f6125 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/b-piconv @@ -0,0 +1,39 @@ +#! /bin/sh +# piconv wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2003 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + echo "$1" | sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc=`transform_enc_name "$2"` +if test "$4" = "-"; then + if piconv -f "$inenc" -t "$outenc" <"$3"; then + rm -- "$3" + else + echo "$0: piconv -f $inenc -t $outenc failed" 1>&2 + rm -- "$3" + exit 1 + fi +else + temp=`/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` || exit 1 + if piconv -f "$inenc" -t "$outenc" <"$3" >"$temp"; then + # use cat > to preserve permissions + cat $temp >"$3" + else + echo "$0: piconv -f $inenc -t $outenc <$3 failed, file $3 unchanged" 1>&2 + rm -f $temp + exit 1 + fi + rm -f $temp +fi + diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/b-piconv.in b/wlx/wayland_qt_base/build/enca-1.19/script/b-piconv.in new file mode 100644 index 0000000..edd6c31 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/b-piconv.in @@ -0,0 +1,39 @@ +#! /bin/sh +# piconv wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2003 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + echo "$1" | sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc=`transform_enc_name "$2"` +if test "$4" = "-"; then + if piconv -f "$inenc" -t "$outenc" <"$3"; then + rm -- "$3" + else + echo "$0: piconv -f $inenc -t $outenc failed" 1>&2 + rm -- "$3" + exit 1 + fi +else + temp=@SHELL_RANDOM_FILENAME@ || exit 1 + if piconv -f "$inenc" -t "$outenc" <"$3" >"$temp"; then + # use cat > to preserve permissions + cat $temp >"$3" + else + echo "$0: piconv -f $inenc -t $outenc <$3 failed, file $3 unchanged" 1>&2 + rm -f $temp + exit 1 + fi + rm -f $temp +fi + diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/b-recode b/wlx/wayland_qt_base/build/enca-1.19/script/b-recode new file mode 100644 index 0000000..7c2919b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/b-recode @@ -0,0 +1,27 @@ +#! /bin/sh +# recode braindead wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2001 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + echo "$1" | sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc="$2" +if test "$4" = "-"; then + recode -f "$inenc..$outenc" <"$3" \ + || { echo "$0: recode -f $inenc..$outenc failed" 1>&2 + exit 1; } +else + recode -f "$inenc..$outenc" -- "$3" \ + || { echo "$0: recode -f $inenc..$outenc $3 failed, file $3 may be damaged" 1>&2 + exit 1; } +fi diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/b-umap b/wlx/wayland_qt_base/build/enca-1.19/script/b-umap new file mode 100644 index 0000000..daf7547 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/b-umap @@ -0,0 +1,38 @@ +#! /bin/sh +# umap batch-call wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2003 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + echo "$1" | sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc=`transform_enc_name "$2"` +if test "$4" = "-"; then + if umap "$inenc:$outenc" <"$3"; then + rm -- "$3" + else + echo "$0: umap $inenc:$outenc failed" 1>&2 + rm -- "$3" + exit 1 + fi +else + temp=`/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` || exit 1 + if umap "$inenc:$outenc" <"$3" >"$temp"; then + # use cat > to preserve permissions + cat $temp >"$3" + else + echo "$0: umap $inenc:$outenc <$3 failed, file $3 unchanged" 1>&2 + rm -f $temp + exit 1 + fi + rm -f $temp +fi diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/b-umap.in b/wlx/wayland_qt_base/build/enca-1.19/script/b-umap.in new file mode 100644 index 0000000..6ca27cb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/b-umap.in @@ -0,0 +1,38 @@ +#! /bin/sh +# umap batch-call wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2003 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + echo "$1" | sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc=`transform_enc_name "$2"` +if test "$4" = "-"; then + if umap "$inenc:$outenc" <"$3"; then + rm -- "$3" + else + echo "$0: umap $inenc:$outenc failed" 1>&2 + rm -- "$3" + exit 1 + fi +else + temp=@SHELL_RANDOM_FILENAME@ || exit 1 + if umap "$inenc:$outenc" <"$3" >"$temp"; then + # use cat > to preserve permissions + cat $temp >"$3" + else + echo "$0: umap $inenc:$outenc <$3 failed, file $3 unchanged" 1>&2 + rm -f $temp + exit 1 + fi + rm -f $temp +fi diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/cstocs b/wlx/wayland_qt_base/build/enca-1.19/script/cstocs new file mode 100644 index 0000000..6d77964 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/cstocs @@ -0,0 +1,49 @@ +#! /bin/sh +# cstocs batch-call wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2003 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + case "$1" in + ASCII*) echo ascii ; return ;; + CP1250*) echo 1250 ; return ;; + IBM852*) echo pc2 ; return ;; + ISO-8859-2*) echo il2 ; return ;; + KEYBCS2*) echo kam ; return ;; + KOI-8_CS2*) echo koi ; return ;; + UTF-8*) echo utf8 ; return ;; + TeX*) echo tex ; return ;; + esac + echo "$1"|sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc=`transform_enc_name "$2"` +if test "$4" = "-"; then + if cstocs "$inenc" "$outenc" <"$3"; then + rm -- "$3" + else + echo "$0: cstocs $inenc $outenc failed" 1>&2 + rm -- "$3" + exit 1 + fi +else + temp=`/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` || exit 1 + if cstocs "$inenc" "$outenc" <"$3" >>"$temp"; then + # use cat > to preserve permissions + cat $temp >"$3" + else + echo "$0: cstocs $inenc $outenc $3 failed, file $3 unchanged" 1>&2 + rm -f $temp + exit 1 + fi + rm -f $temp +fi + diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/map b/wlx/wayland_qt_base/build/enca-1.19/script/map new file mode 100644 index 0000000..e4d0f3c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/map @@ -0,0 +1,40 @@ +#! /bin/sh +# map batch-call wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2003 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + echo "$1" | sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc=`transform_enc_name "$2"` +if test "$4" = "-"; then + # Note map returns 0 on failure and 1 on success! + if map --from "$inenc" --to "$outenc" <"$3"; then + echo "$0: map --from $inenc --to $outenc failed" 1>&2 + rm -- "$3" + exit 1 + else + rm -- "$3" + fi +else + temp=`/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` || exit 1 + # Note map returns 0 on failure and 1 on success! + if map --from "$inenc" --to "$outenc" <"$3" >"$temp"; then + echo "$0: map --from $inenc --to $outenc <$3 failed, file $3 unchanged" 1>&2 + rm -f $temp + exit 1 + else + # use cat > to preserve permissions + cat $temp >"$3" + fi + rm -f $temp +fi diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/piconv b/wlx/wayland_qt_base/build/enca-1.19/script/piconv new file mode 100644 index 0000000..25f6125 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/piconv @@ -0,0 +1,39 @@ +#! /bin/sh +# piconv wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2003 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + echo "$1" | sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc=`transform_enc_name "$2"` +if test "$4" = "-"; then + if piconv -f "$inenc" -t "$outenc" <"$3"; then + rm -- "$3" + else + echo "$0: piconv -f $inenc -t $outenc failed" 1>&2 + rm -- "$3" + exit 1 + fi +else + temp=`/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` || exit 1 + if piconv -f "$inenc" -t "$outenc" <"$3" >"$temp"; then + # use cat > to preserve permissions + cat $temp >"$3" + else + echo "$0: piconv -f $inenc -t $outenc <$3 failed, file $3 unchanged" 1>&2 + rm -f $temp + exit 1 + fi + rm -f $temp +fi + diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/recode b/wlx/wayland_qt_base/build/enca-1.19/script/recode new file mode 100644 index 0000000..7c2919b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/recode @@ -0,0 +1,27 @@ +#! /bin/sh +# recode braindead wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2001 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + echo "$1" | sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc="$2" +if test "$4" = "-"; then + recode -f "$inenc..$outenc" <"$3" \ + || { echo "$0: recode -f $inenc..$outenc failed" 1>&2 + exit 1; } +else + recode -f "$inenc..$outenc" -- "$3" \ + || { echo "$0: recode -f $inenc..$outenc $3 failed, file $3 may be damaged" 1>&2 + exit 1; } +fi diff --git a/wlx/wayland_qt_base/build/enca-1.19/script/umap b/wlx/wayland_qt_base/build/enca-1.19/script/umap new file mode 100644 index 0000000..daf7547 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/script/umap @@ -0,0 +1,38 @@ +#! /bin/sh +# umap batch-call wrapper. +# To be called by enca, don't use directly. See enca(1) for calling convention. +# +# Copyright (C) 2000-2003 David Necas (Yeti) . +# This is free software; it can be copied and/or modified under the terms of +# version 2 of GNU General Public License, see COPYING for details. There is +# NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +transform_enc_name() { + echo "$1" | sed -e 's:/.*::' +} +if test "x$3" = "x"; then + echo "$0 has to be called by enca" 1>&2 + exit 1 +fi +umask 077 +inenc=`transform_enc_name "$1"` +outenc=`transform_enc_name "$2"` +if test "$4" = "-"; then + if umap "$inenc:$outenc" <"$3"; then + rm -- "$3" + else + echo "$0: umap $inenc:$outenc failed" 1>&2 + rm -- "$3" + exit 1 + fi +else + temp=`/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` || exit 1 + if umap "$inenc:$outenc" <"$3" >"$temp"; then + # use cat > to preserve permissions + cat $temp >"$3" + else + echo "$0: umap $inenc:$outenc <$3 failed, file $3 unchanged" 1>&2 + rm -f $temp + exit 1 + fi + rm -f $temp +fi diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-COPYING.Po b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-COPYING.Po new file mode 100644 index 0000000..f40e0e2 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-COPYING.Po @@ -0,0 +1,127 @@ +enca-COPYING.o: COPYING.c /usr/include/stdc-predef.h ../config.h common.h \ + /usr/include/ctype.h /usr/include/features.h \ + /usr/include/features-time64.h /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/assert.h \ + /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + ../lib/internal.h ../lib/enca.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/memory.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h +/usr/include/stdc-predef.h: +../config.h: +common.h: +/usr/include/ctype.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/sys/types.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/unistd.h: +/usr/include/bits/posix_opt.h: +/usr/include/bits/environments.h: +/usr/include/bits/confname.h: +/usr/include/bits/getopt_posix.h: +/usr/include/bits/getopt_core.h: +/usr/include/bits/unistd_ext.h: +/usr/include/linux/close_range.h: +/usr/include/assert.h: +/usr/include/stdio.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: +/usr/include/bits/types/__fpos_t.h: +/usr/include/bits/types/__mbstate_t.h: +/usr/include/bits/types/__fpos64_t.h: +/usr/include/bits/types/__FILE.h: +/usr/include/bits/types/FILE.h: +/usr/include/bits/types/struct_FILE.h: +/usr/include/bits/types/cookie_io_functions_t.h: +/usr/include/bits/stdio_lim.h: +/usr/include/bits/stdio.h: +../lib/internal.h: +../lib/enca.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +/usr/include/errno.h: +/usr/include/bits/errno.h: +/usr/include/linux/errno.h: +/usr/include/asm/errno.h: +/usr/include/asm-generic/errno.h: +/usr/include/asm-generic/errno-base.h: +/usr/include/bits/types/error_t.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-HELP.Po b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-HELP.Po new file mode 100644 index 0000000..05548d4 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-HELP.Po @@ -0,0 +1,127 @@ +enca-HELP.o: HELP.c /usr/include/stdc-predef.h ../config.h common.h \ + /usr/include/ctype.h /usr/include/features.h \ + /usr/include/features-time64.h /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/assert.h \ + /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + ../lib/internal.h ../lib/enca.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/memory.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h +/usr/include/stdc-predef.h: +../config.h: +common.h: +/usr/include/ctype.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/sys/types.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/unistd.h: +/usr/include/bits/posix_opt.h: +/usr/include/bits/environments.h: +/usr/include/bits/confname.h: +/usr/include/bits/getopt_posix.h: +/usr/include/bits/getopt_core.h: +/usr/include/bits/unistd_ext.h: +/usr/include/linux/close_range.h: +/usr/include/assert.h: +/usr/include/stdio.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: +/usr/include/bits/types/__fpos_t.h: +/usr/include/bits/types/__mbstate_t.h: +/usr/include/bits/types/__fpos64_t.h: +/usr/include/bits/types/__FILE.h: +/usr/include/bits/types/FILE.h: +/usr/include/bits/types/struct_FILE.h: +/usr/include/bits/types/cookie_io_functions_t.h: +/usr/include/bits/stdio_lim.h: +/usr/include/bits/stdio.h: +../lib/internal.h: +../lib/enca.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +/usr/include/errno.h: +/usr/include/bits/errno.h: +/usr/include/linux/errno.h: +/usr/include/asm/errno.h: +/usr/include/asm-generic/errno.h: +/usr/include/asm-generic/errno-base.h: +/usr/include/bits/types/error_t.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-convert.Po b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-convert.Po new file mode 100644 index 0000000..98374b0 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-convert.Po @@ -0,0 +1,194 @@ +enca-convert.o: convert.c /usr/include/stdc-predef.h common.h ../config.h \ + /usr/include/ctype.h /usr/include/features.h \ + /usr/include/features-time64.h /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/assert.h \ + /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + ../lib/internal.h ../lib/enca.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/memory.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \ + /usr/include/sys/wait.h /usr/include/signal.h \ + /usr/include/bits/signum-generic.h /usr/include/bits/signum-arch.h \ + /usr/include/bits/types/sig_atomic_t.h \ + /usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \ + /usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \ + /usr/include/bits/siginfo-consts-arch.h \ + /usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \ + /usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \ + /usr/include/bits/sigstksz.h /usr/include/bits/ss_flags.h \ + /usr/include/bits/types/struct_sigstack.h /usr/include/bits/sigthread.h \ + /usr/include/bits/signal_ext.h /usr/include/bits/types/idtype_t.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h \ + /usr/include/bits/struct_stat.h /usr/include/bits/statx.h \ + /usr/include/linux/stat.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/statx-generic.h \ + /usr/include/bits/types/struct_statx_timestamp.h \ + /usr/include/bits/types/struct_statx.h +/usr/include/stdc-predef.h: +common.h: +../config.h: +/usr/include/ctype.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/sys/types.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/unistd.h: +/usr/include/bits/posix_opt.h: +/usr/include/bits/environments.h: +/usr/include/bits/confname.h: +/usr/include/bits/getopt_posix.h: +/usr/include/bits/getopt_core.h: +/usr/include/bits/unistd_ext.h: +/usr/include/linux/close_range.h: +/usr/include/assert.h: +/usr/include/stdio.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: +/usr/include/bits/types/__fpos_t.h: +/usr/include/bits/types/__mbstate_t.h: +/usr/include/bits/types/__fpos64_t.h: +/usr/include/bits/types/__FILE.h: +/usr/include/bits/types/FILE.h: +/usr/include/bits/types/struct_FILE.h: +/usr/include/bits/types/cookie_io_functions_t.h: +/usr/include/bits/stdio_lim.h: +/usr/include/bits/stdio.h: +../lib/internal.h: +../lib/enca.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +/usr/include/errno.h: +/usr/include/bits/errno.h: +/usr/include/linux/errno.h: +/usr/include/asm/errno.h: +/usr/include/asm-generic/errno.h: +/usr/include/asm-generic/errno-base.h: +/usr/include/bits/types/error_t.h: +/usr/include/sys/wait.h: +/usr/include/signal.h: +/usr/include/bits/signum-generic.h: +/usr/include/bits/signum-arch.h: +/usr/include/bits/types/sig_atomic_t.h: +/usr/include/bits/types/siginfo_t.h: +/usr/include/bits/types/__sigval_t.h: +/usr/include/bits/siginfo-arch.h: +/usr/include/bits/siginfo-consts.h: +/usr/include/bits/siginfo-consts-arch.h: +/usr/include/bits/types/sigval_t.h: +/usr/include/bits/types/sigevent_t.h: +/usr/include/bits/sigevent-consts.h: +/usr/include/bits/sigaction.h: +/usr/include/bits/sigcontext.h: +/usr/include/bits/types/stack_t.h: +/usr/include/sys/ucontext.h: +/usr/include/bits/sigstack.h: +/usr/include/bits/sigstksz.h: +/usr/include/bits/ss_flags.h: +/usr/include/bits/types/struct_sigstack.h: +/usr/include/bits/sigthread.h: +/usr/include/bits/signal_ext.h: +/usr/include/bits/types/idtype_t.h: +/usr/include/sys/stat.h: +/usr/include/bits/stat.h: +/usr/include/bits/struct_stat.h: +/usr/include/bits/statx.h: +/usr/include/linux/stat.h: +/usr/include/linux/types.h: +/usr/include/asm/types.h: +/usr/include/asm-generic/types.h: +/usr/include/asm-generic/int-ll64.h: +/usr/include/asm/bitsperlong.h: +/usr/include/asm-generic/bitsperlong.h: +/usr/include/linux/posix_types.h: +/usr/include/linux/stddef.h: +/usr/include/asm/posix_types.h: +/usr/include/asm/posix_types_64.h: +/usr/include/asm-generic/posix_types.h: +/usr/include/bits/statx-generic.h: +/usr/include/bits/types/struct_statx_timestamp.h: +/usr/include/bits/types/struct_statx.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-convert_extern.Po b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-convert_extern.Po new file mode 100644 index 0000000..cac21db --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-convert_extern.Po @@ -0,0 +1,211 @@ +enca-convert_extern.o: convert_extern.c /usr/include/stdc-predef.h \ + common.h ../config.h /usr/include/ctype.h /usr/include/features.h \ + /usr/include/features-time64.h /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/assert.h \ + /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + ../lib/internal.h ../lib/enca.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/memory.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \ + /usr/include/sys/wait.h /usr/include/signal.h \ + /usr/include/bits/signum-generic.h /usr/include/bits/signum-arch.h \ + /usr/include/bits/types/sig_atomic_t.h \ + /usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \ + /usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \ + /usr/include/bits/siginfo-consts-arch.h \ + /usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \ + /usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \ + /usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \ + /usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \ + /usr/include/bits/sigstksz.h /usr/include/bits/ss_flags.h \ + /usr/include/bits/types/struct_sigstack.h /usr/include/bits/sigthread.h \ + /usr/include/bits/signal_ext.h /usr/include/bits/types/idtype_t.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h \ + /usr/include/bits/struct_stat.h /usr/include/bits/statx.h \ + /usr/include/linux/stat.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/statx-generic.h \ + /usr/include/bits/types/struct_statx_timestamp.h \ + /usr/include/bits/types/struct_statx.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h \ + /usr/include/limits.h /usr/include/bits/posix1_lim.h \ + /usr/include/bits/local_lim.h /usr/include/linux/limits.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \ + /usr/include/bits/uio_lim.h +/usr/include/stdc-predef.h: +common.h: +../config.h: +/usr/include/ctype.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/sys/types.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/unistd.h: +/usr/include/bits/posix_opt.h: +/usr/include/bits/environments.h: +/usr/include/bits/confname.h: +/usr/include/bits/getopt_posix.h: +/usr/include/bits/getopt_core.h: +/usr/include/bits/unistd_ext.h: +/usr/include/linux/close_range.h: +/usr/include/assert.h: +/usr/include/stdio.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: +/usr/include/bits/types/__fpos_t.h: +/usr/include/bits/types/__mbstate_t.h: +/usr/include/bits/types/__fpos64_t.h: +/usr/include/bits/types/__FILE.h: +/usr/include/bits/types/FILE.h: +/usr/include/bits/types/struct_FILE.h: +/usr/include/bits/types/cookie_io_functions_t.h: +/usr/include/bits/stdio_lim.h: +/usr/include/bits/stdio.h: +../lib/internal.h: +../lib/enca.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +/usr/include/errno.h: +/usr/include/bits/errno.h: +/usr/include/linux/errno.h: +/usr/include/asm/errno.h: +/usr/include/asm-generic/errno.h: +/usr/include/asm-generic/errno-base.h: +/usr/include/bits/types/error_t.h: +/usr/include/sys/wait.h: +/usr/include/signal.h: +/usr/include/bits/signum-generic.h: +/usr/include/bits/signum-arch.h: +/usr/include/bits/types/sig_atomic_t.h: +/usr/include/bits/types/siginfo_t.h: +/usr/include/bits/types/__sigval_t.h: +/usr/include/bits/siginfo-arch.h: +/usr/include/bits/siginfo-consts.h: +/usr/include/bits/siginfo-consts-arch.h: +/usr/include/bits/types/sigval_t.h: +/usr/include/bits/types/sigevent_t.h: +/usr/include/bits/sigevent-consts.h: +/usr/include/bits/sigaction.h: +/usr/include/bits/sigcontext.h: +/usr/include/bits/types/stack_t.h: +/usr/include/sys/ucontext.h: +/usr/include/bits/sigstack.h: +/usr/include/bits/sigstksz.h: +/usr/include/bits/ss_flags.h: +/usr/include/bits/types/struct_sigstack.h: +/usr/include/bits/sigthread.h: +/usr/include/bits/signal_ext.h: +/usr/include/bits/types/idtype_t.h: +/usr/include/sys/stat.h: +/usr/include/bits/stat.h: +/usr/include/bits/struct_stat.h: +/usr/include/bits/statx.h: +/usr/include/linux/stat.h: +/usr/include/linux/types.h: +/usr/include/asm/types.h: +/usr/include/asm-generic/types.h: +/usr/include/asm-generic/int-ll64.h: +/usr/include/asm/bitsperlong.h: +/usr/include/asm-generic/bitsperlong.h: +/usr/include/linux/posix_types.h: +/usr/include/linux/stddef.h: +/usr/include/asm/posix_types.h: +/usr/include/asm/posix_types_64.h: +/usr/include/asm-generic/posix_types.h: +/usr/include/bits/statx-generic.h: +/usr/include/bits/types/struct_statx_timestamp.h: +/usr/include/bits/types/struct_statx.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/limits.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/syslimits.h: +/usr/include/limits.h: +/usr/include/bits/posix1_lim.h: +/usr/include/bits/local_lim.h: +/usr/include/linux/limits.h: +/usr/include/bits/pthread_stack_min-dynamic.h: +/usr/include/bits/posix2_lim.h: +/usr/include/bits/xopen_lim.h: +/usr/include/bits/uio_lim.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-convert_iconv.Po b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-convert_iconv.Po new file mode 100644 index 0000000..9a6100c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-convert_iconv.Po @@ -0,0 +1,130 @@ +enca-convert_iconv.o: convert_iconv.c /usr/include/stdc-predef.h common.h \ + ../config.h /usr/include/ctype.h /usr/include/features.h \ + /usr/include/features-time64.h /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/assert.h \ + /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + ../lib/internal.h ../lib/enca.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/memory.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \ + /usr/include/iconv.h ../iconvenc.h +/usr/include/stdc-predef.h: +common.h: +../config.h: +/usr/include/ctype.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/sys/types.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/unistd.h: +/usr/include/bits/posix_opt.h: +/usr/include/bits/environments.h: +/usr/include/bits/confname.h: +/usr/include/bits/getopt_posix.h: +/usr/include/bits/getopt_core.h: +/usr/include/bits/unistd_ext.h: +/usr/include/linux/close_range.h: +/usr/include/assert.h: +/usr/include/stdio.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: +/usr/include/bits/types/__fpos_t.h: +/usr/include/bits/types/__mbstate_t.h: +/usr/include/bits/types/__fpos64_t.h: +/usr/include/bits/types/__FILE.h: +/usr/include/bits/types/FILE.h: +/usr/include/bits/types/struct_FILE.h: +/usr/include/bits/types/cookie_io_functions_t.h: +/usr/include/bits/stdio_lim.h: +/usr/include/bits/stdio.h: +../lib/internal.h: +../lib/enca.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +/usr/include/errno.h: +/usr/include/bits/errno.h: +/usr/include/linux/errno.h: +/usr/include/asm/errno.h: +/usr/include/asm-generic/errno.h: +/usr/include/asm-generic/errno-base.h: +/usr/include/bits/types/error_t.h: +/usr/include/iconv.h: +../iconvenc.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-convert_recode.Po b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-convert_recode.Po new file mode 100644 index 0000000..28c604e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-convert_recode.Po @@ -0,0 +1,127 @@ +enca-convert_recode.o: convert_recode.c /usr/include/stdc-predef.h \ + common.h ../config.h /usr/include/ctype.h /usr/include/features.h \ + /usr/include/features-time64.h /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/assert.h \ + /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + ../lib/internal.h ../lib/enca.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/memory.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h +/usr/include/stdc-predef.h: +common.h: +../config.h: +/usr/include/ctype.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/sys/types.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/unistd.h: +/usr/include/bits/posix_opt.h: +/usr/include/bits/environments.h: +/usr/include/bits/confname.h: +/usr/include/bits/getopt_posix.h: +/usr/include/bits/getopt_core.h: +/usr/include/bits/unistd_ext.h: +/usr/include/linux/close_range.h: +/usr/include/assert.h: +/usr/include/stdio.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: +/usr/include/bits/types/__fpos_t.h: +/usr/include/bits/types/__mbstate_t.h: +/usr/include/bits/types/__fpos64_t.h: +/usr/include/bits/types/__FILE.h: +/usr/include/bits/types/FILE.h: +/usr/include/bits/types/struct_FILE.h: +/usr/include/bits/types/cookie_io_functions_t.h: +/usr/include/bits/stdio_lim.h: +/usr/include/bits/stdio.h: +../lib/internal.h: +../lib/enca.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +/usr/include/errno.h: +/usr/include/bits/errno.h: +/usr/include/linux/errno.h: +/usr/include/asm/errno.h: +/usr/include/asm-generic/errno.h: +/usr/include/asm-generic/errno-base.h: +/usr/include/bits/types/error_t.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-enca.Po b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-enca.Po new file mode 100644 index 0000000..add7487 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-enca.Po @@ -0,0 +1,142 @@ +enca-enca.o: enca.c /usr/include/stdc-predef.h /usr/include/math.h \ + /usr/include/bits/libc-header-start.h /usr/include/features.h \ + /usr/include/features-time64.h /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/bits/math-vector.h \ + /usr/include/bits/libm-simd-decl-stubs.h /usr/include/bits/floatn.h \ + /usr/include/bits/floatn-common.h /usr/include/bits/flt-eval-method.h \ + /usr/include/bits/fp-logb.h /usr/include/bits/fp-fast.h \ + /usr/include/bits/mathcalls-macros.h \ + /usr/include/bits/mathcalls-helper-functions.h \ + /usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \ + /usr/include/bits/iscanonical.h common.h ../config.h \ + /usr/include/ctype.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/stdlib.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ + /usr/include/assert.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + ../lib/internal.h ../lib/enca.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/memory.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h +/usr/include/stdc-predef.h: +/usr/include/math.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/include/bits/math-vector.h: +/usr/include/bits/libm-simd-decl-stubs.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/flt-eval-method.h: +/usr/include/bits/fp-logb.h: +/usr/include/bits/fp-fast.h: +/usr/include/bits/mathcalls-macros.h: +/usr/include/bits/mathcalls-helper-functions.h: +/usr/include/bits/mathcalls.h: +/usr/include/bits/mathcalls-narrow.h: +/usr/include/bits/iscanonical.h: +common.h: +../config.h: +/usr/include/ctype.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/stdlib.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/sys/types.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/unistd.h: +/usr/include/bits/posix_opt.h: +/usr/include/bits/environments.h: +/usr/include/bits/confname.h: +/usr/include/bits/getopt_posix.h: +/usr/include/bits/getopt_core.h: +/usr/include/bits/unistd_ext.h: +/usr/include/assert.h: +/usr/include/stdio.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: +/usr/include/bits/types/__fpos_t.h: +/usr/include/bits/types/__mbstate_t.h: +/usr/include/bits/types/__fpos64_t.h: +/usr/include/bits/types/__FILE.h: +/usr/include/bits/types/FILE.h: +/usr/include/bits/types/struct_FILE.h: +/usr/include/bits/types/cookie_io_functions_t.h: +/usr/include/bits/stdio_lim.h: +/usr/include/bits/stdio.h: +../lib/internal.h: +../lib/enca.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +/usr/include/errno.h: +/usr/include/bits/errno.h: +/usr/include/linux/errno.h: +/usr/include/asm/errno.h: +/usr/include/asm-generic/errno.h: +/usr/include/asm-generic/errno-base.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-filebuf.Po b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-filebuf.Po new file mode 100644 index 0000000..64a2723 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-filebuf.Po @@ -0,0 +1,169 @@ +enca-filebuf.o: filebuf.c /usr/include/stdc-predef.h common.h ../config.h \ + /usr/include/ctype.h /usr/include/features.h \ + /usr/include/features-time64.h /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/assert.h \ + /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + ../lib/internal.h ../lib/enca.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/memory.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \ + /usr/include/sys/stat.h /usr/include/bits/stat.h \ + /usr/include/bits/struct_stat.h /usr/include/bits/statx.h \ + /usr/include/linux/stat.h /usr/include/linux/types.h \ + /usr/include/asm/types.h /usr/include/asm-generic/types.h \ + /usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \ + /usr/include/bits/statx-generic.h \ + /usr/include/bits/types/struct_statx_timestamp.h \ + /usr/include/bits/types/struct_statx.h /usr/include/fcntl.h \ + /usr/include/bits/fcntl.h /usr/include/bits/fcntl-linux.h \ + /usr/include/bits/types/struct_iovec.h /usr/include/bits/cloexec.h \ + /usr/include/linux/falloc.h /usr/include/linux/openat2.h \ + /usr/include/bits/openat2.h +/usr/include/stdc-predef.h: +common.h: +../config.h: +/usr/include/ctype.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/sys/types.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/unistd.h: +/usr/include/bits/posix_opt.h: +/usr/include/bits/environments.h: +/usr/include/bits/confname.h: +/usr/include/bits/getopt_posix.h: +/usr/include/bits/getopt_core.h: +/usr/include/bits/unistd_ext.h: +/usr/include/linux/close_range.h: +/usr/include/assert.h: +/usr/include/stdio.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: +/usr/include/bits/types/__fpos_t.h: +/usr/include/bits/types/__mbstate_t.h: +/usr/include/bits/types/__fpos64_t.h: +/usr/include/bits/types/__FILE.h: +/usr/include/bits/types/FILE.h: +/usr/include/bits/types/struct_FILE.h: +/usr/include/bits/types/cookie_io_functions_t.h: +/usr/include/bits/stdio_lim.h: +/usr/include/bits/stdio.h: +../lib/internal.h: +../lib/enca.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +/usr/include/errno.h: +/usr/include/bits/errno.h: +/usr/include/linux/errno.h: +/usr/include/asm/errno.h: +/usr/include/asm-generic/errno.h: +/usr/include/asm-generic/errno-base.h: +/usr/include/bits/types/error_t.h: +/usr/include/sys/stat.h: +/usr/include/bits/stat.h: +/usr/include/bits/struct_stat.h: +/usr/include/bits/statx.h: +/usr/include/linux/stat.h: +/usr/include/linux/types.h: +/usr/include/asm/types.h: +/usr/include/asm-generic/types.h: +/usr/include/asm-generic/int-ll64.h: +/usr/include/asm/bitsperlong.h: +/usr/include/asm-generic/bitsperlong.h: +/usr/include/linux/posix_types.h: +/usr/include/linux/stddef.h: +/usr/include/asm/posix_types.h: +/usr/include/asm/posix_types_64.h: +/usr/include/asm-generic/posix_types.h: +/usr/include/bits/statx-generic.h: +/usr/include/bits/types/struct_statx_timestamp.h: +/usr/include/bits/types/struct_statx.h: +/usr/include/fcntl.h: +/usr/include/bits/fcntl.h: +/usr/include/bits/fcntl-linux.h: +/usr/include/bits/types/struct_iovec.h: +/usr/include/bits/cloexec.h: +/usr/include/linux/falloc.h: +/usr/include/linux/openat2.h: +/usr/include/bits/openat2.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-locale_detect.Po b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-locale_detect.Po new file mode 100644 index 0000000..d30436f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-locale_detect.Po @@ -0,0 +1,133 @@ +enca-locale_detect.o: locale_detect.c /usr/include/stdc-predef.h common.h \ + ../config.h /usr/include/ctype.h /usr/include/features.h \ + /usr/include/features-time64.h /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/assert.h \ + /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + ../lib/internal.h ../lib/enca.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/memory.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \ + /usr/include/locale.h /usr/include/bits/locale.h /usr/include/langinfo.h \ + /usr/include/nl_types.h +/usr/include/stdc-predef.h: +common.h: +../config.h: +/usr/include/ctype.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/sys/types.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/unistd.h: +/usr/include/bits/posix_opt.h: +/usr/include/bits/environments.h: +/usr/include/bits/confname.h: +/usr/include/bits/getopt_posix.h: +/usr/include/bits/getopt_core.h: +/usr/include/bits/unistd_ext.h: +/usr/include/linux/close_range.h: +/usr/include/assert.h: +/usr/include/stdio.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: +/usr/include/bits/types/__fpos_t.h: +/usr/include/bits/types/__mbstate_t.h: +/usr/include/bits/types/__fpos64_t.h: +/usr/include/bits/types/__FILE.h: +/usr/include/bits/types/FILE.h: +/usr/include/bits/types/struct_FILE.h: +/usr/include/bits/types/cookie_io_functions_t.h: +/usr/include/bits/stdio_lim.h: +/usr/include/bits/stdio.h: +../lib/internal.h: +../lib/enca.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +/usr/include/errno.h: +/usr/include/bits/errno.h: +/usr/include/linux/errno.h: +/usr/include/asm/errno.h: +/usr/include/asm-generic/errno.h: +/usr/include/asm-generic/errno-base.h: +/usr/include/bits/types/error_t.h: +/usr/include/locale.h: +/usr/include/bits/locale.h: +/usr/include/langinfo.h: +/usr/include/nl_types.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-options.Po b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-options.Po new file mode 100644 index 0000000..7e6bb82 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/enca-options.Po @@ -0,0 +1,130 @@ +enca-options.o: options.c /usr/include/stdc-predef.h common.h ../config.h \ + /usr/include/ctype.h /usr/include/features.h \ + /usr/include/features-time64.h /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/sys/types.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/unistd.h \ + /usr/include/bits/posix_opt.h /usr/include/bits/environments.h \ + /usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \ + /usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/assert.h \ + /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + ../lib/internal.h ../lib/enca.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/memory.h /usr/include/errno.h \ + /usr/include/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/asm/errno.h /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/errno-base.h /usr/include/bits/types/error_t.h \ + getopt.h /usr/include/wordexp.h +/usr/include/stdc-predef.h: +common.h: +../config.h: +/usr/include/ctype.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/sys/types.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/unistd.h: +/usr/include/bits/posix_opt.h: +/usr/include/bits/environments.h: +/usr/include/bits/confname.h: +/usr/include/bits/getopt_posix.h: +/usr/include/bits/getopt_core.h: +/usr/include/bits/unistd_ext.h: +/usr/include/linux/close_range.h: +/usr/include/assert.h: +/usr/include/stdio.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: +/usr/include/bits/types/__fpos_t.h: +/usr/include/bits/types/__mbstate_t.h: +/usr/include/bits/types/__fpos64_t.h: +/usr/include/bits/types/__FILE.h: +/usr/include/bits/types/FILE.h: +/usr/include/bits/types/struct_FILE.h: +/usr/include/bits/types/cookie_io_functions_t.h: +/usr/include/bits/stdio_lim.h: +/usr/include/bits/stdio.h: +../lib/internal.h: +../lib/enca.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +/usr/include/errno.h: +/usr/include/bits/errno.h: +/usr/include/linux/errno.h: +/usr/include/asm/errno.h: +/usr/include/asm-generic/errno.h: +/usr/include/asm-generic/errno-base.h: +/usr/include/bits/types/error_t.h: +getopt.h: +/usr/include/wordexp.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/.deps/getopt_long.Po b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/getopt_long.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/.deps/getopt_long.Po @@ -0,0 +1 @@ +# dummy diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/COPYING.c b/wlx/wayland_qt_base/build/enca-1.19/src/COPYING.c new file mode 100644 index 0000000..749153f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/COPYING.c @@ -0,0 +1,347 @@ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ +#include "common.h" +const char *const COPYING_text[] = { + "", + " GNU GENERAL PUBLIC LICENSE", + " Version 2, June 1991", + "", + " Copyright (C) 1989, 1991 Free Software Foundation, Inc.", + " 59 Temple Place, Suite 330, Boston, MA 02111 USA", + " Everyone is permitted to copy and distribute verbatim copies", + " of this license document, but changing it is not allowed.", + "", + " Preamble", + "", + " The licenses for most software are designed to take away your", + "freedom to share and change it. By contrast, the GNU General Public", + "License is intended to guarantee your freedom to share and change free", + "software--to make sure the software is free for all its users. This", + "General Public License applies to most of the Free Software", + "Foundation's software and to any other program whose authors commit to", + "using it. (Some other Free Software Foundation software is covered by", + "the GNU Library General Public License instead.) You can apply it to", + "your programs, too.", + "", + " When we speak of free software, we are referring to freedom, not", + "price. Our General Public Licenses are designed to make sure that you", + "have the freedom to distribute copies of free software (and charge for", + "this service if you wish), that you receive source code or can get it", + "if you want it, that you can change the software or use pieces of it", + "in new free programs; and that you know you can do these things.", + "", + " To protect your rights, we need to make restrictions that forbid", + "anyone to deny you these rights or to ask you to surrender the rights.", + "These restrictions translate to certain responsibilities for you if you", + "distribute copies of the software, or if you modify it.", + "", + " For example, if you distribute copies of such a program, whether", + "gratis or for a fee, you must give the recipients all the rights that", + "you have. You must make sure that they, too, receive or can get the", + "source code. And you must show them these terms so they know their", + "rights.", + "", + " We protect your rights with two steps: (1) copyright the software, and", + "(2) offer you this license which gives you legal permission to copy,", + "distribute and/or modify the software.", + "", + " Also, for each author's protection and ours, we want to make certain", + "that everyone understands that there is no warranty for this free", + "software. If the software is modified by someone else and passed on, we", + "want its recipients to know that what they have is not the original, so", + "that any problems introduced by others will not reflect on the original", + "authors' reputations.", + "", + " Finally, any free program is threatened constantly by software", + "patents. We wish to avoid the danger that redistributors of a free", + "program will individually obtain patent licenses, in effect making the", + "program proprietary. To prevent this, we have made it clear that any", + "patent must be licensed for everyone's free use or not licensed at all.", + "", + " The precise terms and conditions for copying, distribution and", + "modification follow.", + " ", + " GNU GENERAL PUBLIC LICENSE", + " TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION", + "", + " 0. This License applies to any program or other work which contains", + "a notice placed by the copyright holder saying it may be distributed", + "under the terms of this General Public License. The \"Program\", below,", + "refers to any such program or work, and a \"work based on the Program\"", + "means either the Program or any derivative work under copyright law:", + "that is to say, a work containing the Program or a portion of it,", + "either verbatim or with modifications and/or translated into another", + "language. (Hereinafter, translation is included without limitation in", + "the term \"modification\".) Each licensee is addressed as \"you\".", + "", + "Activities other than copying, distribution and modification are not", + "covered by this License; they are outside its scope. The act of", + "running the Program is not restricted, and the output from the Program", + "is covered only if its contents constitute a work based on the", + "Program (independent of having been made by running the Program).", + "Whether that is true depends on what the Program does.", + "", + " 1. You may copy and distribute verbatim copies of the Program's", + "source code as you receive it, in any medium, provided that you", + "conspicuously and appropriately publish on each copy an appropriate", + "copyright notice and disclaimer of warranty; keep intact all the", + "notices that refer to this License and to the absence of any warranty;", + "and give any other recipients of the Program a copy of this License", + "along with the Program.", + "", + "You may charge a fee for the physical act of transferring a copy, and", + "you may at your option offer warranty protection in exchange for a fee.", + "", + " 2. You may modify your copy or copies of the Program or any portion", + "of it, thus forming a work based on the Program, and copy and", + "distribute such modifications or work under the terms of Section 1", + "above, provided that you also meet all of these conditions:", + "", + " a) You must cause the modified files to carry prominent notices", + " stating that you changed the files and the date of any change.", + "", + " b) You must cause any work that you distribute or publish, that in", + " whole or in part contains or is derived from the Program or any", + " part thereof, to be licensed as a whole at no charge to all third", + " parties under the terms of this License.", + "", + " c) If the modified program normally reads commands interactively", + " when run, you must cause it, when started running for such", + " interactive use in the most ordinary way, to print or display an", + " announcement including an appropriate copyright notice and a", + " notice that there is no warranty (or else, saying that you provide", + " a warranty) and that users may redistribute the program under", + " these conditions, and telling the user how to view a copy of this", + " License. (Exception: if the Program itself is interactive but", + " does not normally print such an announcement, your work based on", + " the Program is not required to print an announcement.)", + " ", + "These requirements apply to the modified work as a whole. If", + "identifiable sections of that work are not derived from the Program,", + "and can be reasonably considered independent and separate works in", + "themselves, then this License, and its terms, do not apply to those", + "sections when you distribute them as separate works. But when you", + "distribute the same sections as part of a whole which is a work based", + "on the Program, the distribution of the whole must be on the terms of", + "this License, whose permissions for other licensees extend to the", + "entire whole, and thus to each and every part regardless of who wrote it.", + "", + "Thus, it is not the intent of this section to claim rights or contest", + "your rights to work written entirely by you; rather, the intent is to", + "exercise the right to control the distribution of derivative or", + "collective works based on the Program.", + "", + "In addition, mere aggregation of another work not based on the Program", + "with the Program (or with a work based on the Program) on a volume of", + "a storage or distribution medium does not bring the other work under", + "the scope of this License.", + "", + " 3. You may copy and distribute the Program (or a work based on it,", + "under Section 2) in object code or executable form under the terms of", + "Sections 1 and 2 above provided that you also do one of the following:", + "", + " a) Accompany it with the complete corresponding machine-readable", + " source code, which must be distributed under the terms of Sections", + " 1 and 2 above on a medium customarily used for software interchange; or,", + "", + " b) Accompany it with a written offer, valid for at least three", + " years, to give any third party, for a charge no more than your", + " cost of physically performing source distribution, a complete", + " machine-readable copy of the corresponding source code, to be", + " distributed under the terms of Sections 1 and 2 above on a medium", + " customarily used for software interchange; or,", + "", + " c) Accompany it with the information you received as to the offer", + " to distribute corresponding source code. (This alternative is", + " allowed only for noncommercial distribution and only if you", + " received the program in object code or executable form with such", + " an offer, in accord with Subsection b above.)", + "", + "The source code for a work means the preferred form of the work for", + "making modifications to it. For an executable work, complete source", + "code means all the source code for all modules it contains, plus any", + "associated interface definition files, plus the scripts used to", + "control compilation and installation of the executable. However, as a", + "special exception, the source code distributed need not include", + "anything that is normally distributed (in either source or binary", + "form) with the major components (compiler, kernel, and so on) of the", + "operating system on which the executable runs, unless that component", + "itself accompanies the executable.", + "", + "If distribution of executable or object code is made by offering", + "access to copy from a designated place, then offering equivalent", + "access to copy the source code from the same place counts as", + "distribution of the source code, even though third parties are not", + "compelled to copy the source along with the object code.", + " ", + " 4. You may not copy, modify, sublicense, or distribute the Program", + "except as expressly provided under this License. Any attempt", + "otherwise to copy, modify, sublicense or distribute the Program is", + "void, and will automatically terminate your rights under this License.", + "However, parties who have received copies, or rights, from you under", + "this License will not have their licenses terminated so long as such", + "parties remain in full compliance.", + "", + " 5. You are not required to accept this License, since you have not", + "signed it. However, nothing else grants you permission to modify or", + "distribute the Program or its derivative works. These actions are", + "prohibited by law if you do not accept this License. Therefore, by", + "modifying or distributing the Program (or any work based on the", + "Program), you indicate your acceptance of this License to do so, and", + "all its terms and conditions for copying, distributing or modifying", + "the Program or works based on it.", + "", + " 6. Each time you redistribute the Program (or any work based on the", + "Program), the recipient automatically receives a license from the", + "original licensor to copy, distribute or modify the Program subject to", + "these terms and conditions. You may not impose any further", + "restrictions on the recipients' exercise of the rights granted herein.", + "You are not responsible for enforcing compliance by third parties to", + "this License.", + "", + " 7. If, as a consequence of a court judgment or allegation of patent", + "infringement or for any other reason (not limited to patent issues),", + "conditions are imposed on you (whether by court order, agreement or", + "otherwise) that contradict the conditions of this License, they do not", + "excuse you from the conditions of this License. If you cannot", + "distribute so as to satisfy simultaneously your obligations under this", + "License and any other pertinent obligations, then as a consequence you", + "may not distribute the Program at all. For example, if a patent", + "license would not permit royalty-free redistribution of the Program by", + "all those who receive copies directly or indirectly through you, then", + "the only way you could satisfy both it and this License would be to", + "refrain entirely from distribution of the Program.", + "", + "If any portion of this section is held invalid or unenforceable under", + "any particular circumstance, the balance of the section is intended to", + "apply and the section as a whole is intended to apply in other", + "circumstances.", + "", + "It is not the purpose of this section to induce you to infringe any", + "patents or other property right claims or to contest validity of any", + "such claims; this section has the sole purpose of protecting the", + "integrity of the free software distribution system, which is", + "implemented by public license practices. Many people have made", + "generous contributions to the wide range of software distributed", + "through that system in reliance on consistent application of that", + "system; it is up to the author/donor to decide if he or she is willing", + "to distribute software through any other system and a licensee cannot", + "impose that choice.", + "", + "This section is intended to make thoroughly clear what is believed to", + "be a consequence of the rest of this License.", + " ", + " 8. If the distribution and/or use of the Program is restricted in", + "certain countries either by patents or by copyrighted interfaces, the", + "original copyright holder who places the Program under this License", + "may add an explicit geographical distribution limitation excluding", + "those countries, so that distribution is permitted only in or among", + "countries not thus excluded. In such case, this License incorporates", + "the limitation as if written in the body of this License.", + "", + " 9. The Free Software Foundation may publish revised and/or new versions", + "of the General Public License from time to time. Such new versions will", + "be similar in spirit to the present version, but may differ in detail to", + "address new problems or concerns.", + "", + "Each version is given a distinguishing version number. If the Program", + "specifies a version number of this License which applies to it and \"any", + "later version\", you have the option of following the terms and conditions", + "either of that version or of any later version published by the Free", + "Software Foundation. If the Program does not specify a version number of", + "this License, you may choose any version ever published by the Free Software", + "Foundation.", + "", + " 10. If you wish to incorporate parts of the Program into other free", + "programs whose distribution conditions are different, write to the author", + "to ask for permission. For software which is copyrighted by the Free", + "Software Foundation, write to the Free Software Foundation; we sometimes", + "make exceptions for this. Our decision will be guided by the two goals", + "of preserving the free status of all derivatives of our free software and", + "of promoting the sharing and reuse of software generally.", + "", + " NO WARRANTY", + "", + " 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY", + "FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN", + "OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES", + "PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED", + "OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF", + "MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS", + "TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE", + "PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,", + "REPAIR OR CORRECTION.", + "", + " 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING", + "WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR", + "REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,", + "INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING", + "OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED", + "TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY", + "YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER", + "PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE", + "POSSIBILITY OF SUCH DAMAGES.", + "", + " END OF TERMS AND CONDITIONS", + " ", + " Appendix: How to Apply These Terms to Your New Programs", + "", + " If you develop a new program, and you want it to be of the greatest", + "possible use to the public, the best way to achieve this is to make it", + "free software which everyone can redistribute and change under these terms.", + "", + " To do so, attach the following notices to the program. It is safest", + "to attach them to the start of each source file to most effectively", + "convey the exclusion of warranty; and each file should have at least", + "the \"copyright\" line and a pointer to where the full notice is found.", + "", + " ", + " Copyright (C) 19yy ", + "", + " This program is free software; you can redistribute it and/or modify", + " it under the terms of the GNU General Public License as published by", + " the Free Software Foundation; either version 2 of the License, or", + " (at your option) any later version.", + "", + " This program is distributed in the hope that it will be useful,", + " but WITHOUT ANY WARRANTY; without even the implied warranty of", + " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the", + " GNU General Public License for more details.", + "", + " You should have received a copy of the GNU General Public License", + " along with this program; if not, write to the Free Software", + " Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA", + "", + "Also add information on how to contact you by electronic and paper mail.", + "", + "If the program is interactive, make it output a short notice like this", + "when it starts in an interactive mode:", + "", + " Gnomovision version 69, Copyright (C) 19yy name of author", + " Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.", + " This is free software, and you are welcome to redistribute it", + " under certain conditions; type `show c' for details.", + "", + "The hypothetical commands `show w' and `show c' should show the appropriate", + "parts of the General Public License. Of course, the commands you use may", + "be called something other than `show w' and `show c'; they could even be", + "mouse-clicks or menu items--whatever suits your program.", + "", + "You should also get your employer (if you work as a programmer) or your", + "school, if any, to sign a \"copyright disclaimer\" for the program, if", + "necessary. Here is a sample; alter the names:", + "", + " Yoyodyne, Inc., hereby disclaims all copyright interest in the program", + " `Gnomovision' (which makes passes at compilers) written by James Hacker.", + "", + " , 1 April 1989", + " Ty Coon, President of Vice", + "", + "This General Public License does not permit incorporating your program into", + "proprietary programs. If your program is a subroutine library, you may", + "consider it more useful to permit linking proprietary applications with the", + "library. If this is what you want to do, use the GNU Library General", + "Public License instead of this License.", + NULL +}; diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/HELP b/wlx/wayland_qt_base/build/enca-1.19/src/HELP new file mode 100644 index 0000000..15b9de5 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/HELP @@ -0,0 +1,50 @@ +Usage: enca [-L LANGUAGE] [OPTION]... [FILE]... + enconv [-L LANGUAGE] [OPTION]... [FILE]... +Detect encoding of text files and convert them if required. + +Operation modes: + -g, --guess Behave as `enca' (just detect encoding by default) + -c, --auto-convert Behave as `enconv' (autoconvert by default) + +Output type selectors: + -d, --details Print failure reason when encoding was not recognized + -e, --enca-name Print enca's encoding name (passed to converters) + -f, --human-readable Print full (descriptive) encoding name (default) + -i, --iconv-name Print how iconv calls the encoding + -m, --mime-name Print preferred MIME encoding name + -r, --rfc1345-name Print RFC 1345 (or otherwise canonized) encoding name + -s, --cstocs-name Print how cstocs calls the encoding + -n, --name=WORD Print required name (enca-name, human-readable, etc.) + -x, --convert-to=ENC Convert file to some other encoding ENC + +Guessing parameters: + -L, --language=LANG Set language of FILEs; obligatory, when cannot be + determined from locale settings + +Conversion parameters: + -E, --external-converter-program=PATH + Set external converter program name + (default: recode) + -C, --try-converters=LIST Converters to be tried (associative) + (default: built-in,iconv) + +General options: + -p, --with-filename Print the file name for each result + -P, --no-filename Suppress the prefixing filename on output + -V, --verbose Increase verbosity level + +Listings: + -G, --license Print full enca license and terminate + -h, --help Print this help and terminate + -l, --list=WORD Print required list (built-in-charsets, converters, + charsets, languages, lists, names, surfaces) + and terminate + -v, --version Print version and build information and terminate + +With no FILE, reads standard input and possibly writes converted stream to +standard output. Exit status is 0 if all files were successfully proceeded, +1 if some were not recognized or converted, 2 in real troubles. + +When called as `enconv' without -x, target encoding it guessed from locales. + +Report bugs to https://github.com/nijel/enca/issues diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/HELP.c b/wlx/wayland_qt_base/build/enca-1.19/src/HELP.c new file mode 100644 index 0000000..e95ddb1 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/HELP.c @@ -0,0 +1,57 @@ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ +#include "common.h" +const char *const HELP_text[] = { + "Usage: enca [-L LANGUAGE] [OPTION]... [FILE]...", + " enconv [-L LANGUAGE] [OPTION]... [FILE]...", + "Detect encoding of text files and convert them if required.", + "", + "Operation modes:", + " -g, --guess Behave as `enca' (just detect encoding by default)", + " -c, --auto-convert Behave as `enconv' (autoconvert by default)", + "", + "Output type selectors:", + " -d, --details Print failure reason when encoding was not recognized", + " -e, --enca-name Print enca's encoding name (passed to converters)", + " -f, --human-readable Print full (descriptive) encoding name (default)", + " -i, --iconv-name Print how iconv calls the encoding", + " -m, --mime-name Print preferred MIME encoding name", + " -r, --rfc1345-name Print RFC 1345 (or otherwise canonized) encoding name", + " -s, --cstocs-name Print how cstocs calls the encoding", + " -n, --name=WORD Print required name (enca-name, human-readable, etc.)", + " -x, --convert-to=ENC Convert file to some other encoding ENC", + "", + "Guessing parameters:", + " -L, --language=LANG Set language of FILEs; obligatory, when cannot be", + " determined from locale settings", + "", + "Conversion parameters:", + " -E, --external-converter-program=PATH", + " Set external converter program name", + " (default: recode)", + " -C, --try-converters=LIST Converters to be tried (associative)", + " (default: built-in,iconv)", + "", + "General options:", + " -p, --with-filename Print the file name for each result", + " -P, --no-filename Suppress the prefixing filename on output", + " -V, --verbose Increase verbosity level", + "", + "Listings:", + " -G, --license Print full enca license and terminate", + " -h, --help Print this help and terminate", + " -l, --list=WORD Print required list (built-in-charsets, converters,", + " charsets, languages, lists, names, surfaces)", + " and terminate", + " -v, --version Print version and build information and terminate", + "", + "With no FILE, reads standard input and possibly writes converted stream to", + "standard output. Exit status is 0 if all files were successfully proceeded,", + "1 if some were not recognized or converted, 2 in real troubles.", + "", + "When called as `enconv' without -x, target encoding it guessed from locales.", + "", + "Report bugs to https://github.com/nijel/enca/issues", + NULL +}; diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/HELP.in b/wlx/wayland_qt_base/build/enca-1.19/src/HELP.in new file mode 100644 index 0000000..642b61b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/HELP.in @@ -0,0 +1,50 @@ +Usage: enca [-L LANGUAGE] [OPTION]... [FILE]... + enconv [-L LANGUAGE] [OPTION]... [FILE]... +Detect encoding of text files and convert them if required. + +Operation modes: + -g, --guess Behave as `enca' (just detect encoding by default) + -c, --auto-convert Behave as `enconv' (autoconvert by default) + +Output type selectors: + -d, --details Print failure reason when encoding was not recognized + -e, --enca-name Print enca's encoding name (passed to converters) + -f, --human-readable Print full (descriptive) encoding name (default) + -i, --iconv-name Print how iconv calls the encoding + -m, --mime-name Print preferred MIME encoding name + -r, --rfc1345-name Print RFC 1345 (or otherwise canonized) encoding name + -s, --cstocs-name Print how cstocs calls the encoding + -n, --name=WORD Print required name (enca-name, human-readable, etc.) + -x, --convert-to=ENC Convert file to some other encoding ENC + +Guessing parameters: + -L, --language=LANG Set language of FILEs; obligatory, when cannot be + determined from locale settings + +Conversion parameters: + -E, --external-converter-program=PATH + Set external converter program name + (default: @DEFAULT_EXTERNAL_CONVERTER@) + -C, --try-converters=LIST Converters to be tried (associative) + (default: @DEFAULT_CONVERTER_LIST@) + +General options: + -p, --with-filename Print the file name for each result + -P, --no-filename Suppress the prefixing filename on output + -V, --verbose Increase verbosity level + +Listings: + -G, --license Print full enca license and terminate + -h, --help Print this help and terminate + -l, --list=WORD Print required list (built-in-charsets, converters, + charsets, languages, lists, names, surfaces) + and terminate + -v, --version Print version and build information and terminate + +With no FILE, reads standard input and possibly writes converted stream to +standard output. Exit status is 0 if all files were successfully proceeded, +1 if some were not recognized or converted, 2 in real troubles. + +When called as `enconv' without -x, target encoding it guessed from locales. + +Report bugs to @PACKAGE_BUGREPORT@ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/Makefile b/wlx/wayland_qt_base/build/enca-1.19/src/Makefile new file mode 100644 index 0000000..5a666df --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/Makefile @@ -0,0 +1,898 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# src/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + + + +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/enca +pkgincludedir = $(includedir)/enca +pkglibdir = $(libdir)/enca +pkglibexecdir = $(libexecdir)/enca +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-pc-linux-gnu +host_triplet = x86_64-pc-linux-gnu +bin_PROGRAMS = enca$(EXEEXT) +subdir = src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = HELP +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am_enca_OBJECTS = enca-COPYING.$(OBJEXT) enca-HELP.$(OBJEXT) \ + enca-convert.$(OBJEXT) enca-convert_extern.$(OBJEXT) \ + enca-convert_recode.$(OBJEXT) enca-convert_iconv.$(OBJEXT) \ + enca-enca.$(OBJEXT) enca-filebuf.$(OBJEXT) \ + enca-locale_detect.$(OBJEXT) enca-options.$(OBJEXT) +enca_OBJECTS = $(am_enca_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +enca_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(enca_LDFLAGS) $(LDFLAGS) -o $@ +SCRIPTS = $(noinst_SCRIPTS) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(enca_SOURCES) $(EXTRA_enca_SOURCES) +DIST_SOURCES = $(enca_SOURCES) $(EXTRA_enca_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__DIST_COMMON = $(srcdir)/HELP.in $(srcdir)/Makefile.in \ + $(top_srcdir)/depcomp $(top_srcdir)/mkinstalldirs \ + getopt_long.c +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing aclocal-1.15 -I m4 +AMTAR = $${TAR-tar} +AM_DEFAULT_VERBOSITY = 1 +AR = ar +AUTOCONF = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoconf +AUTOHEADER = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoheader +AUTOMAKE = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing automake-1.15 +AWK = gawk +CC = /usr/bin/cc +CCDEPMODE = depmode=gcc3 +CFLAGS = -Wall -Wextra -W -pedantic -g -O2 +CONVERTER_LIBS = +CPP = /usr/bin/cc -E +CPPFLAGS = +CSTOCS_PROG = +CYGPATH_W = echo +DEFAULT_CONVERTER_LIST = built-in,iconv +DEFAULT_EXTERNAL_CONVERTER = recode +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +FGREP = /usr/bin/grep -F +GCOV = /usr/bin/gcov +GCOV_CPPFLAGS = +GCOV_FLAGS = +GCOV_LDFLAGS = +GREP = /usr/bin/grep +GTKDOC = false +HTML_DIR = ${datarootdir}/gtk-doc/html +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBICONV = +LIBM = -lm +LIBOBJS = +LIBS = -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LN_S = ln -s +LTLIBICONV = +LTLIBOBJS = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing makeinfo +MANIFEST_TOOL = : +MAP_PROG = +MKDIR_P = /usr/bin/mkdir -p +MKTEMP_PROG = /usr/bin/mktemp +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = enca +PACKAGE_BUGREPORT = https://github.com/nijel/enca/issues +PACKAGE_NAME = Enca +PACKAGE_STRING = Enca 1.19 +PACKAGE_TARNAME = enca +PACKAGE_URL = +PACKAGE_VERSION = 1.19 +PATH_SEPARATOR = : +PICONV_PROG = /usr/bin/core_perl/piconv +RANLIB = ranlib +RECODE_PROG = /usr/bin/recode +RELEASE = 1 +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SHELL_RANDOM_FILENAME = `/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` +STRIP = strip +UMAP_PROG = +VERSION = 1.19 +abs_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/src +abs_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/src +abs_top_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +abs_top_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +ac_ct_AR = ar +ac_ct_CC = /usr/bin/cc +ac_ct_DUMPBIN = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-pc-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = pc +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} +dvidir = ${docdir} +exec_prefix = ${prefix} +host = x86_64-pc-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = pc +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /usr/local +program_transform_name = s,x,x, +psdir = ${docdir} +runstatedir = ${localstatedir}/run +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = . +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = .. +noinst_SCRIPTS = text2c.sh +enca_SOURCES = \ + COPYING.c \ + HELP.c \ + common.h \ + convert.c \ + convert_extern.c \ + convert_recode.c \ + convert_iconv.c \ + enca.c \ + filebuf.c \ + locale_detect.c \ + options.c + +EXTRA_enca_SOURCES = \ + getopt.h + +BUILT_SOURCES = \ + COPYING.c \ + HELP.c + +EXTRA_DIST = \ + HELP.in \ + text2c.sh + +enca_LDADD = ../lib/libenca.la +enca_LDFLAGS = -lm +enca_DEPENDENCIES = ../lib/libenca.la +enca_CPPFLAGS = -DEXTCONV_DIR=\"${exec_prefix}/libexec/enca/extconv\" +AM_CPPFLAGS = -I$(top_srcdir)/lib $(GCOV_CPPFLAGS) +AM_LDFLAGS = $(GCOV_LDFLAGS) +AM_CFLAGS = $(GCOV_FLAGS) +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits src/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +HELP: $(top_builddir)/config.status $(srcdir)/HELP.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +installcheck-binPROGRAMS: $(bin_PROGRAMS) + bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \ + case ' $(AM_INSTALLCHECK_STD_OPTIONS_EXEMPT) ' in \ + *" $$p "* | *" $(srcdir)/$$p "*) continue;; \ + esac; \ + f=`echo "$$p" | \ + sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ + for opt in --help --version; do \ + if "$(DESTDIR)$(bindir)/$$f" $$opt >c$${pid}_.out \ + 2>c$${pid}_.err &2; bad=1; fi; \ + done; \ + done; rm -f c$${pid}_.???; exit $$bad + +enca$(EXEEXT): $(enca_OBJECTS) $(enca_DEPENDENCIES) $(EXTRA_enca_DEPENDENCIES) + @rm -f enca$(EXEEXT) + $(AM_V_CCLD)$(enca_LINK) $(enca_OBJECTS) $(enca_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include $(DEPDIR)/getopt_long.Po +include ./$(DEPDIR)/enca-COPYING.Po +include ./$(DEPDIR)/enca-HELP.Po +include ./$(DEPDIR)/enca-convert.Po +include ./$(DEPDIR)/enca-convert_extern.Po +include ./$(DEPDIR)/enca-convert_iconv.Po +include ./$(DEPDIR)/enca-convert_recode.Po +include ./$(DEPDIR)/enca-enca.Po +include ./$(DEPDIR)/enca-filebuf.Po +include ./$(DEPDIR)/enca-locale_detect.Po +include ./$(DEPDIR)/enca-options.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +enca-COPYING.o: COPYING.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-COPYING.o -MD -MP -MF $(DEPDIR)/enca-COPYING.Tpo -c -o enca-COPYING.o `test -f 'COPYING.c' || echo '$(srcdir)/'`COPYING.c + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-COPYING.Tpo $(DEPDIR)/enca-COPYING.Po +# $(AM_V_CC)source='COPYING.c' object='enca-COPYING.o' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-COPYING.o `test -f 'COPYING.c' || echo '$(srcdir)/'`COPYING.c + +enca-COPYING.obj: COPYING.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-COPYING.obj -MD -MP -MF $(DEPDIR)/enca-COPYING.Tpo -c -o enca-COPYING.obj `if test -f 'COPYING.c'; then $(CYGPATH_W) 'COPYING.c'; else $(CYGPATH_W) '$(srcdir)/COPYING.c'; fi` + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-COPYING.Tpo $(DEPDIR)/enca-COPYING.Po +# $(AM_V_CC)source='COPYING.c' object='enca-COPYING.obj' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-COPYING.obj `if test -f 'COPYING.c'; then $(CYGPATH_W) 'COPYING.c'; else $(CYGPATH_W) '$(srcdir)/COPYING.c'; fi` + +enca-HELP.o: HELP.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-HELP.o -MD -MP -MF $(DEPDIR)/enca-HELP.Tpo -c -o enca-HELP.o `test -f 'HELP.c' || echo '$(srcdir)/'`HELP.c + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-HELP.Tpo $(DEPDIR)/enca-HELP.Po +# $(AM_V_CC)source='HELP.c' object='enca-HELP.o' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-HELP.o `test -f 'HELP.c' || echo '$(srcdir)/'`HELP.c + +enca-HELP.obj: HELP.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-HELP.obj -MD -MP -MF $(DEPDIR)/enca-HELP.Tpo -c -o enca-HELP.obj `if test -f 'HELP.c'; then $(CYGPATH_W) 'HELP.c'; else $(CYGPATH_W) '$(srcdir)/HELP.c'; fi` + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-HELP.Tpo $(DEPDIR)/enca-HELP.Po +# $(AM_V_CC)source='HELP.c' object='enca-HELP.obj' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-HELP.obj `if test -f 'HELP.c'; then $(CYGPATH_W) 'HELP.c'; else $(CYGPATH_W) '$(srcdir)/HELP.c'; fi` + +enca-convert.o: convert.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert.o -MD -MP -MF $(DEPDIR)/enca-convert.Tpo -c -o enca-convert.o `test -f 'convert.c' || echo '$(srcdir)/'`convert.c + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert.Tpo $(DEPDIR)/enca-convert.Po +# $(AM_V_CC)source='convert.c' object='enca-convert.o' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert.o `test -f 'convert.c' || echo '$(srcdir)/'`convert.c + +enca-convert.obj: convert.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert.obj -MD -MP -MF $(DEPDIR)/enca-convert.Tpo -c -o enca-convert.obj `if test -f 'convert.c'; then $(CYGPATH_W) 'convert.c'; else $(CYGPATH_W) '$(srcdir)/convert.c'; fi` + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert.Tpo $(DEPDIR)/enca-convert.Po +# $(AM_V_CC)source='convert.c' object='enca-convert.obj' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert.obj `if test -f 'convert.c'; then $(CYGPATH_W) 'convert.c'; else $(CYGPATH_W) '$(srcdir)/convert.c'; fi` + +enca-convert_extern.o: convert_extern.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert_extern.o -MD -MP -MF $(DEPDIR)/enca-convert_extern.Tpo -c -o enca-convert_extern.o `test -f 'convert_extern.c' || echo '$(srcdir)/'`convert_extern.c + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert_extern.Tpo $(DEPDIR)/enca-convert_extern.Po +# $(AM_V_CC)source='convert_extern.c' object='enca-convert_extern.o' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert_extern.o `test -f 'convert_extern.c' || echo '$(srcdir)/'`convert_extern.c + +enca-convert_extern.obj: convert_extern.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert_extern.obj -MD -MP -MF $(DEPDIR)/enca-convert_extern.Tpo -c -o enca-convert_extern.obj `if test -f 'convert_extern.c'; then $(CYGPATH_W) 'convert_extern.c'; else $(CYGPATH_W) '$(srcdir)/convert_extern.c'; fi` + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert_extern.Tpo $(DEPDIR)/enca-convert_extern.Po +# $(AM_V_CC)source='convert_extern.c' object='enca-convert_extern.obj' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert_extern.obj `if test -f 'convert_extern.c'; then $(CYGPATH_W) 'convert_extern.c'; else $(CYGPATH_W) '$(srcdir)/convert_extern.c'; fi` + +enca-convert_recode.o: convert_recode.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert_recode.o -MD -MP -MF $(DEPDIR)/enca-convert_recode.Tpo -c -o enca-convert_recode.o `test -f 'convert_recode.c' || echo '$(srcdir)/'`convert_recode.c + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert_recode.Tpo $(DEPDIR)/enca-convert_recode.Po +# $(AM_V_CC)source='convert_recode.c' object='enca-convert_recode.o' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert_recode.o `test -f 'convert_recode.c' || echo '$(srcdir)/'`convert_recode.c + +enca-convert_recode.obj: convert_recode.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert_recode.obj -MD -MP -MF $(DEPDIR)/enca-convert_recode.Tpo -c -o enca-convert_recode.obj `if test -f 'convert_recode.c'; then $(CYGPATH_W) 'convert_recode.c'; else $(CYGPATH_W) '$(srcdir)/convert_recode.c'; fi` + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert_recode.Tpo $(DEPDIR)/enca-convert_recode.Po +# $(AM_V_CC)source='convert_recode.c' object='enca-convert_recode.obj' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert_recode.obj `if test -f 'convert_recode.c'; then $(CYGPATH_W) 'convert_recode.c'; else $(CYGPATH_W) '$(srcdir)/convert_recode.c'; fi` + +enca-convert_iconv.o: convert_iconv.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert_iconv.o -MD -MP -MF $(DEPDIR)/enca-convert_iconv.Tpo -c -o enca-convert_iconv.o `test -f 'convert_iconv.c' || echo '$(srcdir)/'`convert_iconv.c + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert_iconv.Tpo $(DEPDIR)/enca-convert_iconv.Po +# $(AM_V_CC)source='convert_iconv.c' object='enca-convert_iconv.o' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert_iconv.o `test -f 'convert_iconv.c' || echo '$(srcdir)/'`convert_iconv.c + +enca-convert_iconv.obj: convert_iconv.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert_iconv.obj -MD -MP -MF $(DEPDIR)/enca-convert_iconv.Tpo -c -o enca-convert_iconv.obj `if test -f 'convert_iconv.c'; then $(CYGPATH_W) 'convert_iconv.c'; else $(CYGPATH_W) '$(srcdir)/convert_iconv.c'; fi` + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert_iconv.Tpo $(DEPDIR)/enca-convert_iconv.Po +# $(AM_V_CC)source='convert_iconv.c' object='enca-convert_iconv.obj' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert_iconv.obj `if test -f 'convert_iconv.c'; then $(CYGPATH_W) 'convert_iconv.c'; else $(CYGPATH_W) '$(srcdir)/convert_iconv.c'; fi` + +enca-enca.o: enca.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-enca.o -MD -MP -MF $(DEPDIR)/enca-enca.Tpo -c -o enca-enca.o `test -f 'enca.c' || echo '$(srcdir)/'`enca.c + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-enca.Tpo $(DEPDIR)/enca-enca.Po +# $(AM_V_CC)source='enca.c' object='enca-enca.o' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-enca.o `test -f 'enca.c' || echo '$(srcdir)/'`enca.c + +enca-enca.obj: enca.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-enca.obj -MD -MP -MF $(DEPDIR)/enca-enca.Tpo -c -o enca-enca.obj `if test -f 'enca.c'; then $(CYGPATH_W) 'enca.c'; else $(CYGPATH_W) '$(srcdir)/enca.c'; fi` + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-enca.Tpo $(DEPDIR)/enca-enca.Po +# $(AM_V_CC)source='enca.c' object='enca-enca.obj' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-enca.obj `if test -f 'enca.c'; then $(CYGPATH_W) 'enca.c'; else $(CYGPATH_W) '$(srcdir)/enca.c'; fi` + +enca-filebuf.o: filebuf.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-filebuf.o -MD -MP -MF $(DEPDIR)/enca-filebuf.Tpo -c -o enca-filebuf.o `test -f 'filebuf.c' || echo '$(srcdir)/'`filebuf.c + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-filebuf.Tpo $(DEPDIR)/enca-filebuf.Po +# $(AM_V_CC)source='filebuf.c' object='enca-filebuf.o' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-filebuf.o `test -f 'filebuf.c' || echo '$(srcdir)/'`filebuf.c + +enca-filebuf.obj: filebuf.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-filebuf.obj -MD -MP -MF $(DEPDIR)/enca-filebuf.Tpo -c -o enca-filebuf.obj `if test -f 'filebuf.c'; then $(CYGPATH_W) 'filebuf.c'; else $(CYGPATH_W) '$(srcdir)/filebuf.c'; fi` + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-filebuf.Tpo $(DEPDIR)/enca-filebuf.Po +# $(AM_V_CC)source='filebuf.c' object='enca-filebuf.obj' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-filebuf.obj `if test -f 'filebuf.c'; then $(CYGPATH_W) 'filebuf.c'; else $(CYGPATH_W) '$(srcdir)/filebuf.c'; fi` + +enca-locale_detect.o: locale_detect.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-locale_detect.o -MD -MP -MF $(DEPDIR)/enca-locale_detect.Tpo -c -o enca-locale_detect.o `test -f 'locale_detect.c' || echo '$(srcdir)/'`locale_detect.c + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-locale_detect.Tpo $(DEPDIR)/enca-locale_detect.Po +# $(AM_V_CC)source='locale_detect.c' object='enca-locale_detect.o' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-locale_detect.o `test -f 'locale_detect.c' || echo '$(srcdir)/'`locale_detect.c + +enca-locale_detect.obj: locale_detect.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-locale_detect.obj -MD -MP -MF $(DEPDIR)/enca-locale_detect.Tpo -c -o enca-locale_detect.obj `if test -f 'locale_detect.c'; then $(CYGPATH_W) 'locale_detect.c'; else $(CYGPATH_W) '$(srcdir)/locale_detect.c'; fi` + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-locale_detect.Tpo $(DEPDIR)/enca-locale_detect.Po +# $(AM_V_CC)source='locale_detect.c' object='enca-locale_detect.obj' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-locale_detect.obj `if test -f 'locale_detect.c'; then $(CYGPATH_W) 'locale_detect.c'; else $(CYGPATH_W) '$(srcdir)/locale_detect.c'; fi` + +enca-options.o: options.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-options.o -MD -MP -MF $(DEPDIR)/enca-options.Tpo -c -o enca-options.o `test -f 'options.c' || echo '$(srcdir)/'`options.c + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-options.Tpo $(DEPDIR)/enca-options.Po +# $(AM_V_CC)source='options.c' object='enca-options.o' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-options.o `test -f 'options.c' || echo '$(srcdir)/'`options.c + +enca-options.obj: options.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-options.obj -MD -MP -MF $(DEPDIR)/enca-options.Tpo -c -o enca-options.obj `if test -f 'options.c'; then $(CYGPATH_W) 'options.c'; else $(CYGPATH_W) '$(srcdir)/options.c'; fi` + $(AM_V_at)$(am__mv) $(DEPDIR)/enca-options.Tpo $(DEPDIR)/enca-options.Po +# $(AM_V_CC)source='options.c' object='enca-options.obj' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-options.obj `if test -f 'options.c'; then $(CYGPATH_W) 'options.c'; else $(CYGPATH_W) '$(srcdir)/options.c'; fi` + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" distdir="$(distdir)" \ + dist-hook +check-am: all-am +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(PROGRAMS) $(SCRIPTS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool clean-local \ + mostlyclean-am + +distclean: distclean-am + -rm -rf $(DEPDIR) ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-exec-hook +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: installcheck-binPROGRAMS + +maintainer-clean: maintainer-clean-am + -rm -rf $(DEPDIR) ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) uninstall-hook +.MAKE: all check install install-am install-exec-am install-strip \ + uninstall-am + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool clean-local \ + cscopelist-am ctags ctags-am dist-hook distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-exec-hook install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installcheck-binPROGRAMS \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-binPROGRAMS uninstall-hook + +.PRECIOUS: Makefile + + +# BUILT_SOURCES. How we build them: + +# For inclusion of GNU General Public License directly into Enca +COPYING.c: $(top_srcdir)/COPYING $(srcdir)/text2c.sh + $(srcdir)/text2c.sh $(top_srcdir)/COPYING >COPYING.c + +HELP.c: HELP $(srcdir)/text2c.sh + $(srcdir)/text2c.sh HELP >HELP.c + +install-exec-hook: + cd $(DESTDIR)$(bindir); \ + inst1=`echo enca | sed '$(transform)'`; \ + inst2=`echo enconv | sed '$(transform)'`; \ + $(LN_S) -f $$inst1$(EXEEXT) $$inst2$(EXEEXT) + +uninstall-hook: + inst=`echo enconv | sed '$(transform)'`; \ + rm -f $(DESTDIR)$(bindir)/$$inst$(EXEEXT) + +clean-local: + rm -f core.* *~ HELP.c COPYING.c + rm -f *.gc* + +dist-hook: + rm -f $(distdir)/HELP.c $(distdir)/COPYING.c + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/Makefile.am b/wlx/wayland_qt_base/build/enca-1.19/src/Makefile.am new file mode 100644 index 0000000..bb35fd0 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/Makefile.am @@ -0,0 +1,61 @@ +bin_PROGRAMS = enca +noinst_SCRIPTS = text2c.sh + +enca_SOURCES = \ + COPYING.c \ + HELP.c \ + common.h \ + convert.c \ + convert_extern.c \ + convert_recode.c \ + convert_iconv.c \ + enca.c \ + filebuf.c \ + locale_detect.c \ + options.c + +EXTRA_enca_SOURCES = \ + getopt.h + +BUILT_SOURCES = \ + COPYING.c \ + HELP.c + +EXTRA_DIST = \ + HELP.in \ + text2c.sh + +enca_LDADD = @LIBOBJS@ @CONVERTER_LIBS@ ../lib/libenca.la +enca_LDFLAGS = @LDFLAGS@ @LIBS@ +enca_DEPENDENCIES = @LIBOBJS@ ../lib/libenca.la +enca_CPPFLAGS = -DEXTCONV_DIR=\"@libexecdir@/enca/extconv\" +AM_CPPFLAGS = -I$(top_srcdir)/lib $(GCOV_CPPFLAGS) +AM_LDFLAGS = $(GCOV_LDFLAGS) +AM_CFLAGS = $(GCOV_FLAGS) + +# BUILT_SOURCES. How we build them: + +# For inclusion of GNU General Public License directly into Enca +COPYING.c: $(top_srcdir)/COPYING $(srcdir)/text2c.sh + $(srcdir)/text2c.sh $(top_srcdir)/COPYING >COPYING.c + +HELP.c: HELP $(srcdir)/text2c.sh + $(srcdir)/text2c.sh HELP >HELP.c + +install-exec-hook: + cd $(DESTDIR)$(bindir); \ + inst1=`echo enca | sed '$(transform)'`; \ + inst2=`echo enconv | sed '$(transform)'`; \ + $(LN_S) -f $$inst1$(EXEEXT) $$inst2$(EXEEXT) + +uninstall-hook: + inst=`echo enconv | sed '$(transform)'`; \ + rm -f $(DESTDIR)$(bindir)/$$inst$(EXEEXT) + +clean-local: + rm -f core.* *~ HELP.c COPYING.c + rm -f *.gc* + +dist-hook: + rm -f $(distdir)/HELP.c $(distdir)/COPYING.c + diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/Makefile.in b/wlx/wayland_qt_base/build/enca-1.19/src/Makefile.in new file mode 100644 index 0000000..5b0e6d0 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/Makefile.in @@ -0,0 +1,898 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = enca$(EXEEXT) +subdir = src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = HELP +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am_enca_OBJECTS = enca-COPYING.$(OBJEXT) enca-HELP.$(OBJEXT) \ + enca-convert.$(OBJEXT) enca-convert_extern.$(OBJEXT) \ + enca-convert_recode.$(OBJEXT) enca-convert_iconv.$(OBJEXT) \ + enca-enca.$(OBJEXT) enca-filebuf.$(OBJEXT) \ + enca-locale_detect.$(OBJEXT) enca-options.$(OBJEXT) +enca_OBJECTS = $(am_enca_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +enca_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(enca_LDFLAGS) $(LDFLAGS) -o $@ +SCRIPTS = $(noinst_SCRIPTS) +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(enca_SOURCES) $(EXTRA_enca_SOURCES) +DIST_SOURCES = $(enca_SOURCES) $(EXTRA_enca_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__DIST_COMMON = $(srcdir)/HELP.in $(srcdir)/Makefile.in \ + $(top_srcdir)/depcomp $(top_srcdir)/mkinstalldirs \ + getopt_long.c +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERTER_LIBS = @CONVERTER_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CSTOCS_PROG = @CSTOCS_PROG@ +CYGPATH_W = @CYGPATH_W@ +DEFAULT_CONVERTER_LIST = @DEFAULT_CONVERTER_LIST@ +DEFAULT_EXTERNAL_CONVERTER = @DEFAULT_EXTERNAL_CONVERTER@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCOV = @GCOV@ +GCOV_CPPFLAGS = @GCOV_CPPFLAGS@ +GCOV_FLAGS = @GCOV_FLAGS@ +GCOV_LDFLAGS = @GCOV_LDFLAGS@ +GREP = @GREP@ +GTKDOC = @GTKDOC@ +HTML_DIR = @HTML_DIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBM = @LIBM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MAP_PROG = @MAP_PROG@ +MKDIR_P = @MKDIR_P@ +MKTEMP_PROG = @MKTEMP_PROG@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PICONV_PROG = @PICONV_PROG@ +RANLIB = @RANLIB@ +RECODE_PROG = @RECODE_PROG@ +RELEASE = @RELEASE@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SHELL_RANDOM_FILENAME = @SHELL_RANDOM_FILENAME@ +STRIP = @STRIP@ +UMAP_PROG = @UMAP_PROG@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +noinst_SCRIPTS = text2c.sh +enca_SOURCES = \ + COPYING.c \ + HELP.c \ + common.h \ + convert.c \ + convert_extern.c \ + convert_recode.c \ + convert_iconv.c \ + enca.c \ + filebuf.c \ + locale_detect.c \ + options.c + +EXTRA_enca_SOURCES = \ + getopt.h + +BUILT_SOURCES = \ + COPYING.c \ + HELP.c + +EXTRA_DIST = \ + HELP.in \ + text2c.sh + +enca_LDADD = @LIBOBJS@ @CONVERTER_LIBS@ ../lib/libenca.la +enca_LDFLAGS = @LDFLAGS@ @LIBS@ +enca_DEPENDENCIES = @LIBOBJS@ ../lib/libenca.la +enca_CPPFLAGS = -DEXTCONV_DIR=\"@libexecdir@/enca/extconv\" +AM_CPPFLAGS = -I$(top_srcdir)/lib $(GCOV_CPPFLAGS) +AM_LDFLAGS = $(GCOV_LDFLAGS) +AM_CFLAGS = $(GCOV_FLAGS) +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits src/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +HELP: $(top_builddir)/config.status $(srcdir)/HELP.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ + fi; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p \ + || test -f $$p1 \ + ; then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' \ + -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' \ + `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +installcheck-binPROGRAMS: $(bin_PROGRAMS) + bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \ + case ' $(AM_INSTALLCHECK_STD_OPTIONS_EXEMPT) ' in \ + *" $$p "* | *" $(srcdir)/$$p "*) continue;; \ + esac; \ + f=`echo "$$p" | \ + sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ + for opt in --help --version; do \ + if "$(DESTDIR)$(bindir)/$$f" $$opt >c$${pid}_.out \ + 2>c$${pid}_.err &2; bad=1; fi; \ + done; \ + done; rm -f c$${pid}_.???; exit $$bad + +enca$(EXEEXT): $(enca_OBJECTS) $(enca_DEPENDENCIES) $(EXTRA_enca_DEPENDENCIES) + @rm -f enca$(EXEEXT) + $(AM_V_CCLD)$(enca_LINK) $(enca_OBJECTS) $(enca_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getopt_long.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enca-COPYING.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enca-HELP.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enca-convert.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enca-convert_extern.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enca-convert_iconv.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enca-convert_recode.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enca-enca.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enca-filebuf.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enca-locale_detect.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enca-options.Po@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +enca-COPYING.o: COPYING.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-COPYING.o -MD -MP -MF $(DEPDIR)/enca-COPYING.Tpo -c -o enca-COPYING.o `test -f 'COPYING.c' || echo '$(srcdir)/'`COPYING.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-COPYING.Tpo $(DEPDIR)/enca-COPYING.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='COPYING.c' object='enca-COPYING.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-COPYING.o `test -f 'COPYING.c' || echo '$(srcdir)/'`COPYING.c + +enca-COPYING.obj: COPYING.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-COPYING.obj -MD -MP -MF $(DEPDIR)/enca-COPYING.Tpo -c -o enca-COPYING.obj `if test -f 'COPYING.c'; then $(CYGPATH_W) 'COPYING.c'; else $(CYGPATH_W) '$(srcdir)/COPYING.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-COPYING.Tpo $(DEPDIR)/enca-COPYING.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='COPYING.c' object='enca-COPYING.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-COPYING.obj `if test -f 'COPYING.c'; then $(CYGPATH_W) 'COPYING.c'; else $(CYGPATH_W) '$(srcdir)/COPYING.c'; fi` + +enca-HELP.o: HELP.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-HELP.o -MD -MP -MF $(DEPDIR)/enca-HELP.Tpo -c -o enca-HELP.o `test -f 'HELP.c' || echo '$(srcdir)/'`HELP.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-HELP.Tpo $(DEPDIR)/enca-HELP.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='HELP.c' object='enca-HELP.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-HELP.o `test -f 'HELP.c' || echo '$(srcdir)/'`HELP.c + +enca-HELP.obj: HELP.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-HELP.obj -MD -MP -MF $(DEPDIR)/enca-HELP.Tpo -c -o enca-HELP.obj `if test -f 'HELP.c'; then $(CYGPATH_W) 'HELP.c'; else $(CYGPATH_W) '$(srcdir)/HELP.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-HELP.Tpo $(DEPDIR)/enca-HELP.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='HELP.c' object='enca-HELP.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-HELP.obj `if test -f 'HELP.c'; then $(CYGPATH_W) 'HELP.c'; else $(CYGPATH_W) '$(srcdir)/HELP.c'; fi` + +enca-convert.o: convert.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert.o -MD -MP -MF $(DEPDIR)/enca-convert.Tpo -c -o enca-convert.o `test -f 'convert.c' || echo '$(srcdir)/'`convert.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert.Tpo $(DEPDIR)/enca-convert.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='convert.c' object='enca-convert.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert.o `test -f 'convert.c' || echo '$(srcdir)/'`convert.c + +enca-convert.obj: convert.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert.obj -MD -MP -MF $(DEPDIR)/enca-convert.Tpo -c -o enca-convert.obj `if test -f 'convert.c'; then $(CYGPATH_W) 'convert.c'; else $(CYGPATH_W) '$(srcdir)/convert.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert.Tpo $(DEPDIR)/enca-convert.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='convert.c' object='enca-convert.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert.obj `if test -f 'convert.c'; then $(CYGPATH_W) 'convert.c'; else $(CYGPATH_W) '$(srcdir)/convert.c'; fi` + +enca-convert_extern.o: convert_extern.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert_extern.o -MD -MP -MF $(DEPDIR)/enca-convert_extern.Tpo -c -o enca-convert_extern.o `test -f 'convert_extern.c' || echo '$(srcdir)/'`convert_extern.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert_extern.Tpo $(DEPDIR)/enca-convert_extern.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='convert_extern.c' object='enca-convert_extern.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert_extern.o `test -f 'convert_extern.c' || echo '$(srcdir)/'`convert_extern.c + +enca-convert_extern.obj: convert_extern.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert_extern.obj -MD -MP -MF $(DEPDIR)/enca-convert_extern.Tpo -c -o enca-convert_extern.obj `if test -f 'convert_extern.c'; then $(CYGPATH_W) 'convert_extern.c'; else $(CYGPATH_W) '$(srcdir)/convert_extern.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert_extern.Tpo $(DEPDIR)/enca-convert_extern.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='convert_extern.c' object='enca-convert_extern.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert_extern.obj `if test -f 'convert_extern.c'; then $(CYGPATH_W) 'convert_extern.c'; else $(CYGPATH_W) '$(srcdir)/convert_extern.c'; fi` + +enca-convert_recode.o: convert_recode.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert_recode.o -MD -MP -MF $(DEPDIR)/enca-convert_recode.Tpo -c -o enca-convert_recode.o `test -f 'convert_recode.c' || echo '$(srcdir)/'`convert_recode.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert_recode.Tpo $(DEPDIR)/enca-convert_recode.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='convert_recode.c' object='enca-convert_recode.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert_recode.o `test -f 'convert_recode.c' || echo '$(srcdir)/'`convert_recode.c + +enca-convert_recode.obj: convert_recode.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert_recode.obj -MD -MP -MF $(DEPDIR)/enca-convert_recode.Tpo -c -o enca-convert_recode.obj `if test -f 'convert_recode.c'; then $(CYGPATH_W) 'convert_recode.c'; else $(CYGPATH_W) '$(srcdir)/convert_recode.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert_recode.Tpo $(DEPDIR)/enca-convert_recode.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='convert_recode.c' object='enca-convert_recode.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert_recode.obj `if test -f 'convert_recode.c'; then $(CYGPATH_W) 'convert_recode.c'; else $(CYGPATH_W) '$(srcdir)/convert_recode.c'; fi` + +enca-convert_iconv.o: convert_iconv.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert_iconv.o -MD -MP -MF $(DEPDIR)/enca-convert_iconv.Tpo -c -o enca-convert_iconv.o `test -f 'convert_iconv.c' || echo '$(srcdir)/'`convert_iconv.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert_iconv.Tpo $(DEPDIR)/enca-convert_iconv.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='convert_iconv.c' object='enca-convert_iconv.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert_iconv.o `test -f 'convert_iconv.c' || echo '$(srcdir)/'`convert_iconv.c + +enca-convert_iconv.obj: convert_iconv.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-convert_iconv.obj -MD -MP -MF $(DEPDIR)/enca-convert_iconv.Tpo -c -o enca-convert_iconv.obj `if test -f 'convert_iconv.c'; then $(CYGPATH_W) 'convert_iconv.c'; else $(CYGPATH_W) '$(srcdir)/convert_iconv.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-convert_iconv.Tpo $(DEPDIR)/enca-convert_iconv.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='convert_iconv.c' object='enca-convert_iconv.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-convert_iconv.obj `if test -f 'convert_iconv.c'; then $(CYGPATH_W) 'convert_iconv.c'; else $(CYGPATH_W) '$(srcdir)/convert_iconv.c'; fi` + +enca-enca.o: enca.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-enca.o -MD -MP -MF $(DEPDIR)/enca-enca.Tpo -c -o enca-enca.o `test -f 'enca.c' || echo '$(srcdir)/'`enca.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-enca.Tpo $(DEPDIR)/enca-enca.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='enca.c' object='enca-enca.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-enca.o `test -f 'enca.c' || echo '$(srcdir)/'`enca.c + +enca-enca.obj: enca.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-enca.obj -MD -MP -MF $(DEPDIR)/enca-enca.Tpo -c -o enca-enca.obj `if test -f 'enca.c'; then $(CYGPATH_W) 'enca.c'; else $(CYGPATH_W) '$(srcdir)/enca.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-enca.Tpo $(DEPDIR)/enca-enca.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='enca.c' object='enca-enca.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-enca.obj `if test -f 'enca.c'; then $(CYGPATH_W) 'enca.c'; else $(CYGPATH_W) '$(srcdir)/enca.c'; fi` + +enca-filebuf.o: filebuf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-filebuf.o -MD -MP -MF $(DEPDIR)/enca-filebuf.Tpo -c -o enca-filebuf.o `test -f 'filebuf.c' || echo '$(srcdir)/'`filebuf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-filebuf.Tpo $(DEPDIR)/enca-filebuf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='filebuf.c' object='enca-filebuf.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-filebuf.o `test -f 'filebuf.c' || echo '$(srcdir)/'`filebuf.c + +enca-filebuf.obj: filebuf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-filebuf.obj -MD -MP -MF $(DEPDIR)/enca-filebuf.Tpo -c -o enca-filebuf.obj `if test -f 'filebuf.c'; then $(CYGPATH_W) 'filebuf.c'; else $(CYGPATH_W) '$(srcdir)/filebuf.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-filebuf.Tpo $(DEPDIR)/enca-filebuf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='filebuf.c' object='enca-filebuf.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-filebuf.obj `if test -f 'filebuf.c'; then $(CYGPATH_W) 'filebuf.c'; else $(CYGPATH_W) '$(srcdir)/filebuf.c'; fi` + +enca-locale_detect.o: locale_detect.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-locale_detect.o -MD -MP -MF $(DEPDIR)/enca-locale_detect.Tpo -c -o enca-locale_detect.o `test -f 'locale_detect.c' || echo '$(srcdir)/'`locale_detect.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-locale_detect.Tpo $(DEPDIR)/enca-locale_detect.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='locale_detect.c' object='enca-locale_detect.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-locale_detect.o `test -f 'locale_detect.c' || echo '$(srcdir)/'`locale_detect.c + +enca-locale_detect.obj: locale_detect.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-locale_detect.obj -MD -MP -MF $(DEPDIR)/enca-locale_detect.Tpo -c -o enca-locale_detect.obj `if test -f 'locale_detect.c'; then $(CYGPATH_W) 'locale_detect.c'; else $(CYGPATH_W) '$(srcdir)/locale_detect.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-locale_detect.Tpo $(DEPDIR)/enca-locale_detect.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='locale_detect.c' object='enca-locale_detect.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-locale_detect.obj `if test -f 'locale_detect.c'; then $(CYGPATH_W) 'locale_detect.c'; else $(CYGPATH_W) '$(srcdir)/locale_detect.c'; fi` + +enca-options.o: options.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-options.o -MD -MP -MF $(DEPDIR)/enca-options.Tpo -c -o enca-options.o `test -f 'options.c' || echo '$(srcdir)/'`options.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-options.Tpo $(DEPDIR)/enca-options.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='options.c' object='enca-options.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-options.o `test -f 'options.c' || echo '$(srcdir)/'`options.c + +enca-options.obj: options.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enca-options.obj -MD -MP -MF $(DEPDIR)/enca-options.Tpo -c -o enca-options.obj `if test -f 'options.c'; then $(CYGPATH_W) 'options.c'; else $(CYGPATH_W) '$(srcdir)/options.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/enca-options.Tpo $(DEPDIR)/enca-options.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='options.c' object='enca-options.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(enca_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enca-options.obj `if test -f 'options.c'; then $(CYGPATH_W) 'options.c'; else $(CYGPATH_W) '$(srcdir)/options.c'; fi` + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" distdir="$(distdir)" \ + dist-hook +check-am: all-am +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(PROGRAMS) $(SCRIPTS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool clean-local \ + mostlyclean-am + +distclean: distclean-am + -rm -rf $(DEPDIR) ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-binPROGRAMS + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-exec-hook +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: installcheck-binPROGRAMS + +maintainer-clean: maintainer-clean-am + -rm -rf $(DEPDIR) ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) uninstall-hook +.MAKE: all check install install-am install-exec-am install-strip \ + uninstall-am + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ + clean-binPROGRAMS clean-generic clean-libtool clean-local \ + cscopelist-am ctags ctags-am dist-hook distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-binPROGRAMS install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-exec-hook install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installcheck-binPROGRAMS \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-binPROGRAMS uninstall-hook + +.PRECIOUS: Makefile + + +# BUILT_SOURCES. How we build them: + +# For inclusion of GNU General Public License directly into Enca +COPYING.c: $(top_srcdir)/COPYING $(srcdir)/text2c.sh + $(srcdir)/text2c.sh $(top_srcdir)/COPYING >COPYING.c + +HELP.c: HELP $(srcdir)/text2c.sh + $(srcdir)/text2c.sh HELP >HELP.c + +install-exec-hook: + cd $(DESTDIR)$(bindir); \ + inst1=`echo enca | sed '$(transform)'`; \ + inst2=`echo enconv | sed '$(transform)'`; \ + $(LN_S) -f $$inst1$(EXEEXT) $$inst2$(EXEEXT) + +uninstall-hook: + inst=`echo enconv | sed '$(transform)'`; \ + rm -f $(DESTDIR)$(bindir)/$$inst$(EXEEXT) + +clean-local: + rm -f core.* *~ HELP.c COPYING.c + rm -f *.gc* + +dist-hook: + rm -f $(distdir)/HELP.c $(distdir)/COPYING.c + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/common.h b/wlx/wayland_qt_base/build/enca-1.19/src/common.h new file mode 100644 index 0000000..973232c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/common.h @@ -0,0 +1,222 @@ +#ifndef COMMON_H +#define COMMON_H 1 + +#ifndef PACKAGE_NAME +# ifdef HAVE_CONFIG_H +# include "config.h" +# else /* HAVE_CONFIG_H */ +# define PACKAGE_NAME "Enca" +# define PACKAGE_TARNAME "enca" +# define PACKAGE_VERSION "" +# define DEFAULT_EXTERNAL_CONVERTER "" +# define DEFAULT_CONVERTER_LIST "built-in" +# endif /* HAVE_CONFIG_H */ +#endif /* not PACKAGE_NAME */ + +#include +#include +#include +#include +#include +#include + +#include "../lib/internal.h" + +/* define or correctly redefine EXIT_* values */ +#if !(defined EXIT_SUCCESS) || (EXIT_SUCCESS != 0) || (EXIT_FAILURE == 0) +# define EXIT_SUCCESS 0 +# define EXIT_FAILURE 1 +#endif /* !(defined EXIT_SUCCESS) || (EXIT_SUCCESS != 0) || (EXIT_FAILURE == 0) */ +#define EXIT_TROUBLE 2 + +/* str- an mem- function, theoretically they are all in string.h */ +#ifdef HAVE_STRING_H +# include +#else /* HAVE_STRING_H */ +# ifdef HAVE_STRINGS_H +# include +# endif /* HAVE_STRINGS_H */ +#endif /* HAVE_STRING_H */ + +#ifdef HAVE_MEMORY_H +# include +#endif /* HAVE_MEMORY_H */ + +#ifdef HAVE_ERRNO_H +# include +#else /* HAVE_ERRNO_H */ +extern int errno; +#endif /* HAVE_ERRNO_H */ + +/* portable isatty(), assume never on tty when neither isatty/ttyname is + available */ +#ifdef HAVE_ISATTY +# define enca_isatty(fd) (isatty(fd)) +#elif HAVE_TTYNAME +# define enca_isatty (ttyname(fd) != NULL) +#else /* HAVE_ISATTY || HAVE_TTYNAME */ +# define enca_isatty (0) +#endif /* HAVE_ISATTY || HAVE_TTYNAME */ + +/* make sure STDIN_FILENO and STDOUT_FILENO are defined */ +#ifndef STDIN_FILENO +# define STDIN_FILENO 0 +#endif /* not STDIN_FILENO */ + +#ifndef STDOUT_FILENO +# define STDOUT_FILENO 1 +#endif /* not STDOUT_FILENO */ + +/* Conversion error codes: + ok + conversion between these encodings is not possible + i/o failure, + child died + converter library is cheating + malformed input, + cannot exec external converter + + FIXME: this is an ISO C violation E[a-z0-9]+ are reserved for error names + */ +typedef enum { + ERR_OK = 0, + ERR_CANNOT, + ERR_IOFAIL, + ERR_CHILD, + ERR_LIBCOM, + ERR_MALFORM, + ERR_EXEC = 15 +} ConvertErrorCode; + +/* Output type. */ +typedef enum { + OTYPE_CS2CS = 0, + OTYPE_RFC1345, + OTYPE_HUMAN, + OTYPE_DETAILS, + OTYPE_CANON, + OTYPE_ICONV, + OTYPE_MIME, + OTYPE_CONVERT, + OTYPE_ALIASES +} OutputType; + +typedef void *pointer; /* untyped pointer */ +typedef const void *cpointer; /* constant untyped pointer */ +typedef unsigned char byte; /* byte */ + +/* Forward type declarations. */ +typedef struct _Abbreviation Abbreviation; +typedef struct _Buffer Buffer; +typedef struct _File File; +typedef struct _Options Options; + +/* Struct abbreviation. */ +struct _Abbreviation { + const char *name; /* full name */ + cpointer data; /* corresponding value */ +}; + +/* Struct I/O buffer. */ +struct _Buffer { + size_t size; /* buffer size */ + ssize_t pos; /* position in buffer */ + byte *data; /* the buffer itself buffer */ +}; + +/* Struct file stream. */ +struct _File { + char *name; /* file name, NULL if stdin/stdout */ + Buffer *buffer; /* buffer for i/o operations */ + FILE *stream; /* the stream, NULL when not opened */ + off_t size; /* file size, nonsense when name == NULL */ +}; + +/* Struct options. */ +struct _Options { + int verbosity_level; /* Verbosity level. */ + char *language; /* Language of analysed files. */ + OutputType output_type; /* What kind of action is expected after guess. */ + EncaEncoding target_enc; /* Target encoding for conversion. */ + char *target_enc_str; /* How user specified the target encoding. */ + int prefix_filename; /* Do prepend filename: before results? */ +}; + +/* Enca options. */ +extern Options options; +/* Path-stripped argv[0] for everybody. */ +extern char *program_name; +/* size of the main i/o buffer */ +extern size_t buffer_size; + +/* Function prototypes. */ +Buffer *buffer_new(size_t size); +void buffer_free(Buffer *buf); + +const Abbreviation* expand_abbreviation(const char *name, + const Abbreviation *atable, + size_t size, + const char *object_name); + +const char* ffname_r(const char *fname); +const char* ffname_w(const char *fname); +ssize_t file_read(File *file); +byte* file_getline(File *file); +ssize_t file_write(File *file); +File* file_temporary(Buffer *buffer, + int ulink); +off_t file_seek(File *file, + off_t offset, + int whence); +int file_truncate(File *file, + off_t length); +int file_unlink(const char *fname); +int file_open(File *file, + const char *mode); +int file_close(File *file); +File* file_new(const char *fname, + Buffer *buffer); +void file_free(File *file); +char** process_opt(int argc, + char *argv[]); +void print_aliases(size_t cs); +OutputType get_output_type(void); + +int copy_and_convert (File *file_from, + File *file_to, + const byte *xlat); +const char* format_request_string (EncaEncoding e1, + EncaEncoding e2, + EncaSurface mask); +int convert (File *file, + EncaEncoding from_enc); +int add_converter (const char *cname); +int external_converter_listed (void); +void print_converter_list (void); +void set_requested_enc (EncaEncoding enc); + +#ifdef HAVE_LIBRECODE +int convert_recode (File *file, + EncaEncoding from_enc); +#endif /* HAVE_LIBRECODE */ + +#ifdef HAVE_GOOD_ICONV +int convert_iconv (File *file, + EncaEncoding from_enc); +#endif /* HAVE_GOOD_ICONV */ + +#ifdef ENABLE_EXTERNAL +int convert_external (File *file, + EncaEncoding from_enc); +void set_external_converter (const char *extc); +int check_external_converter (void); +#endif /* ENABLE_EXTERNAL */ + +char* detect_lang (const char *lang); +#ifdef HAVE_NL_LANGINFO +const char* get_lang_codeset (void); +#endif /* HAVE_NL_LANGINFO */ + +#endif /* not COMMON_H */ +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/convert.c b/wlx/wayland_qt_base/build/enca-1.19/src/convert.c new file mode 100644 index 0000000..0b8e2bd --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/convert.c @@ -0,0 +1,573 @@ +/* + conversion to other encodings + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#include "common.h" + +#ifdef HAVE_SYS_WAIT_H +# include +#else +pid_t waitpid(pid_t pid, int *status, int options); +#endif + +/* We can't go on w/o this, defining struct stat manually is braindamaged. */ +#include +#include + +/* converter flags */ +#define CONV_EXTERN 0x0001 + +/* converter-type (filename, input encoding, output encoding) */ +typedef int (* ConverterFunc)(File*, EncaEncoding); + +/* struct converter data */ +typedef struct _ConverterData ConverterData; + +struct _ConverterData { + unsigned long int flags; /* flags */ + ConverterFunc convfunc; /* pointer to converter function */ +}; + +/* struct converter list */ +typedef struct _Converter Converter; + +struct _Converter { + const Abbreviation *conv; /* the converter (an abbreviation table entry) */ + Converter *next; /* next in the list */ +}; + +/* converter list */ +static Converter *converters = NULL; + +/* data for xtable */ +static struct { + size_t ncharsets; /* number of charsets */ + int *charsets; /* charset id's for active language [ncharsets] */ + byte *tables; /* tables from charsets to target_charset [ncharsets * 0x100] */ + int *have_table; /* whether particular table is already cached [ncharsets] */ + unsigned int *ucs2_map; /* temporary space for map computation [0x10000] */ + unsigned int target_map[0x100]; +} +xdata = { 0, NULL, NULL, NULL, NULL, { 0 } }; + +/* Local prototypes. */ +static int convert_builtin (File *file, + EncaEncoding from_enc); +static const byte* xtable (int from_charset); +static void xdata_free (void); + +static const ConverterData cdata_builtin = { 0, &convert_builtin }; +#ifdef HAVE_LIBRECODE +static const ConverterData cdata_librecode = { 0, &convert_recode }; +#endif /* HAVE_LIBRECODE */ +#ifdef HAVE_GOOD_ICONV +static const ConverterData cdata_iconv = { 0, &convert_iconv }; +#endif /* HAVE_GOOD_ICONV */ +#ifdef ENABLE_EXTERNAL +static const ConverterData cdata_extern = { CONV_EXTERN, &convert_external }; +#endif /* ENABLE_EXTERNAL */ + +static const Abbreviation CONVERTERS[] = { + { "built-in", &cdata_builtin }, +#ifdef HAVE_LIBRECODE + { "librecode", &cdata_librecode }, +#endif /* HAVE_LIBRECODE */ +#ifdef HAVE_GOOD_ICONV + { "iconv", &cdata_iconv }, +#endif /* HAVE_GOOD_ICONV */ +#ifdef ENABLE_EXTERNAL + { "extern", &cdata_extern } +#endif /* ENABLE_EXTERNAL */ +}; + +/* decide which converter should be run and do common checks + from_enc, to_enc are current and requested encoding + returns error code + + it doesn't open the file (guess() did it) and doesn't close it (caller does + it) */ +int +convert(File *file, + EncaEncoding from_enc) +{ + Converter *conv; + int err; + + if (options.verbosity_level) { + fprintf(stderr, "%s: converting `%s': %s\n", + program_name, ffname_r(file->name), + format_request_string(from_enc, options.target_enc, 0)); + } + + /* do nothing when requested encoding is current encoding + (`nothing' may include copying stdin to stdout) */ + if (from_enc.charset == options.target_enc.charset + && from_enc.surface == options.target_enc.surface) { + if (file->name != NULL) + return ERR_OK; + else + return copy_and_convert(file, file, NULL); + } + + /* try sequentially all allowed converters until we find some that can + perform the conversion or exahust the list */ + conv = converters; + while (conv != NULL) { + if (options.verbosity_level > 1) { + fprintf(stderr, " trying to convert `%s' using %s\n", + ffname_r(file->name), conv->conv->name); + } + err = ((ConverterData *)conv->conv->data)->convfunc(file, from_enc); + if (err == ERR_OK) + return ERR_OK; + + if ((((ConverterData *)conv->conv->data)->flags & CONV_EXTERN) != 0) { + fprintf(stderr, "%s: external converter failed on `%s', " + "probably destroying it\n", + program_name, ffname_w(file->name)); + } + /* don't tempt fate in case of i/o or other serious problems */ + if (err != ERR_CANNOT) + return ERR_IOFAIL; + + conv = conv->next; + } + + /* no converter able/allowed to perform given conversion, that's bad */ + fprintf(stderr, "%s: no converter is able/allowed to perform " + "conversion %s on file `%s'\n", + program_name, + format_request_string(from_enc, options.target_enc, 0), + ffname_r(file->name)); + + /* nevertheless stdin should be copied to stdout anyway it cannot make + more mess */ + if (file->name == NULL) + copy_and_convert(file, file, NULL); + + return ERR_CANNOT; +} + +/* built-in converter + performs conversion by in place modification of file named fname + or by calling copy_and_convert() for stdin -> stdout conversion + returns zero on success, error code otherwise */ +static int +convert_builtin(File *file, + EncaEncoding from_enc) +{ + static int ascii = ENCA_CS_UNKNOWN; + + Buffer *buf; /* file->buffer alias */ + const byte *xlat; /* conversion table */ + + if (!enca_charset_is_known(ascii)) { + ascii = enca_name_to_charset("ascii"); + assert(enca_charset_is_known(ascii)); + } + + /* surfaces can cause fail iff user specificaly requested some + * or when they are other type than EOLs */ + { + EncaSurface srf = options.target_enc.surface ^ from_enc.surface; + + if ((options.target_enc.surface + && from_enc.surface != options.target_enc.surface) + || srf != (srf & ENCA_SURFACE_MASK_EOL)) { + if (options.verbosity_level > 2) + fprintf(stderr, "%s: built-in: cannot convert between " + "different surfaces\n", + program_name); + return ERR_CANNOT; + } + } + + /* catch trivial conversions */ + { + int identity = 0; + + if (from_enc.charset == options.target_enc.charset) + identity = 1; + + if (from_enc.charset == ascii + && enca_charset_is_8bit(options.target_enc.charset) + && !enca_charset_is_binary(options.target_enc.charset)) + identity = 1; + + if (identity) { + if (file->name == NULL) + return copy_and_convert(file, file, NULL); + else + return ERR_OK; + } + } + + xlat = xtable(from_enc.charset); + if (xlat == NULL) + return ERR_CANNOT; + + if (file->name == NULL) + return copy_and_convert(file, file, xlat); + + /* read buffer_size bytes, convert, write back, etc. to death (or eof, + whichever come first) */ + buf = file->buffer; + buf->pos = 0; + if (file_seek(file, 0, SEEK_SET) == -1) + return ERR_IOFAIL; + + do { + if (file_read(file) == -1) + return ERR_IOFAIL; + + if (buf->pos == 0) + break; + + { + size_t len = buf->pos; + byte *p = buf->data; + do { + *p = xlat[*p]; + p++; + } while (--len); + } + + if (file_seek(file, -(buf->pos), SEEK_CUR) == -1) + return ERR_IOFAIL; + + if (file_write(file) == -1) + return ERR_IOFAIL; + + /* XXX: apparent no-op + but ISO C requires fseek() or ftell() between subsequent fwrite() and + fread(), or else the latter _may_ read nonsense -- and it actually does + read nonsense with glibc-2.2 (at least); see fopen(3) */ + if (file_seek(file, 0, SEEK_CUR) == -1) + return ERR_IOFAIL; + + } while (1); + + return ERR_OK; +} + +/* copy file file_from to file file_to, optionally performing xlat conversion + (if not NULL) + file_from has to be already opened for reading, + file_to has to be already opened for writing + they have to share common buffer + returns 0 on success, nonzero on failure */ +int +copy_and_convert(File *file_from, File *file_to, const byte *xlat) +{ + Buffer *buf; /* file_from->buffer alias */ + + if (xlat == NULL && options.verbosity_level > 3) + fprintf(stderr, " copying `%s' to `%s'\n", + ffname_r(file_from->name), + ffname_w(file_to->name)); + + assert(file_from->buffer == file_to->buffer); + buf = file_from->buffer; + /* If there's something in the buffer, process it first. */ + if (file_from->buffer->pos != 0) { + if (xlat != NULL) { + size_t len = buf->pos; + byte *p = buf->data; + do { + *p = xlat[*p]; + p++; + } while (--len); + } + if (file_write(file_to) == -1) + return ERR_IOFAIL; + } + /* Then copy the rest. */ + do { + if (file_read(file_from) == -1) + return ERR_IOFAIL; + + if (buf->pos == 0) + break; + + if (xlat != NULL) { + size_t len = buf->pos; + byte *p = buf->data; + do { + *p = xlat[*p]; + p++; + } while (--len); + } + + if (file_write(file_to) == -1) + return ERR_IOFAIL; + } while (1); + fflush(file_to->stream); + + return ERR_OK; +} + +/* add converter to list of converters + (note `none' adds nothing and causes removing of all converters instead) + returns zero if everything went ok, nonzero otherwise */ +int +add_converter(const char *cname) +{ + /* no converters symbolic name */ + static const char *CONVERTER_NAME_NONE = "none"; + + const Abbreviation *data; + Converter *conv = NULL, *conv1; + + /* remove everything when we got `none' */ + if (strcmp(CONVERTER_NAME_NONE, cname) == 0) { + if (options.verbosity_level > 3) + fprintf(stderr, "Removing all converters\n"); + while (converters != NULL) { + conv = converters->next; + enca_free(converters); + converters = conv; + } + return 0; + } + + /* find converter data */ + data = expand_abbreviation(cname, CONVERTERS, ELEMENTS(CONVERTERS), + "converter"); + if (data == NULL) + return 1; + + /* add it to the end of converter list */ + if (options.verbosity_level > 3) + fprintf(stderr, "Adding converter `%s'\n", data->name); + if (converters == NULL) + converters = conv = NEW(Converter, 1); + else { + for (conv1 = converters; conv1 != NULL; conv1 = conv1->next) { + /* reject duplicities */ + if (data == conv1->conv->data) { + fprintf(stderr, "%s: converter %s specified more than once\n", + program_name, + conv1->conv->name); + return 1; + } + conv = conv1; + } + + conv->next = NEW(Converter, 1); + conv = conv->next; + } + conv->next = NULL; + conv->conv = data; + + return 0; +} + +/* return nonzero if the list contains external converter */ +int +external_converter_listed(void) +{ + Converter *conv; + + for (conv = converters; conv; conv = conv->next) { + if (((ConverterData*)conv->conv->data)->flags & CONV_EXTERN) + return 1; + } + + return 0; +} + +/* print white separated list of all valid converter names */ +void +print_converter_list(void) +{ + size_t i; + + for (i = 0; i < sizeof(CONVERTERS)/sizeof(Abbreviation); i++) + printf("%s\n", CONVERTERS[i].name); +} + +/* create and return request string for conversion from e1 to e2 + filters out natrual surfaces || mask + is NOT thread-safe + returned string must NOT be freed and must be cosidered volatile */ +const char* +format_request_string(EncaEncoding e1, + EncaEncoding e2, + EncaSurface mask) +{ + static char *s = NULL; + char *p, *q; + const char *e2_name, *e1_name; + + enca_free(s); + /* build s sequentially since value returned by surface_name() is lost + by the second call */ + e1_name = enca_charset_name(e1.charset, ENCA_NAME_STYLE_ENCA); + p = enca_get_surface_name(e1.surface + & ~(enca_charset_natural_surface(e1.charset) + | mask), + ENCA_NAME_STYLE_ENCA); + if (!enca_charset_is_known(e2.charset)) { + q = enca_strdup(""); + e2_name = options.target_enc_str; + } + else { + q = enca_get_surface_name(e2.surface + & ~(enca_charset_natural_surface(e2.charset) + | mask), + ENCA_NAME_STYLE_ENCA); + e2_name = enca_charset_name(e2.charset, ENCA_NAME_STYLE_ENCA); + } + + s = enca_strconcat(e1_name, p, "..", e2_name, q, NULL); + + enca_free(p); + enca_free(q); + + return s; +} + +/** + * xtable: + * @from_charset: Charset id for which the conversion table should be returned. + * + * Returns translation table from charset @from to (global) target charset. + * + * The returned table must be considered constant and must NOT be freed. + * + * Only conversion between charsets of one language is supported. We assume + * a language contains all known charsets usable for represenation of texts, + * so other charsets are taken as incompatible. + * + * Globals used: options.target_enc.charset, options.language. + * + * Returns: The conversion table [0x100]; #NULL on failure. + **/ +static const byte* +xtable(int from_charset) +{ + static int xtable_initialized = 0; + + unsigned int from_map[0x100]; + size_t i; + ssize_t fidx; + + if (!enca_charset_has_ucs2_map(options.target_enc.charset) + || !enca_charset_has_ucs2_map(from_charset)) + return NULL; + + /* Initialize when we are called the first time. */ + if (!xtable_initialized) { + /* Allocate various tables. Never freed. */ + xdata.charsets = enca_get_language_charsets(options.language, + &xdata.ncharsets); + assert(xdata.ncharsets > 1); + xdata.have_table = NEW(int, xdata.ncharsets); + xdata.tables = NEW(byte, 0x100*xdata.ncharsets); + xdata.ucs2_map = NEW(unsigned int, 0x10000); + + for (i = 0; i < xdata.ncharsets; i++) + xdata.have_table[i] = 0; + + /* Initialize tables to identity */ + for (i = 0; i < 0x100; i++) + xdata.tables[i] = (byte)i; + for (i = 1; i < xdata.ncharsets; i++) + memcpy(xdata.tables + 0x100*i, xdata.tables, 0x100); + + /* Check whether target_charset belongs to given language */ + fidx = -1; + for (i = 0; i < xdata.ncharsets; i++) { + if (xdata.charsets[i] == options.target_enc.charset) { + fidx = i; + break; + } + } + if (fidx < 0) + return NULL; + + { + int map_created; + map_created = enca_charset_ucs2_map(options.target_enc.charset, + xdata.target_map); + assert(map_created); + } + atexit(xdata_free); + } + + /* Check whether from_charset belongs to given language */ + fidx = -1; + for (i = 0; i < xdata.ncharsets; i++) { + if (xdata.charsets[i] == from_charset) { + fidx = i; + break; + } + } + if (fidx < 0) + return NULL; + + /* Return table if cached. */ + if (xdata.have_table[fidx]) + return xdata.tables + 0x100*fidx; + + /* Otherwise it must be generated */ + { + int map_created; + map_created = enca_charset_ucs2_map(from_charset, from_map); + assert(map_created); + } + + for (i = 0; i < 0x10000; i++) + xdata.ucs2_map[i] = ENCA_NOT_A_CHAR; + + for (i = 0; i < 0x100; i++) { + size_t j = 0xff - i; + + if (xdata.target_map[j] != ENCA_NOT_A_CHAR) + xdata.ucs2_map[xdata.target_map[j]] = (unsigned int)j; + } + + /* XXX XXX XXX XXX XXX Warning: Extreme brain damage! XXX XXX XXX XXX XXX + * When converting to ibm866 we have to replace Belarusian/Ukrainian i/I + * with Latin versions. I've been told everybody expect this. */ + if (options.target_enc.charset == enca_name_to_charset("ibm866")) { + xdata.ucs2_map[0x0406] = (byte)'I'; + xdata.ucs2_map[0x0456] = (byte)'i'; + } + + for (i = 0; i < 0x100; i++) { + size_t j = 0xff - i; + + if (from_map[j] != ENCA_NOT_A_CHAR + && xdata.ucs2_map[from_map[j]] != ENCA_NOT_A_CHAR) + xdata.tables[0x100*fidx + j] = (byte)xdata.ucs2_map[from_map[j]]; + } + + return xdata.tables + 0x100*fidx; +} + +static void +xdata_free(void) +{ + enca_free(xdata.charsets); + enca_free(xdata.tables); + enca_free(xdata.have_table); + enca_free(xdata.ucs2_map); +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/convert_extern.c b/wlx/wayland_qt_base/build/enca-1.19/src/convert_extern.c new file mode 100644 index 0000000..80ac67d --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/convert_extern.c @@ -0,0 +1,217 @@ +/* + interface to external converter programs + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#include "common.h" +#ifdef ENABLE_EXTERNAL + +#ifdef HAVE_SYS_WAIT_H +# include +#else +pid_t waitpid(pid_t pid, int *status, int options); +#endif + +/* We can't go on w/o this, defining struct stat manually is braindamaged. */ +#include +#include + +#include + +#ifdef HAVE_LIMITS_H +# include +#endif /* HAVE_LIMITS_H */ + +/* Resolve all the forking mess. */ +#ifdef HAVE_WORKING_VFORK +# ifdef HAVE_VFORK_H +# include +# endif /* HAVE_VFORK_H */ +#else /* HAVE_WORKING_VFORK */ +# define vfork fork +#endif /* HAVE_WORKING_VFORK */ + +/* external converter command */ +static char *extern_converter = NULL; + +/* fork and the child executes Settings.Converter on fname + create temporary file containing stdin when fname == NULL and convert it + passing special option STDOUT to converter (that is assumed to delete + the temporary file itself) + from_enc, to_enc are encoding names as should be passed to converter + returns 0 on success, nonzero on failure; + on critical failure (like we cannot fork()) it simply aborts */ +int +convert_external(File *file, + const EncaEncoding from_enc) +{ + /* special fourth parameter passed to external converter to instruct it to + send result to stdout */ + static const char *STDOUT_CONV = "-"; + + pid_t pid; + int status; + File *tempfile = NULL; + char *from_name, *target_name; + + if (*extern_converter == '\0') { + fprintf(stderr, "%s: No external converter defined!\n", program_name); + return ERR_CANNOT; + } + + if (options.verbosity_level > 2) + fprintf(stderr, " launching `%s' to convert `%s'\n", + extern_converter, ffname_r(file->name)); + + /* Is conversion of stdin requested? */ + if (file->name == NULL) { + /* Then we have to copy it to a temporary file. */ + tempfile = file_temporary(file->buffer, 0); + if (tempfile == NULL) + return ERR_IOFAIL; + + if (copy_and_convert(file, tempfile, NULL) != 0) { + file_unlink(tempfile->name); + file_free(tempfile); + return ERR_IOFAIL; + } + } + + /* Construct the charset names before fork() */ + from_name = enca_strconcat(enca_charset_name(from_enc.charset, + ENCA_NAME_STYLE_ENCA), + enca_get_surface_name(from_enc.surface, + ENCA_NAME_STYLE_ENCA), + NULL); + if (enca_charset_is_known(options.target_enc.charset) + && (options.target_enc.surface & ENCA_SURFACE_UNKNOWN) == 0) { + target_name + = enca_strconcat(enca_charset_name(options.target_enc.charset, + ENCA_NAME_STYLE_ENCA), + enca_get_surface_name(options.target_enc.surface, + ENCA_NAME_STYLE_ENCA), + NULL); + } + else + target_name = enca_strdup(options.target_enc_str); + + /* Fork. */ + pid = vfork(); + if (pid == 0) { + /* Child. */ + if (tempfile) + execlp(extern_converter, extern_converter, + from_name, target_name, tempfile->name, + STDOUT_CONV, NULL); + else + execlp(extern_converter, extern_converter, + from_name, target_name, file->name, NULL); + + exit(ERR_EXEC); + } + + /* Parent. */ + if (pid == -1) { + fprintf(stderr, "%s: Cannot fork() to execute converter: %s\n", + program_name, + strerror(errno)); + exit(EXIT_TROUBLE); + } + /* Wait until the child returns. */ + if (waitpid(pid, &status, 0) == -1) { + /* Error. */ + fprintf(stderr, "%s: wait_pid() error while waiting for converter: %s\n", + program_name, + strerror(errno)); + exit(EXIT_TROUBLE); + } + if (!WIFEXITED(status)) { + /* Child exited abnormally. */ + fprintf(stderr, "%s: Child converter process has been murdered.\n", + program_name); + exit(EXIT_TROUBLE); + } + + enca_free(from_name); + enca_free(target_name); + + if (tempfile) { + unlink(tempfile->name); + file_free(tempfile); + } + + /* Child exited normally, test exit status. */ + if (WEXITSTATUS(status) != EXIT_SUCCESS) { + /* This means child was unable to execute converter or converter failed. */ + fprintf(stderr, "%s: External converter failed (error code %d)\n", + program_name, + WEXITSTATUS(status)); + if (WEXITSTATUS(status) == ERR_EXEC) + return ERR_EXEC; + else + return ERR_CANNOT; + } + /* Success! Wow! */ + return ERR_OK; +} + +/* set external converter to extc */ +void +set_external_converter(const char *extc) +{ + enca_free(extern_converter); + if (strchr(extc, '/') == NULL) { + if (extc[0] == 'b' && extc[1] == '-') { + extc += 2; + fprintf(stderr, "%s: The `b-' prefix for standard external converters " + "is deprecated.\n" + "I'll pretend you said `%s'.\n", + program_name, + extc); + } + extern_converter = enca_strconcat(EXTCONV_DIR, "/", extc, NULL); + } + else + extern_converter = enca_strdup(extc); +} + +/* return nonzero if external converter seems ok */ +int +check_external_converter(void) +{ + /* FIXME: This creates a race condition. However we don't want to do all + * the checking before every execlp() when conveting 500 files in a row, + * and even if doing that, something can still sneak between stat() and + * execlp(), so what. This is just a simple sanity check, nothing strict. + */ + if (*extern_converter == '\0' + || access(extern_converter, X_OK) != 0) { + fprintf(stderr, "%s: Converter `%s' doesn't seem to be executable.\n" + "Note as of enca-1.3 external converters must be\n" + "(a) one of the standard ones residing in %s\n" + "(b) specified with full path\n", + program_name, + extern_converter, + EXTCONV_DIR); + return 0; + } + + return 1; +} + +#endif /* ENABLE_EXTERNAL */ +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/convert_iconv.c b/wlx/wayland_qt_base/build/enca-1.19/src/convert_iconv.c new file mode 100644 index 0000000..b13905b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/convert_iconv.c @@ -0,0 +1,273 @@ +/* + interface to UNIX98 iconv conversion functions + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#include "common.h" +#ifdef HAVE_GOOD_ICONV + +#include +#include "iconvenc.h" + +/* Local prototypes. */ +static int iconv_one_step (File *file_from, + File *file_to, + iconv_t icd); +static int do_iconv_open (EncaEncoding from_enc, + EncaEncoding to_enc, + iconv_t *icd); +static void do_iconv_close (iconv_t icd); +static int acceptable_surface (EncaEncoding enc); + +/* Second buffer needed for iconv(). */ +static Buffer *buffer_iconv = NULL; + +/* convert file using UNIX98 iconv functions + returns 0 on success, nonzero error code otherwise + when iconv implementation is not transitive (ICONV_TRANSITIVE is not + defined), it may help to perform conversion via Unicode, so we try it too + (probably UCS-2/ISO-10646, but maybe UTF-8---whatever has been detected + at configure time) */ +int +convert_iconv(File *file, + EncaEncoding from_enc) +{ + static int ascii = ENCA_CS_UNKNOWN; + File *tempfile = NULL; + int err; + iconv_t icd; + + if (!enca_charset_is_known(ascii)) { + ascii = enca_name_to_charset("ascii"); + assert(enca_charset_is_known(ascii)); + } + + /* When iconv doesn't know the encodings, it can't convert between them. + * We also don't try conversion to ASCII, it can only damage the files and + * upset users, nothing else. + * And fail early on really silly surfaces. */ + if (!enca_charset_name(from_enc.charset, ENCA_NAME_STYLE_ICONV) + || (enca_charset_is_known(options.target_enc.charset) + && !enca_charset_name(options.target_enc.charset, + ENCA_NAME_STYLE_ICONV)) + || options.target_enc.charset == ascii + || !acceptable_surface(from_enc) + || !acceptable_surface(options.target_enc)) + return ERR_CANNOT; + + /* Is the conversion possible? */ + if (do_iconv_open(from_enc, options.target_enc, &icd) != 0) + return ERR_CANNOT; + + /* Since iconv doesn't recode files in place, we make a temporary file + and copy contents of file fname to it. + save the current content first, then copy the rest. + When the file is stdin, fake-reopen it to stdout. */ + err = ERR_IOFAIL; + if ((tempfile = file_temporary(file->buffer, 1)) + && file_write(tempfile) != -1 + && copy_and_convert(file, tempfile, NULL) == 0 + && (!file->name || file_seek(file, 0, SEEK_SET) == 0) + && file_seek(tempfile, 0, SEEK_SET) == 0 + && (!file->name || file_truncate(file, 0) == 0) + && (file->name || (file_close(file) == 0 + && file_open(file, "wb") == 0))) { + /* Create the second buffer when we don't have any yet + but don't make it unnecessarily large, system default suffices */ + if (!buffer_iconv) + buffer_iconv = buffer_new(0); + tempfile->buffer = buffer_iconv; + + err = iconv_one_step(tempfile, file, icd); + } + + file_free(tempfile); + do_iconv_close(icd); + return err; +} + +/* perform one conversion step using conversion descriptor icd + reading for file_from and putting result to file_to */ +static int +iconv_one_step(File *file_from, + File *file_to, + iconv_t icd) +{ + size_t size_from, size_to, n; + char *p_from, *p_to; + int hit_eof; + + /* convert */ + do { + /* read to io_buffer */ + if (file_read(file_from) == -1) + return ERR_IOFAIL; + + p_from = (char*)file_from->buffer->data; + size_from = file_from->buffer->pos; + hit_eof = (ssize_t)file_from->buffer->size > file_from->buffer->pos; + /* convert without reading more data until io_buffer is exhausted or some + error occurs */ + do { + p_to = (char*)file_to->buffer->data; + size_to = file_to->buffer->size; + n = iconv(icd, + (ICONV_CONST char**)&p_from, &size_from, + &p_to, &size_to); + file_to->buffer->pos = file_to->buffer->size - size_to; + if (n != (size_t)-1 || errno != E2BIG) + break; + + if (file_write(file_to) == -1) + return ERR_IOFAIL; + + } while (1); + + if (n == (size_t)-1) { + /* EINVAL means some multibyte sequence has been splitted---that's ok, + move it to the begining and go on */ + if (errno == EINVAL && !hit_eof) { + memmove(file_from->buffer->data, p_from, size_from); + file_from->buffer->pos = size_from; + } + else { + /* but other errors are critical, conversion and try to recover */ + fprintf(stderr, "%s: Iconv conversion error on `%s': %s\n", + program_name, + ffname_r(file_from->name), + strerror(errno)); + if (file_from->name && file_to->name) { + Buffer *buf; + int err; + + /* regular file */ + fprintf(stderr, "Trying to recover... "); + if (file_seek(file_from, 0, SEEK_SET) != 0 + || file_seek(file_to, 0, SEEK_SET) != 0 + || file_truncate(file_to, file_to->size) != 0) { + fprintf(stderr, "failed\n"); + return ERR_IOFAIL; + } + file_from->buffer->pos = 0; + buf = file_to->buffer; + file_to->buffer = file_from->buffer; + err = copy_and_convert(file_from, file_to, NULL); + file_to->buffer = buf; + + if (err != 0) { + fprintf(stderr, "failed\n"); + return ERR_IOFAIL; + } + fprintf(stderr, "succeeded.\n"); + } + else { + fprintf(stderr, "No way to recover in a pipe.\n"); + return ERR_IOFAIL; + } + + return ERR_MALFORM; + } + } + else file_from->buffer->pos = 0; + + /* write the remainder */ + if (file_write(file_to) == -1) + return ERR_IOFAIL; + + } while (!hit_eof); + + /* file might end with an unfinished multibyte sequence */ + if (size_from > 0) { + fprintf(stderr, "%s: File `%s' seems to be truncated, " + "the trailing incomplete multibyte sequence " + "has been lost\n", + program_name, + ffname_r(file_from->name)); + return ERR_MALFORM; + } + + return ERR_OK; +} + +/* try to ask for conversion from from_enc to to_enc + returns 0 on success, nonzero on failure + on fatal error simply aborts program */ +static int +do_iconv_open(EncaEncoding from_enc, + EncaEncoding to_enc, + iconv_t *icd) +{ + const char *to_name, *from_name; + + if (!enca_charset_is_known(to_enc.charset)) + to_name = options.target_enc_str; + else + to_name = enca_charset_name(to_enc.charset, ENCA_NAME_STYLE_ICONV); + from_name = enca_charset_name(from_enc.charset, ENCA_NAME_STYLE_ICONV); + assert(from_name != NULL); + assert(to_name != NULL); + + /* Iconv_open() paramters has reverse order than we use. */ + *icd = iconv_open(to_name, from_name); + if (*icd != (iconv_t)-1) + return 0; + + /* Failure, EINVAL means this conversion is not possible. */ + if (errno == EINVAL) + return ERR_CANNOT; + + /* But otherwise we are in deep trouble, we've got out of memory or file + descriptors. */ + fprintf(stderr, "%s: Aborting: %s\n", + program_name, + strerror(errno)); + exit(EXIT_TROUBLE); + + return 0; +} + +/* close iconv descriptor icd + abort if it is not possible */ +static void +do_iconv_close(iconv_t icd) +{ + if (iconv_close(icd) != 0) { + fprintf(stderr, "%s: Cannot close iconv descriptor (memory leak): %s\n", + program_name, + strerror(errno)); + exit(EXIT_TROUBLE); + } +} + +/** + * Do we think iconv will accept given encoding as a source or target? + * + * This is a somewhat less strict condition than natural surface requirement. + **/ +static int +acceptable_surface(EncaEncoding enc) +{ + EncaSurface mask; + + mask = enca_charset_natural_surface(enc.charset) | ENCA_SURFACE_MASK_EOL; + + return (enc.surface & ~mask) == 0; +} + +#endif /* HAVE_GOOD_ICONV */ + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/convert_recode.c b/wlx/wayland_qt_base/build/enca-1.19/src/convert_recode.c new file mode 100644 index 0000000..5665a90 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/convert_recode.c @@ -0,0 +1,320 @@ +/* + interface to GNU recode library (`librecode') + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#include "common.h" +#ifdef HAVE_LIBRECODE + +#if HAVE_STDBOOL_H +# include +#else /* HAVE_STDBOOL_H */ +# if ! HAVE__BOOL +typedef unsigned char _Bool; +# endif /* HAVE__BOOL */ +# define bool _Bool +# define false 0 +# define true 1 +# define __bool_true_false_are_defined 1 +#endif /* HAVE_STDBOOL_H */ + +#include + +#define enca_recode_fail_level RECODE_NOT_CANONICAL + +/* request list struct + (they are cached between convert_recode() calls) + auto-deallocated at exit */ +typedef struct _RecRequest RecRequest; + +struct _RecRequest { + RECODE_REQUEST request; /* the recode request itself */ + char *request_string; /* request string */ + unsigned long int count; /* count, for caching optimization */ + RecRequest *next; +}; + +/* recode outer (allocated only once, auto-deallocated at exit) */ +static RECODE_OUTER outer = NULL; + +/* Local prototypes */ +static RECODE_REQUEST get_recode_request(const char *encreq); +static void print_recode_warning(enum recode_error err, + const char *fname); + +/* convert file using GNU recode library + returns 0 on success, nonzero error code otherwise */ +int +convert_recode(File *file, + EncaEncoding from_enc) +{ + RECODE_REQUEST request; + RECODE_TASK task; + File *tempfile = NULL; + bool success; + const char *encreq; + + /* Allocate librecode outer if we are called first time. */ + if (outer == NULL) { + if ((outer = recode_new_outer(false)) == NULL) { + fprintf(stderr, "%s: recode library doesn't like us\n", + program_name); + return ERR_LIBCOM; + } + } + + /* Construct recode request string, + try to mimic surfaceless converter now. */ + { + EncaEncoding enc; + + enc.charset = from_enc.charset; + enc.surface = from_enc.surface | ENCA_SURFACE_REMOVE; + encreq = format_request_string(enc, options.target_enc, + ENCA_SURFACE_EOL_LF); + } + /* Create a recode request from it. */ + request = get_recode_request(encreq); + if (request == NULL) + return ERR_CANNOT; + + /* Now we have to distinguish between file and stdin, namely because + * in case of stdin, it's first part is already loaded in the buffer. */ + if (file->name != NULL) { + /* File is a regular file. + Since recode doesn't recode files in place, we make a temporary file + and copy contents of file fname to it. */ + if (file_seek(file, 0, SEEK_SET) != 0) + return ERR_IOFAIL; + file->buffer->pos = 0; + + if ((tempfile = file_temporary(file->buffer, 1)) == NULL + || file_seek(file, 0, SEEK_SET) != 0) { + file_free(tempfile); + return ERR_IOFAIL; + } + + /* Create a task from the request. */ + task = recode_new_task(request); + task->fail_level = enca_recode_fail_level; + task->abort_level = RECODE_SYSTEM_ERROR; + task->input.name = NULL; + task->input.file = file->stream; + task->output.name = NULL; + task->output.file = tempfile->stream; + + /* Now run conversion original -> temporary file. */ + success = recode_perform_task(task); + + /* If conversion wasn't successfull, original file is probably damaged + (damned librecode!) try to restore it from the temporary copy. */ + if (!success) { + print_recode_warning(task->error_so_far, file->name); + } else { + if (file_seek(file, 0, SEEK_SET) != 0 + || file_seek(tempfile, 0, SEEK_SET) != 0 + || file_truncate(file, 0) != 0 + || copy_and_convert(tempfile, file, NULL) != 0) { + fprintf(stderr, "failed to rename temporary file back\n"); + file_free(tempfile); + return ERR_IOFAIL; + } + } + + recode_delete_task(task); + file_free(tempfile); + } + else { + /* File is stdin. + First recode begining saved in io_buffer, then append rest of stdin. */ + enum recode_error errmax = RECODE_NO_ERROR; + + /* Create a task from the request. + * Set it up for buffer -> stdout conversion */ + task = recode_new_task(request); + task->fail_level = enca_recode_fail_level; + task->abort_level = RECODE_SYSTEM_ERROR; + task->input.name = NULL; + task->input.file = NULL; + task->input.buffer = (char*)file->buffer->data; + task->input.cursor = (char*)file->buffer->data; + task->input.limit = (char*)file->buffer->data + file->buffer->pos; + task->output.name = NULL; + task->output.file = stdout; + + success = recode_perform_task(task); + if (!success) { + if (task->error_so_far >= RECODE_SYSTEM_ERROR) { + fprintf(stderr, "%s: librecode probably damaged `%s'. " + "No way to recover in a pipe.\n", + program_name, + ffname_r(NULL)); + recode_delete_task(task); + return ERR_IOFAIL; + } + else + errmax = task->error_so_far; + } + recode_delete_task(task); + + /* Create a task from the request. + * Set it up for stdin -> stdout conversion */ + task = recode_new_task(request); + task->fail_level = enca_recode_fail_level; + task->abort_level = RECODE_SYSTEM_ERROR; + task->input.name = NULL; + task->input.file = stdin; + task->output.name = NULL; + task->output.file = stdout; + + success = recode_perform_task(task); + if (!success) { + if (task->error_so_far >= RECODE_SYSTEM_ERROR) { + fprintf(stderr, "%s: librecode probably damaged `%s'. " + "No way to recover in a pipe.\n", + program_name, + ffname_r(NULL)); + recode_delete_task(task); + return ERR_IOFAIL; + } + else { + if (errmax < task->error_so_far) + errmax = task->error_so_far; + } + } + if (errmax >= enca_recode_fail_level) + print_recode_warning(errmax, ffname_r(NULL)); + + recode_delete_task(task); + } + + /* return ERR_IOFAIL on failure since it means file-related problems */ + return success ? ERR_OK : ERR_IOFAIL; +} + +/* caching request creator + returns recode request either found in cache or, if not found, a newly + created (and immediately put into the cache) + returns NULL on failure */ +static RECODE_REQUEST +get_recode_request(const char *encreq) +{ + static RecRequest *request_cache = NULL; /* recode request cache */ + + RECODE_REQUEST request; + RecRequest *req; + + /* try to find the request in cache (bubble sorting it meanwhile) */ + for (req = request_cache; req != NULL; req = req->next) { + if (strcmp(req->request_string, encreq) == 0) + break; + + if (req->next != NULL && req->count < req->next->count) { + RecRequest tmpreq; + /* it's easier to exchange contents instead of pointers here */ + tmpreq.request = req->request; + tmpreq.count = req->count; + tmpreq.request_string = req->request_string; + + req->request = req->next->request; + req->count = req->next->count; + req->request_string = req->next->request_string; + + req->next->request = tmpreq.request; + req->next->count = tmpreq.count; + req->next->request_string = tmpreq.request_string; + } + } + /* found, increment usage count and return it */ + if (req != NULL) { + req->count++; + return req->request; + } + /* request not found, ask for a new one */ + if ((request = recode_new_request(outer)) == NULL) { + fprintf(stderr, "%s: recode library doesn't accept new requests\n", + program_name); + return NULL; /* maybe we could simply abort */ + } + /* Set some options. */ + request->diacritics_only = request->ascii_graphics = true; + /* create request from request string */ + if (!recode_scan_request(request, encreq)) { + if (options.verbosity_level) { + fprintf(stderr, "%s: errorneous recoding request `%s'\n", + program_name,encreq); + } + recode_delete_request(request); + return NULL; + } + /* add it to end of cache */ + if ((req = request_cache) != NULL) { + while (req->next != NULL) req = req->next; + req->next = NEW(RecRequest, 1); + req = req->next; + } + else { + req = NEW(RecRequest, 1); + request_cache = req; + } + req->request = request; + req->request_string = enca_strdup(encreq); + req->count = 1; + req->next = NULL; + + return request; +} + +static void +print_recode_warning(enum recode_error err, + const char *fname) +{ + const char *msg; + + if (options.verbosity_level < 1) + return; + + switch (err) { + case RECODE_NOT_CANONICAL: + msg = "Input is not canonical"; + break; + + case RECODE_AMBIGUOUS_OUTPUT: + msg = "Conversion leads to ambiguous output"; + break; + + case RECODE_UNTRANSLATABLE: + msg = "Untranslatable input"; + break; + + case RECODE_INVALID_INPUT: + msg = "Invalid input"; + break; + + default: + msg = "Unknown error"; + break; + } + + fprintf(stderr, "%s: librecode warning: %s in `%s'\n", + program_name, + msg, + fname); +} +#endif /* HAVE_LIBRECODE */ + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/enca b/wlx/wayland_qt_base/build/enca-1.19/src/enca new file mode 100755 index 0000000..d3d8783 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/src/enca differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/enca-COPYING.o b/wlx/wayland_qt_base/build/enca-1.19/src/enca-COPYING.o new file mode 100644 index 0000000..d9f3bcd Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/src/enca-COPYING.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/enca-HELP.o b/wlx/wayland_qt_base/build/enca-1.19/src/enca-HELP.o new file mode 100644 index 0000000..0bbe924 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/src/enca-HELP.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/enca-convert.o b/wlx/wayland_qt_base/build/enca-1.19/src/enca-convert.o new file mode 100644 index 0000000..31e6404 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/src/enca-convert.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/enca-convert_extern.o b/wlx/wayland_qt_base/build/enca-1.19/src/enca-convert_extern.o new file mode 100644 index 0000000..b4a9108 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/src/enca-convert_extern.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/enca-convert_iconv.o b/wlx/wayland_qt_base/build/enca-1.19/src/enca-convert_iconv.o new file mode 100644 index 0000000..c8ee20e Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/src/enca-convert_iconv.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/enca-convert_recode.o b/wlx/wayland_qt_base/build/enca-1.19/src/enca-convert_recode.o new file mode 100644 index 0000000..629b437 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/src/enca-convert_recode.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/enca-enca.o b/wlx/wayland_qt_base/build/enca-1.19/src/enca-enca.o new file mode 100644 index 0000000..8fe03ca Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/src/enca-enca.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/enca-filebuf.o b/wlx/wayland_qt_base/build/enca-1.19/src/enca-filebuf.o new file mode 100644 index 0000000..ec643ba Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/src/enca-filebuf.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/enca-locale_detect.o b/wlx/wayland_qt_base/build/enca-1.19/src/enca-locale_detect.o new file mode 100644 index 0000000..cc5072c Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/src/enca-locale_detect.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/enca-options.o b/wlx/wayland_qt_base/build/enca-1.19/src/enca-options.o new file mode 100644 index 0000000..da7d6de Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/src/enca-options.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/enca.c b/wlx/wayland_qt_base/build/enca-1.19/src/enca.c new file mode 100644 index 0000000..72c53b0 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/enca.c @@ -0,0 +1,340 @@ +/* + Extremely Naive Charset Analyser. main module + + Copyright (C) 2000-2002 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#include +#include "common.h" + +/* Local prototypes. */ +static int process_file (EncaAnalyser an, + const char *fname); +static void dwim_libenca_options(EncaAnalyser an, + const File *file); +static void print_results (const char *fname, + EncaAnalyser an, + EncaEncoding result, + int gerrno); +static void indent_surface (const char *s); +static void double_utf8_chk (EncaAnalyser an, + const unsigned char *sample, + size_t size); + +/* process options and do some other initializations, then go through the + file list and process files one by one + at the end, exit and return 0 on succes, 1 on failure, 2 on troubles */ +int +main(int argc, char *argv[]) +{ + char **pp_file, **flist; /* filename list pointer */ + long int err=0; /* nonzero if process_file() ever returned nonzero */ + EncaAnalyser an; + + /* Process command line arguments. */ + pp_file = flist = process_opt(argc, argv); + + /* Initialization. */ + if (options.verbosity_level > 2) + fprintf(stderr, "Initializing language %s\n", options.language); + an = enca_analyser_alloc(options.language); + if (!an) { + fprintf(stderr, "%s: Language `%s' is unknown or not supported.\n" + "Run `%s --list languages' to get list " + "of supported languages.\n" + "Run `%s -L none' to test only language independent, " + "multibyte encodings.\n", + program_name, options.language, + program_name, + program_name); + exit(EXIT_TROUBLE); + } + + enca_set_threshold(an, 1.38); + enca_set_multibyte(an, 1); + enca_set_ambiguity(an, 1); + enca_set_garbage_test(an, 1); + + /* Any files specified on command line? */ + if (pp_file == NULL) { + /* No => read stdin. */ + err = process_file(an, NULL); + } + else { + /* Process file list, cumultate the worst error in err. */ + while (*pp_file != NULL) { + err |= process_file(an, *pp_file); + enca_free(*pp_file); + pp_file++; + } + } + + /* Free buffer */ + process_file(NULL, NULL); + enca_analyser_free(an); + enca_free(options.language); + enca_free(options.target_enc_str); + enca_free(flist); + + if (err & EXIT_TROUBLE) + err = EXIT_TROUBLE; + + return err; +} + +/* process file named fname + this is the `boss' function + returns 0 on succes, 1 on failure, 2 on troubles */ +static int +process_file(EncaAnalyser an, + const char *fname) +{ + static int utf8 = ENCA_CS_UNKNOWN; + static Buffer *buffer = NULL; /* persistent i/o buffer */ + int ot_is_convert = (options.output_type == OTYPE_CONVERT); + + EncaEncoding result; /* the guessed encoding */ + File *file; /* the processed file */ + + if (!an) { + buffer_free(buffer); + return 0; + } + + /* Initialize when we are called the first time. */ + if (buffer == NULL) + buffer = buffer_new(buffer_size); + + if (!enca_charset_is_known(utf8)) { + utf8 = enca_name_to_charset("utf8"); + assert(enca_charset_is_known(utf8)); + } + + /* Read sample. */ + file = file_new(fname, buffer); + if (file_open(file, ot_is_convert ? "r+b" : "rb") != 0) { + file_free(file); + return EXIT_TROUBLE; + } + if (file_read(file) == -1) { + file_free(file); + return EXIT_TROUBLE; + } + if (!ot_is_convert) + file_close(file); + + /* Guess encoding. */ + dwim_libenca_options(an, file); + if (ot_is_convert) + result = enca_analyse_const(an, buffer->data, buffer->pos); + else + result = enca_analyse(an, buffer->data, buffer->pos); + + /* Is conversion required? */ + if (ot_is_convert) { + int err = 0; + + if (enca_charset_is_known(result.charset)) + err = convert(file, result); + else { + if (enca_errno(an) != ENCA_EEMPTY) { + fprintf(stderr, "%s: Cannot convert `%s' from unknown encoding\n", + program_name, + ffname_r(file->name)); + } + /* Copy stdin to stdout unchanged. */ + if (file->name == NULL) + err = copy_and_convert(file, file, NULL); + } + + file_free(file); + if ((err == ERR_OK && !enca_charset_is_known(result.charset) + && enca_errno(an) != ENCA_EEMPTY) + || err == ERR_CANNOT) + return EXIT_FAILURE; + + return (err == ERR_OK) ? EXIT_SUCCESS : EXIT_TROUBLE; + } + + /* Print results. */ + print_results(file->name, an, result, enca_errno(an)); + if (result.charset == utf8) + double_utf8_chk(an, buffer->data, buffer->pos); + + file_free(file); + + return enca_charset_is_known(result.charset) ? EXIT_SUCCESS : EXIT_FAILURE; +} + +/* + * DWIM + * + * Choose some suitable values of all the libenca tuning parameters. + */ +static void +dwim_libenca_options(EncaAnalyser an, const File *file) +{ + const double mu = 0.005; /* derivation in 0 */ + const double m = 15.0; /* value in infinity */ + ssize_t size = file->buffer->pos; + size_t sgnf; + + /* The number of significant characters */ + if (!size) + sgnf = 1; + else + sgnf = ceil((double)size/(size/m + 1.0/mu)); + enca_set_significant(an, sgnf); + + /* When buffer contains whole file, require correct termination. */ + if (file->size == size) + enca_set_termination_strictness(an, 1); + else + enca_set_termination_strictness(an, 0); + + enca_set_filtering(an, sgnf > 2); +} + +/** + * Prints results. + **/ +static void +print_results(const char *fname, + EncaAnalyser an, + EncaEncoding result, + int gerrno) +{ + char *s; + EncaSurface surf = result.surface + & ~enca_charset_natural_surface(result.charset); + + if (options.prefix_filename) + printf("%s: ", ffname_r(fname)); + + switch (options.output_type) { + case OTYPE_ALIASES: + print_aliases(result.charset); + break; + + case OTYPE_CANON: + if (surf) { + s = enca_get_surface_name(surf, ENCA_NAME_STYLE_ENCA); + fputs(enca_charset_name(result.charset, ENCA_NAME_STYLE_ENCA), stdout); + puts(s); + enca_free(s); + } + else + puts(enca_charset_name(result.charset, ENCA_NAME_STYLE_ENCA)); + break; + + case OTYPE_HUMAN: + case OTYPE_DETAILS: + if (surf) { + s = enca_get_surface_name(surf, ENCA_NAME_STYLE_HUMAN); + puts(enca_charset_name(result.charset, ENCA_NAME_STYLE_HUMAN)); + indent_surface(s); + enca_free(s); + } + else + puts(enca_charset_name(result.charset, ENCA_NAME_STYLE_HUMAN)); + break; + + case OTYPE_RFC1345: + puts(enca_charset_name(result.charset, ENCA_NAME_STYLE_RFC1345)); + break; + + case OTYPE_CS2CS: + if (enca_charset_name(result.charset, ENCA_NAME_STYLE_CSTOCS) != NULL) + puts(enca_charset_name(result.charset, ENCA_NAME_STYLE_CSTOCS)); + else + puts(enca_charset_name(ENCA_CS_UNKNOWN, ENCA_NAME_STYLE_CSTOCS)); + break; + + case OTYPE_ICONV: + if (enca_charset_name(result.charset, ENCA_NAME_STYLE_ICONV) != NULL) + puts(enca_charset_name(result.charset, ENCA_NAME_STYLE_ICONV)); + else + puts(enca_charset_name(ENCA_CS_UNKNOWN, ENCA_NAME_STYLE_ICONV)); + break; + + case OTYPE_MIME: + if (enca_charset_name(result.charset, ENCA_NAME_STYLE_MIME) != NULL) + puts(enca_charset_name(result.charset, ENCA_NAME_STYLE_MIME)); + else + puts(enca_charset_name(ENCA_CS_UNKNOWN, ENCA_NAME_STYLE_MIME)); + break; + + default: + abort(); + break; + } + + if (gerrno && options.output_type == OTYPE_DETAILS) { + printf(" Failure reason: %s.\n", enca_strerror(an, gerrno)); + } +} + +/** + * Reformats surface names as returned from enca_get_surface_name() one + * per line to be indented and prints them. + **/ +static void +indent_surface(const char *s) +{ + const char *p; + + while ((p = strchr(s, '\n')) != NULL) { + p++; + printf(" %.*s", (int)(p-s), s); + s = p; + } +} + +/** + * Checks for doubly-encoded UTF-8 and prints a line when it looks so. + **/ +static void +double_utf8_chk(EncaAnalyser an, + const unsigned char *sample, + size_t size) +{ + size_t dbl, i; + int *candidates; + + if (options.output_type != OTYPE_DETAILS + && options.output_type != OTYPE_HUMAN) + return; + + dbl = enca_double_utf8_check(an, sample, size); + if (!dbl) + return; + + candidates = enca_double_utf8_get_candidates(an); + if (candidates == NULL) + return; + if (dbl == 1) + printf(" Doubly-encoded to UTF-8 from"); + else + printf(" Doubly-encoded to UTF-8 from one of:"); + + for (i = 0; i < dbl; i++) + printf(" %s", enca_charset_name(candidates[i], ENCA_NAME_STYLE_ENCA)); + + putchar('\n'); + enca_free(candidates); +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/filebuf.c b/wlx/wayland_qt_base/build/enca-1.19/src/filebuf.c new file mode 100644 index 0000000..e260735 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/filebuf.c @@ -0,0 +1,594 @@ +/* + buffers, input/output operations with magic buffering and small utils + + Copyright (C) 2000-2002 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#include "common.h" + +/* XXX: We can't go on w/o this, defining struct stat manually is + * braindamaged. */ +#include +#include + +#if HAVE_FCNTL_H +# include +#else /* HAVE_FCNTL_H */ +int open(const char *pathname, int flags, mode_t mode); +#endif /* HAVE_FCNTL_H */ + +/* MS simply cannot use the same function names as everyone else... */ +#ifndef HAVE_FTRUNCATE +# ifdef WIN32 +# include +# define ftruncate _chsize +# else + /* XXX: We are in trouble. */ +# endif +#endif + +/* stdin and stdout names */ +static const char *stdin_fname = "STDIN"; +static const char *stdout_fname = "STDOUT"; + +/* Local prototypes. */ +static off_t file_size(File *file); +static int file_fileno(File *file); +static ssize_t file_read_limited(File *file, + ssize_t limit); + +/* I/O buffer size. */ +size_t buffer_size = 0x10000; + +/* + Implementation notes: + + All the file_* functions below contain a considerable amount of magic. + This means you don't have to care about many things when using them; + unfortunately, some other things you would intuitively expect to work, + don't work and can break them totally. So be careful and RTFS in case + of doubts. +*/ + +/* create and return a new byte buffer of size size + when size is zero use size provided by the system as `good' */ +Buffer* +buffer_new(size_t size) +{ + Buffer *buf; + + buf = NEW(Buffer, 1); + buf->size = (size == 0 ? BUFSIZ : size); + buf->data = (byte*)enca_malloc(buf->size); + buf->pos = 0; + + return buf; +} + +/* destroy a buffer object buf + can be safely called repeatedly */ +void +buffer_free(Buffer *buf) +{ + if (buf == NULL) + return; + + enca_free(buf->data); + enca_free(buf); +} + +/* Find abbreviated name in atable and return pointer to corresponding data. + * When name is NULL, print list of all abbreviations, instead (and + * return NULL too). + * + * Returns NULL when no unique abbreviation is found (or when name + * is NULL too), object_name is then used as object name for diagnostics. */ +const Abbreviation* +expand_abbreviation(const char *name, + const Abbreviation *atable, + size_t size, + const char *object_name) +{ + size_t n, i, pos, acount; + + /* Print list for NULL name. */ + if (name == NULL) { + for (i = 0; i < size; i++) + puts(atable[i].name); + + return NULL; + } + + /* Find all matching abbreviations. */ + n = strlen(name); + pos = 0; + acount = 0; + for (i = 0; i < size; i++) { + if (strncmp(name, atable[i].name, n) == 0) { + acount++; + pos = i; + } + } + + /* No match? */ + if (acount == 0) { + fprintf(stderr, "%s: `%s' doesn't look like a valid %s name\n", + program_name, + name, + object_name); + return NULL; + } + + /* More than one match? */ + if (acount > 1) { + fprintf(stderr, "%s: Abbreviation `%s' is ambiguous, matches:\n", + program_name, + name); + for (i = 0; i < size; i++) { + if (strncmp(name, atable[i].name, n) == 0) + fprintf(stderr, " %s\n", atable[i].name); + } + return NULL; + } + + /* OK, exactly one. */ + return atable + pos; +} + + +/* filename wrapper, return STDIN_FNAME on NULL */ +const char* +ffname_r(const char *fname) +{ + return (fname == NULL) ? stdin_fname : fname; +} + +/* filename wrapper, return STDOUT_FNAME on NULL */ +const char* +ffname_w(const char *fname) +{ + return (fname == NULL) ? stdout_fname : fname; +} + +/* file_read_limited() wrapper, limit is buffer size */ +ssize_t +file_read(File *file) +{ + return file_read_limited(file, file->buffer->size); +} + +/* read from file file storing data to the associated buffer + limit is the desired total number of bytes that should be in the buffer + (not maximum bytes to read) + returns the number of bytes in file's buffer after read, -1 on failure + is up to caller to provide a limit value not greater than buffer size */ +static ssize_t +file_read_limited(File *file, ssize_t limit) +{ + FILE *stream; + + assert(limit >= 0); + assert(file != NULL); + assert(file->buffer != NULL); + + if (limit < file->buffer->pos) + return file->buffer->pos; + + assert((size_t)limit <= file->buffer->size); + + if (file->name == NULL) + stream = stdin; + else + stream = file->stream; + + file->buffer->pos += fread(file->buffer->data + file->buffer->pos, + 1, + limit - file->buffer->pos, + stream); + + /* read failed? */ + if (file->buffer->pos < limit && ferror(stream)) { + fprintf(stderr, "%s: Cannot read file `%s': %s\n", + program_name, + ffname_r(file->name), + strerror(errno)); + file_close(file); + file->buffer->pos = -1; + } + + return file->buffer->pos; +} + +/* file_read_limited() wrapper, is like fgets(), but generates MUCH less + * system calls (usually exactly two per call) than GNU libc's fgets() due to + * buffering. Anyway, getline() is not available on non-GNU. + + * XXX: must NOT be used on non-seekable streams! + */ +byte* +file_getline(File *file) +{ + static const size_t READ_AHEAD = 256; /* 256 is the minimum guaranteed value + of BUFSIZE and also a good maximum + expected line length */ + + ssize_t err; + size_t want_bytes,old; + Buffer *buf; /* file->buffer alias */ + byte *p = NULL; + + assert(file != NULL); + assert(file->buffer != NULL); + + /* overwrite what could remain in the buffer */ + buf = file->buffer; + buf->pos = want_bytes = old = 0; + + /* read chunks of approximately one line size until we hit EOF or find an + EOL */ + do { + want_bytes += READ_AHEAD; + if (want_bytes >= buf->size) + want_bytes = buf->size - 1; + + err = file_read_limited(file, want_bytes); + if (err == -1 || buf->pos == 0) + return NULL; + + p = memchr(buf->data + old, '\n', buf->pos - old); + if (p != NULL || (size_t)(buf->pos) < want_bytes) + break; + + old = buf->pos; + } while (1); + + /* something found? */ + if (p != NULL) { + *(p+1) = '\0'; + file_seek(file, (off_t)(p - buf->data - buf->pos) + 1, SEEK_CUR); + } + /* or just EOF? */ + else + file->buffer->data[file->buffer->pos + 1] = '\0'; + + return file->buffer->data; +} + +/* write to file @file the associated buffer and reset buffer position + returns nonzero if it was successfully written, -1 on failure */ +ssize_t +file_write(File *file) +{ + ssize_t bw; + FILE *stream; + + assert(file != NULL); + assert(file->buffer != NULL); + + if (file->buffer->pos == 0) + return 0; + + if (file->name == NULL) + stream = stdout; + else + stream = file->stream; + + bw = fwrite(file->buffer->data, 1, file->buffer->pos, stream); + /* write failed? */ + if (bw < file->buffer->pos) { + fprintf(stderr, "%s: Cannot write to file `%s': %s\n", + program_name, + ffname_w(file->name), + strerror(errno)); + file_close(file); + return -1; + } + file->buffer->pos = 0; + + return bw; +} + +/* create temporary file, open it readwrite and return the created File + retuns NULL when we are unable to create a temporary file + when ulink is true, delete it right after opening + (XXX: this requires POSIX-conformant system) + + FIXME: we always create temporary files in /tmp */ +File* +file_temporary(Buffer *buffer, int ulink) +{ + /* `template' for temporary file creation */ + char *temp_filename; + + File *file = NULL; + int fd; + + temp_filename = strdup("/tmp/" PACKAGE_TARNAME "XXXXXX"); + + if ((fd = mkstemp(temp_filename)) < 0) { + /* trieed heavy without success? that's bad */ + fprintf(stderr, "%s: Unable to create a temporary file\n" + "do you have write permissions in /tmp?\n", + program_name); + + free(temp_filename); + return NULL; + } + + file = file_new(temp_filename, buffer); + + free(temp_filename); + + /* fdopen it to get the stream */ + if ((file->stream = fdopen(fd, "w+b")) == NULL) { + fprintf(stderr, "%s: Cannot get stream for an open filedescriptor %d: %s\n", + program_name, + fd, + strerror(errno)); + exit(EXIT_TROUBLE); + } + /* here, we have a unique temporary file opened readwrite */ + if (ulink) + file_unlink(file->name); + return file; +} + +/* reposition file file + see lseek(2) for description + returns current position from begining of file, -1 on failure */ +off_t +file_seek(File *file, off_t offset, int whence) +{ + off_t i; + + assert(file != NULL); + + i = fseek(file->stream, offset, whence); + if (i == -1) { + fprintf(stderr, "%s: Cannot seek in file `%s': %s\n", + program_name, + file->name, + strerror(errno)); + file_close(file); + } + + return i; +} + +/* truncate file file + see truncate(2) for description + returns zero on success, -1 on failure */ +int +file_truncate(File *file, off_t length) +{ + int fd; + + assert(file != NULL); + assert(file->name != NULL); /* we should not be called on stdin/stdout */ + + fd = file_fileno(file); + if (options.verbosity_level > 8) + fprintf(stderr, "Truncating `%s' to %ld\n", file->name, (long int)length); + if (ftruncate(fd, length) == 0) + return 0; + + fprintf(stderr, "%s: Cannot truncate file `%s' to %ld: %s\n", + program_name, + file->name, + (long int)length, + strerror(errno)); + file_close(file); + return -1; +} + +/* unlink file fname + see unlink(2) for description + returns 0 on success, nonzero on failure */ +int +file_unlink(const char *fname) +{ + int err; + + assert(fname != NULL); + + if (options.verbosity_level > 8) + fprintf(stderr, "Unlinking `%s'\n", fname); + err = unlink(fname); + if (err != 0) { + fprintf(stderr, "%s: Cannot unlink file `%s': %s\n", + program_name, + fname, + strerror(errno)); + } + + return err; +} + +/* open a file file in mode mode + see fopen(3) for description + however, we disable buffering by default + and opening file whose name is NULL assings the `magic' stdin/stdout + returns 0 on success, nonzero otherwise */ +int +file_open(File *file, const char *mode) +{ + assert(file != NULL); + assert(file->buffer != NULL); + assert(mode != NULL); + assert(*mode); + + if (mode[0] == 'r') + file->buffer->pos = 0; + + /* fake stdin/stdout opening */ + if (file->name == NULL) { + if (options.verbosity_level > 8) + fprintf(stderr, "Fake-opening stdin/stdout in mode %s\n", mode); + if (mode[0] == 'r' || mode[0] =='w') { + file->stream = NULL; + file->size = -1; + return 0; + } + fprintf(stderr, "%s: Cannot open stdin/stdout in mode %s\n", + program_name, + mode); + return 1; + } + + /* open a regular file */ + if (options.verbosity_level > 8) + fprintf(stderr, "Opening file `%s' in mode %s\n", file->name, mode); + file->stream = fopen(file->name, mode); + if (file->stream == NULL) { + fprintf(stderr, "%s: Cannot open file `%s' in mode %s: %s\n", + program_name, + file->name, + mode, + strerror(errno)); + return 1; + } + + /* get length */ + if (mode[0] == 'r') { + file->size = file_size(file); + if (options.verbosity_level > 8) + fprintf(stderr, "File `%s' size is %ld\n", + file->name, (long int)file->size); + if (file->size == -1) + return 1; + } + else file->size = -1; + + return 0; +} + +/* close file file + see fclose(3) for description + but this one can be safely called repeatedly on the same stream or on + a not-yet-opened stream */ +int +file_close(File *file) +{ + assert(file != NULL); + + /* it's OK to close files any times we want and to close files that have + never been opened + also fake `magic' stdin/stdout closing */ + if (file->name == NULL) { + if (options.verbosity_level > 8) + fprintf(stderr, "Fake-closing stdin/stdout\n"); + return 0; + } + + if (file->stream == NULL) { + if (options.verbosity_level > 8) + fprintf(stderr, "Closing an already closed file (noop)\n"); + return 0; + } + + /* close a regular file */ + if (options.verbosity_level > 8) + fprintf(stderr, "Closing file `%s'\n", file->name); + if (fclose(file->stream) == EOF) { + fprintf(stderr, "%s: Cannot close file `%s': %s\n", + program_name, + file->name, + strerror(errno)); + exit(EXIT_TROUBLE); + } + file->stream = NULL; + + return 0; +} + +/* return the size of an open stream (by stat()-ing it) + returns -1 on failure */ +static off_t +file_size(File *file) +{ + int fd; + struct stat st; + + assert(file != NULL); + + if (file->name == NULL) + return -1; + + fd = file_fileno(file); + if (options.verbosity_level > 8) + fprintf(stderr, "stat()-ing `%s' (fd %d) for its size\n", file->name, fd); + if (fstat(fd, &st) != 0) { + fprintf(stderr, "%s: Cannot stat file `%s': %s\n", + program_name, + ffname_r(file->name), + strerror(errno)); + return -1; + } + + return st.st_size; +} + +/* return a filedescriptor given a stream, see fileno(3) for description + * never fails, on failure aborts program. */ +static int +file_fileno(File *file) +{ + int fd; + + fd = fileno(file->stream); + if (fd != -1) + return fd; + + fprintf(stderr, "%s: Cannot get filedescriptor for an open stream `%s': %s\n", + program_name, + ffname_r(file->name), + strerror(errno)); + exit(EXIT_TROUBLE); + + return -1; +} + +/* create and return a file object whose filename is fname + and which uses buffer buffer for i/o operations */ +File* +file_new(const char *fname, Buffer *buffer) { + File *file; + + file = NEW(File, 1); + file->name = enca_strdup(fname); + file->stream = NULL; + file->size = -1; + file->buffer = buffer; + + return file; +} + +/* destroy a file object file, possibly closing it when opened + does NOT destroy the associated buffer + can be safely called repeatedly */ +void +file_free(File *file) +{ + if (file == NULL) + return; + + if (file->stream != NULL) + file_close(file); + enca_free(file->name); + enca_free(file); +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/getopt.h b/wlx/wayland_qt_base/build/enca-1.19/src/getopt.h new file mode 100644 index 0000000..12b7ad5 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/getopt.h @@ -0,0 +1,180 @@ +/* Declarations for getopt. + Copyright (C) 1989,90,91,92,93,94,96,97,98,99 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with the GNU C Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ + +#ifndef _GETOPT_H + +#ifndef __need_getopt +# define _GETOPT_H 1 +#endif + +/* If __GNU_LIBRARY__ is not already defined, either we are being used + standalone, or this is the first header included in the source file. + If we are being used with glibc, we need to include , but + that does not exist if we are standalone. So: if __GNU_LIBRARY__ is + not defined, include , which will pull in for us + if it's from glibc. (Why ctype.h? It's guaranteed to exist and it + doesn't flood the namespace with stuff the way some other headers do.) */ +#if !defined __GNU_LIBRARY__ +# include +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +/* For communication from `getopt' to the caller. + When `getopt' finds an option that takes an argument, + the argument value is returned here. + Also, when `ordering' is RETURN_IN_ORDER, + each non-option ARGV-element is returned here. */ + +extern char *optarg; + +/* Index in ARGV of the next element to be scanned. + This is used for communication to and from the caller + and for communication between successive calls to `getopt'. + + On entry to `getopt', zero means this is the first call; initialize. + + When `getopt' returns -1, this is the index of the first of the + non-option elements that the caller should itself scan. + + Otherwise, `optind' communicates from one call to the next + how much of ARGV has been scanned so far. */ + +extern int optind; + +/* Callers store zero here to inhibit the error message `getopt' prints + for unrecognized options. */ + +extern int opterr; + +/* Set to an option character which was unrecognized. */ + +extern int optopt; + +#ifndef __need_getopt +/* Describe the long-named options requested by the application. + The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector + of `struct option' terminated by an element containing a name which is + zero. + + The field `has_arg' is: + no_argument (or 0) if the option does not take an argument, + required_argument (or 1) if the option requires an argument, + optional_argument (or 2) if the option takes an optional argument. + + If the field `flag' is not NULL, it points to a variable that is set + to the value given in the field `val' when the option is found, but + left unchanged if the option is not found. + + To have a long-named option do something other than set an `int' to + a compiled-in constant, such as set a value from `optarg', set the + option's `flag' field to zero and its `val' field to a nonzero + value (the equivalent single-letter option character, if there is + one). For long options that have a zero `flag' field, `getopt' + returns the contents of the `val' field. */ + +struct option +{ +# if defined __STDC__ && __STDC__ + const char *name; +# else + char *name; +# endif + /* has_arg can't be an enum because some compilers complain about + type mismatches in all the code that assumes it is an int. */ + int has_arg; + int *flag; + int val; +}; + +/* Names for the values of the `has_arg' field of `struct option'. */ + +# define no_argument 0 +# define required_argument 1 +# define optional_argument 2 +#endif /* need getopt */ + + +/* Get definitions and prototypes for functions to process the + arguments in ARGV (ARGC of them, minus the program name) for + options given in OPTS. + + Return the option character from OPTS just read. Return -1 when + there are no more options. For unrecognized options, or options + missing arguments, `optopt' is set to the option letter, and '?' is + returned. + + The OPTS string is a list of characters which are recognized option + letters, optionally followed by colons, specifying that that letter + takes an argument, to be placed in `optarg'. + + If a letter in OPTS is followed by two colons, its argument is + optional. This behavior is specific to the GNU `getopt'. + + The argument `--' causes premature termination of argument + scanning, explicitly telling `getopt' that there are no more + options. + + If OPTS begins with `--', then non-option arguments are treated as + arguments to the option '\0'. This behavior is specific to the GNU + `getopt'. */ + +#if defined __STDC__ && __STDC__ +# ifdef __GNU_LIBRARY__ +/* Many other libraries have conflicting prototypes for getopt, with + differences in the consts, in stdlib.h. To avoid compilation + errors, only prototype getopt for the GNU C library. */ +extern int getopt (int __argc, char *const *__argv, const char *__shortopts); +# else /* not __GNU_LIBRARY__ */ +extern int getopt (); +# endif /* __GNU_LIBRARY__ */ + +# ifndef __need_getopt +extern int getopt_long (int __argc, char *const *__argv, const char *__shortopts, + const struct option *__longopts, int *__longind); +extern int getopt_long_only (int __argc, char *const *__argv, + const char *__shortopts, + const struct option *__longopts, int *__longind); + +/* Internal only. Users should not call this directly. */ +extern int _getopt_internal (int __argc, char *const *__argv, + const char *__shortopts, + const struct option *__longopts, int *__longind, + int __long_only); +# endif +#else /* not __STDC__ */ +extern int getopt (); +# ifndef __need_getopt +extern int getopt_long (); +extern int getopt_long_only (); + +extern int _getopt_internal (); +# endif +#endif /* __STDC__ */ + +#ifdef __cplusplus +} +#endif + +/* Make sure we later can get all the definitions and declarations. */ +#undef __need_getopt + +#endif /* getopt.h */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/getopt_long.c b/wlx/wayland_qt_base/build/enca-1.19/src/getopt_long.c new file mode 100644 index 0000000..caba753 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/getopt_long.c @@ -0,0 +1,911 @@ +/* Note: This file has been created from getopt.c and getopt1.c in order + to have only one file called the same as the function it implements + (getopt_long) by David Necas . During that, some + stuff not needed when building standalone getopt has been removed. No + other changes have been made. */ +/* Getopt for GNU. + NOTE: getopt is now part of the C library, so if you don't know what + "Keep this file name-space clean" means, talk to drepper@gnu.org + before changing it! + + Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000 + Free Software Foundation, Inc. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with the GNU C Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ + +/* This tells Alpha OSF/1 not to define a getopt prototype in . + Ditto for AIX 3.2 and . */ +#ifndef _NO_PROTO +# define _NO_PROTO +#endif + +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#ifndef NULL +#define NULL 0 +#endif + +#if !defined __STDC__ || !__STDC__ +/* This is a separate conditional since some stdc systems + reject `defined (const)'. */ +# ifndef const +# define const +# endif +#endif + +#include + +/* This needs to come after some library #include + to get __GNU_LIBRARY__ defined. */ +#ifdef __GNU_LIBRARY__ +/* Don't include stdlib.h for non-GNU C libraries because some of them + contain conflicting prototypes for getopt. */ +# include +# include +#endif /* GNU C library. */ + +#ifdef VMS +# include +# if HAVE_STRING_H - 0 +# include +# endif +#endif + +#ifndef _ +/* This is for other GNU distributions with internationalized messages. */ +# if defined HAVE_LIBINTL_H +# include +# ifndef _ +# define _(msgid) gettext (msgid) +# endif +# else +# define _(msgid) (msgid) +# endif +#endif + +/* This version of `getopt' appears to the caller like standard Unix `getopt' + but it behaves differently for the user, since it allows the user + to intersperse the options with the other arguments. + + As `getopt' works, it permutes the elements of ARGV so that, + when it is done, all the options precede everything else. Thus + all application programs are extended to handle flexible argument order. + + Setting the environment variable POSIXLY_CORRECT disables permutation. + Then the behavior is completely standard. + + GNU application programs can use a third alternative mode in which + they can distinguish the relative order of options and other arguments. */ + +#include "getopt.h" + +/* For communication from `getopt' to the caller. + When `getopt' finds an option that takes an argument, + the argument value is returned here. + Also, when `ordering' is RETURN_IN_ORDER, + each non-option ARGV-element is returned here. */ + +char *optarg; + +/* Index in ARGV of the next element to be scanned. + This is used for communication to and from the caller + and for communication between successive calls to `getopt'. + + On entry to `getopt', zero means this is the first call; initialize. + + When `getopt' returns -1, this is the index of the first of the + non-option elements that the caller should itself scan. + + Otherwise, `optind' communicates from one call to the next + how much of ARGV has been scanned so far. */ + +/* 1003.2 says this must be 1 before any call. */ +int optind = 1; + +/* Formerly, initialization of getopt depended on optind==0, which + causes problems with re-calling getopt as programs generally don't + know that. */ + +int __getopt_initialized; + +/* The next char to be scanned in the option-element + in which the last option character we returned was found. + This allows us to pick up the scan where we left off. + + If this is zero, or a null string, it means resume the scan + by advancing to the next ARGV-element. */ + +static char *nextchar; + +/* Callers store zero here to inhibit the error message + for unrecognized options. */ + +int opterr = 1; + +/* Set to an option character which was unrecognized. + This must be initialized on some systems to avoid linking in the + system's own getopt implementation. */ + +int optopt = '?'; + +/* Describe how to deal with options that follow non-option ARGV-elements. + + If the caller did not specify anything, + the default is REQUIRE_ORDER if the environment variable + POSIXLY_CORRECT is defined, PERMUTE otherwise. + + REQUIRE_ORDER means don't recognize them as options; + stop option processing when the first non-option is seen. + This is what Unix does. + This mode of operation is selected by either setting the environment + variable POSIXLY_CORRECT, or using `+' as the first character + of the list of option characters. + + PERMUTE is the default. We permute the contents of ARGV as we scan, + so that eventually all the non-options are at the end. This allows options + to be given in any order, even with programs that were not written to + expect this. + + RETURN_IN_ORDER is an option available to programs that were written + to expect options and other ARGV-elements in any order and that care about + the ordering of the two. We describe each non-option ARGV-element + as if it were the argument of an option with character code 1. + Using `-' as the first character of the list of option characters + selects this mode of operation. + + The special argument `--' forces an end of option-scanning regardless + of the value of `ordering'. In the case of RETURN_IN_ORDER, only + `--' can cause `getopt' to return -1 with `optind' != ARGC. */ + +static enum +{ + REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER +} ordering; + +/* Value of POSIXLY_CORRECT environment variable. */ +static char *posixly_correct; + +#ifdef __GNU_LIBRARY__ +/* We want to avoid inclusion of string.h with non-GNU libraries + because there are many ways it can cause trouble. + On some systems, it contains special magic macros that don't work + in GCC. */ +# include +# define my_index strchr +#else + +# if HAVE_STRING_H +# include +# else +# include +# endif + +/* Avoid depending on library functions or files + whose names are inconsistent. */ + +#ifndef getenv +extern char *getenv (); +#endif + +static char * +my_index (str, chr) + const char *str; + int chr; +{ + while (*str) + { + if (*str == chr) + return (char *) str; + str++; + } + return 0; +} + +/* If using GCC, we can safely declare strlen this way. + If not using GCC, it is ok not to declare it. */ +#ifdef __GNUC__ +/* Note that Motorola Delta 68k R3V7 comes with GCC but not stddef.h. + That was relevant to code that was here before. */ +# if (!defined __STDC__ || !__STDC__) && !defined strlen +/* gcc with -traditional declares the built-in strlen to return int, + and has done so at least since version 2.4.5. -- rms. */ +extern int strlen (const char *); +# endif /* not __STDC__ */ +#endif /* __GNUC__ */ + +#endif /* not __GNU_LIBRARY__ */ + +/* Handle permutation of arguments. */ + +/* Describe the part of ARGV that contains non-options that have + been skipped. `first_nonopt' is the index in ARGV of the first of them; + `last_nonopt' is the index after the last of them. */ + +static int first_nonopt; +static int last_nonopt; + +#define SWAP_FLAGS(ch1, ch2) + +/* Exchange two adjacent subsequences of ARGV. + One subsequence is elements [first_nonopt,last_nonopt) + which contains all the non-options that have been skipped so far. + The other is elements [last_nonopt,optind), which contains all + the options processed since those non-options were skipped. + + `first_nonopt' and `last_nonopt' are relocated so that they describe + the new indices of the non-options in ARGV after they are moved. */ + +#if defined __STDC__ && __STDC__ +static void exchange (char **); +#endif + +static void +exchange (argv) + char **argv; +{ + int bottom = first_nonopt; + int middle = last_nonopt; + int top = optind; + char *tem; + + /* Exchange the shorter segment with the far end of the longer segment. + That puts the shorter segment into the right place. + It leaves the longer segment in the right place overall, + but it consists of two parts that need to be swapped next. */ + + while (top > middle && middle > bottom) + { + if (top - middle > middle - bottom) + { + /* Bottom segment is the short one. */ + int len = middle - bottom; + register int i; + + /* Swap it with the top part of the top segment. */ + for (i = 0; i < len; i++) + { + tem = argv[bottom + i]; + argv[bottom + i] = argv[top - (middle - bottom) + i]; + argv[top - (middle - bottom) + i] = tem; + SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); + } + /* Exclude the moved bottom segment from further swapping. */ + top -= len; + } + else + { + /* Top segment is the short one. */ + int len = top - middle; + register int i; + + /* Swap it with the bottom part of the bottom segment. */ + for (i = 0; i < len; i++) + { + tem = argv[bottom + i]; + argv[bottom + i] = argv[middle + i]; + argv[middle + i] = tem; + SWAP_FLAGS (bottom + i, middle + i); + } + /* Exclude the moved top segment from further swapping. */ + bottom += len; + } + } + + /* Update records for the slots the non-options now occupy. */ + + first_nonopt += (optind - last_nonopt); + last_nonopt = optind; +} + +/* Initialize the internal data when the first call is made. */ + +#if defined __STDC__ && __STDC__ +static const char *_getopt_initialize (int, char *const *, const char *); +#endif +static const char * +_getopt_initialize (argc, argv, optstring) + int argc; + char *const *argv; + const char *optstring; +{ + /* Start processing options with ARGV-element 1 (since ARGV-element 0 + is the program name); the sequence of previously skipped + non-option ARGV-elements is empty. */ + + first_nonopt = last_nonopt = optind; + + nextchar = NULL; + + posixly_correct = getenv ("POSIXLY_CORRECT"); + + /* Determine how to handle the ordering of options and nonoptions. */ + + if (optstring[0] == '-') + { + ordering = RETURN_IN_ORDER; + ++optstring; + } + else if (optstring[0] == '+') + { + ordering = REQUIRE_ORDER; + ++optstring; + } + else if (posixly_correct != NULL) + ordering = REQUIRE_ORDER; + else + ordering = PERMUTE; + + return optstring; +} + +/* Scan elements of ARGV (whose length is ARGC) for option characters + given in OPTSTRING. + + If an element of ARGV starts with '-', and is not exactly "-" or "--", + then it is an option element. The characters of this element + (aside from the initial '-') are option characters. If `getopt' + is called repeatedly, it returns successively each of the option characters + from each of the option elements. + + If `getopt' finds another option character, it returns that character, + updating `optind' and `nextchar' so that the next call to `getopt' can + resume the scan with the following option character or ARGV-element. + + If there are no more option characters, `getopt' returns -1. + Then `optind' is the index in ARGV of the first ARGV-element + that is not an option. (The ARGV-elements have been permuted + so that those that are not options now come last.) + + OPTSTRING is a string containing the legitimate option characters. + If an option character is seen that is not listed in OPTSTRING, + return '?' after printing an error message. If you set `opterr' to + zero, the error message is suppressed but we still return '?'. + + If a char in OPTSTRING is followed by a colon, that means it wants an arg, + so the following text in the same ARGV-element, or the text of the following + ARGV-element, is returned in `optarg'. Two colons mean an option that + wants an optional arg; if there is text in the current ARGV-element, + it is returned in `optarg', otherwise `optarg' is set to zero. + + If OPTSTRING starts with `-' or `+', it requests different methods of + handling the non-option ARGV-elements. + See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above. + + Long-named options begin with `--' instead of `-'. + Their names may be abbreviated as long as the abbreviation is unique + or is an exact match for some defined option. If they have an + argument, it follows the option name in the same ARGV-element, separated + from the option name by a `=', or else the in next ARGV-element. + When `getopt' finds a long-named option, it returns 0 if that option's + `flag' field is nonzero, the value of the option's `val' field + if the `flag' field is zero. + + The elements of ARGV aren't really const, because we permute them. + But we pretend they're const in the prototype to be compatible + with other systems. + + LONGOPTS is a vector of `struct option' terminated by an + element containing a name which is zero. + + LONGIND returns the index in LONGOPT of the long-named option found. + It is only valid when a long-named option has been found by the most + recent call. + + If LONG_ONLY is nonzero, '-' as well as '--' can introduce + long-named options. */ + +int +_getopt_internal (argc, argv, optstring, longopts, longind, long_only) + int argc; + char *const *argv; + const char *optstring; + const struct option *longopts; + int *longind; + int long_only; +{ + int print_errors = opterr; + if (optstring[0] == ':') + print_errors = 0; + + if (argc < 1) + return -1; + + optarg = NULL; + + if (optind == 0 || !__getopt_initialized) + { + if (optind == 0) + optind = 1; /* Don't scan ARGV[0], the program name. */ + optstring = _getopt_initialize (argc, argv, optstring); + __getopt_initialized = 1; + } + + /* Test whether ARGV[optind] points to a non-option argument. + Either it does not have option syntax, or there is an environment flag + from the shell indicating it is not an option. The later information + is only used when the used in the GNU libc. */ +#define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0') + + if (nextchar == NULL || *nextchar == '\0') + { + /* Advance to the next ARGV-element. */ + + /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been + moved back by the user (who may also have changed the arguments). */ + if (last_nonopt > optind) + last_nonopt = optind; + if (first_nonopt > optind) + first_nonopt = optind; + + if (ordering == PERMUTE) + { + /* If we have just processed some options following some non-options, + exchange them so that the options come first. */ + + if (first_nonopt != last_nonopt && last_nonopt != optind) + exchange ((char **) argv); + else if (last_nonopt != optind) + first_nonopt = optind; + + /* Skip any additional non-options + and extend the range of non-options previously skipped. */ + + while (optind < argc && NONOPTION_P) + optind++; + last_nonopt = optind; + } + + /* The special ARGV-element `--' means premature end of options. + Skip it like a null option, + then exchange with previous non-options as if it were an option, + then skip everything else like a non-option. */ + + if (optind != argc && !strcmp (argv[optind], "--")) + { + optind++; + + if (first_nonopt != last_nonopt && last_nonopt != optind) + exchange ((char **) argv); + else if (first_nonopt == last_nonopt) + first_nonopt = optind; + last_nonopt = argc; + + optind = argc; + } + + /* If we have done all the ARGV-elements, stop the scan + and back over any non-options that we skipped and permuted. */ + + if (optind == argc) + { + /* Set the next-arg-index to point at the non-options + that we previously skipped, so the caller will digest them. */ + if (first_nonopt != last_nonopt) + optind = first_nonopt; + return -1; + } + + /* If we have come to a non-option and did not permute it, + either stop the scan or describe it to the caller and pass it by. */ + + if (NONOPTION_P) + { + if (ordering == REQUIRE_ORDER) + return -1; + optarg = argv[optind++]; + return 1; + } + + /* We have found another option-ARGV-element. + Skip the initial punctuation. */ + + nextchar = (argv[optind] + 1 + + (longopts != NULL && argv[optind][1] == '-')); + } + + /* Decode the current option-ARGV-element. */ + + /* Check whether the ARGV-element is a long option. + + If long_only and the ARGV-element has the form "-f", where f is + a valid short option, don't consider it an abbreviated form of + a long option that starts with f. Otherwise there would be no + way to give the -f short option. + + On the other hand, if there's a long option "fubar" and + the ARGV-element is "-fu", do consider that an abbreviation of + the long option, just like "--fu", and not "-f" with arg "u". + + This distinction seems to be the most useful approach. */ + + if (longopts != NULL + && (argv[optind][1] == '-' + || (long_only && (argv[optind][2] || !my_index (optstring, argv[optind][1]))))) + { + char *nameend; + const struct option *p; + const struct option *pfound = NULL; + int exact = 0; + int ambig = 0; + int indfound = -1; + int option_index; + + for (nameend = nextchar; *nameend && *nameend != '='; nameend++) + /* Do nothing. */ ; + + /* Test all long options for either exact match + or abbreviated matches. */ + for (p = longopts, option_index = 0; p->name; p++, option_index++) + if (!strncmp (p->name, nextchar, nameend - nextchar)) + { + if ((unsigned int) (nameend - nextchar) + == (unsigned int) strlen (p->name)) + { + /* Exact match found. */ + pfound = p; + indfound = option_index; + exact = 1; + break; + } + else if (pfound == NULL) + { + /* First nonexact match found. */ + pfound = p; + indfound = option_index; + } + else if (long_only + || pfound->has_arg != p->has_arg + || pfound->flag != p->flag + || pfound->val != p->val) + /* Second or later nonexact match found. */ + ambig = 1; + } + + if (ambig && !exact) + { + if (print_errors) + fprintf (stderr, _("%s: option `%s' is ambiguous\n"), + argv[0], argv[optind]); + nextchar += strlen (nextchar); + optind++; + optopt = 0; + return '?'; + } + + if (pfound != NULL) + { + option_index = indfound; + optind++; + if (*nameend) + { + /* Don't test has_arg with >, because some C compilers don't + allow it to be used on enums. */ + if (pfound->has_arg) + optarg = nameend + 1; + else + { + if (print_errors) + { + if (argv[optind - 1][1] == '-') + /* --option */ + fprintf (stderr, + _("%s: option `--%s' doesn't allow an argument\n"), + argv[0], pfound->name); + else + /* +option or -option */ + fprintf (stderr, + _("%s: option `%c%s' doesn't allow an argument\n"), + argv[0], argv[optind - 1][0], pfound->name); + } + + nextchar += strlen (nextchar); + + optopt = pfound->val; + return '?'; + } + } + else if (pfound->has_arg == 1) + { + if (optind < argc) + optarg = argv[optind++]; + else + { + if (print_errors) + fprintf (stderr, + _("%s: option `%s' requires an argument\n"), + argv[0], argv[optind - 1]); + nextchar += strlen (nextchar); + optopt = pfound->val; + return optstring[0] == ':' ? ':' : '?'; + } + } + nextchar += strlen (nextchar); + if (longind != NULL) + *longind = option_index; + if (pfound->flag) + { + *(pfound->flag) = pfound->val; + return 0; + } + return pfound->val; + } + + /* Can't find it as a long option. If this is not getopt_long_only, + or the option starts with '--' or is not a valid short + option, then it's an error. + Otherwise interpret it as a short option. */ + if (!long_only || argv[optind][1] == '-' + || my_index (optstring, *nextchar) == NULL) + { + if (print_errors) + { + if (argv[optind][1] == '-') + /* --option */ + fprintf (stderr, _("%s: unrecognized option `--%s'\n"), + argv[0], nextchar); + else + /* +option or -option */ + fprintf (stderr, _("%s: unrecognized option `%c%s'\n"), + argv[0], argv[optind][0], nextchar); + } + nextchar = (char *) ""; + optind++; + optopt = 0; + return '?'; + } + } + + /* Look at and handle the next short option-character. */ + + { + char c = *nextchar++; + char *temp = my_index (optstring, c); + + /* Increment `optind' when we start to process its last character. */ + if (*nextchar == '\0') + ++optind; + + if (temp == NULL || c == ':') + { + if (print_errors) + { + if (posixly_correct) + /* 1003.2 specifies the format of this message. */ + fprintf (stderr, _("%s: illegal option -- %c\n"), + argv[0], c); + else + fprintf (stderr, _("%s: invalid option -- %c\n"), + argv[0], c); + } + optopt = c; + return '?'; + } + /* Convenience. Treat POSIX -W foo same as long option --foo */ + if (temp[0] == 'W' && temp[1] == ';') + { + char *nameend; + const struct option *p; + const struct option *pfound = NULL; + int exact = 0; + int ambig = 0; + int indfound = 0; + int option_index; + + /* This is an option that requires an argument. */ + if (*nextchar != '\0') + { + optarg = nextchar; + /* If we end this ARGV-element by taking the rest as an arg, + we must advance to the next element now. */ + optind++; + } + else if (optind == argc) + { + if (print_errors) + { + /* 1003.2 specifies the format of this message. */ + fprintf (stderr, _("%s: option requires an argument -- %c\n"), + argv[0], c); + } + optopt = c; + if (optstring[0] == ':') + c = ':'; + else + c = '?'; + return c; + } + else + /* We already incremented `optind' once; + increment it again when taking next ARGV-elt as argument. */ + optarg = argv[optind++]; + + /* optarg is now the argument, see if it's in the + table of longopts. */ + + for (nextchar = nameend = optarg; *nameend && *nameend != '='; nameend++) + /* Do nothing. */ ; + + /* Test all long options for either exact match + or abbreviated matches. */ + for (p = longopts, option_index = 0; p->name; p++, option_index++) + if (!strncmp (p->name, nextchar, nameend - nextchar)) + { + if ((unsigned int) (nameend - nextchar) == strlen (p->name)) + { + /* Exact match found. */ + pfound = p; + indfound = option_index; + exact = 1; + break; + } + else if (pfound == NULL) + { + /* First nonexact match found. */ + pfound = p; + indfound = option_index; + } + else + /* Second or later nonexact match found. */ + ambig = 1; + } + if (ambig && !exact) + { + if (print_errors) + fprintf (stderr, _("%s: option `-W %s' is ambiguous\n"), + argv[0], argv[optind]); + nextchar += strlen (nextchar); + optind++; + return '?'; + } + if (pfound != NULL) + { + option_index = indfound; + if (*nameend) + { + /* Don't test has_arg with >, because some C compilers don't + allow it to be used on enums. */ + if (pfound->has_arg) + optarg = nameend + 1; + else + { + if (print_errors) + fprintf (stderr, _("\ +%s: option `-W %s' doesn't allow an argument\n"), + argv[0], pfound->name); + + nextchar += strlen (nextchar); + return '?'; + } + } + else if (pfound->has_arg == 1) + { + if (optind < argc) + optarg = argv[optind++]; + else + { + if (print_errors) + fprintf (stderr, + _("%s: option `%s' requires an argument\n"), + argv[0], argv[optind - 1]); + nextchar += strlen (nextchar); + return optstring[0] == ':' ? ':' : '?'; + } + } + nextchar += strlen (nextchar); + if (longind != NULL) + *longind = option_index; + if (pfound->flag) + { + *(pfound->flag) = pfound->val; + return 0; + } + return pfound->val; + } + nextchar = NULL; + return 'W'; /* Let the application handle it. */ + } + if (temp[1] == ':') + { + if (temp[2] == ':') + { + /* This is an option that accepts an argument optionally. */ + if (*nextchar != '\0') + { + optarg = nextchar; + optind++; + } + else + optarg = NULL; + nextchar = NULL; + } + else + { + /* This is an option that requires an argument. */ + if (*nextchar != '\0') + { + optarg = nextchar; + /* If we end this ARGV-element by taking the rest as an arg, + we must advance to the next element now. */ + optind++; + } + else if (optind == argc) + { + if (print_errors) + { + /* 1003.2 specifies the format of this message. */ + fprintf (stderr, + _("%s: option requires an argument -- %c\n"), + argv[0], c); + } + optopt = c; + if (optstring[0] == ':') + c = ':'; + else + c = '?'; + } + else + /* We already incremented `optind' once; + increment it again when taking next ARGV-elt as argument. */ + optarg = argv[optind++]; + nextchar = NULL; + } + } + return c; + } +} + +int +getopt (argc, argv, optstring) + int argc; + char *const *argv; + const char *optstring; +{ + return _getopt_internal (argc, argv, optstring, + (const struct option *) 0, + (int *) 0, + 0); +} + +int +getopt_long (argc, argv, options, long_options, opt_index) + int argc; + char *const *argv; + const char *options; + const struct option *long_options; + int *opt_index; +{ + return _getopt_internal (argc, argv, options, long_options, opt_index, 0); +} + +/* Like getopt_long, but '-' as well as '--' can indicate a long option. + If an option that starts with '-' (not '--') doesn't match a long option, + but does match a short option, it is parsed as a short option + instead. */ + +int +getopt_long_only (argc, argv, options, long_options, opt_index) + int argc; + char *const *argv; + const char *options; + const struct option *long_options; + int *opt_index; +{ + return _getopt_internal (argc, argv, options, long_options, opt_index, 1); +} + + diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/locale_detect.c b/wlx/wayland_qt_base/build/enca-1.19/src/locale_detect.c new file mode 100644 index 0000000..01691c7 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/locale_detect.c @@ -0,0 +1,394 @@ +/* + try to guess user's native language from locale + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#include "common.h" + +#ifdef HAVE_SETLOCALE +# ifdef HAVE_LOCALE_H +# include +# else /* HAVE_LOCALE_H */ +char* setlocale(int category, const char *locale); +# endif /* HAVE_LOCALE_H */ +#endif /* HAVE_SETLOCALE */ + +#ifdef HAVE_NL_LANGINFO +# ifdef HAVE_LANGINFO_H +# include +# else /* HAVE_LANGINFO_H */ +char *nl_langinfo(nl_item *item); +# endif /* HAVE_LANGINFO_H */ +#endif /* HAVE_NL_LANGINFO */ + +static char *codeset = NULL; + +/* Local prototypes. */ +static char* locale_alias_convert(const char *locname); +static char* strip_locale_name(const char *locname); +static char* static_iso639_alias_convert(const char *locname); +#ifdef HAVE_SETLOCALE +static char* detect_target_charset(const char *locname); +static char* detect_user_language(void); +#endif /* HAVE_SETLOCALE */ +static void codeset_free(void); + +/* + * when lang is not NULL converts it to two-character language code + * othwerise, tries to guess what language user wants from locale settings. + * returns string of length 2 containig language code (to be freed by caller) + * or NULL if not detected or unable to convert. + */ +char* +detect_lang(const char *lang) +{ + char *locname, *result, *cvt; + + atexit(codeset_free); +#ifdef HAVE_SETLOCALE + /* No lang, detect locale, then CODESET, then try to transform it */ + if (!lang) { + locname = detect_user_language(); + /* HERE: locname is (a) newly allocated (b) NULL */ + codeset = detect_target_charset(locname); + /* HERE: codeset is (a) newly allocated, different from locname (b) NULL */ + cvt = locale_alias_convert(locname); + result = strip_locale_name(cvt); + enca_free(cvt); + enca_free(locname); + return result; + } + + /* We have lang, try it first untransformed, then transformed for CODESET */ + codeset = detect_target_charset(lang); + locname = locale_alias_convert(lang); + if (!codeset) + codeset = detect_target_charset(locname); + result = strip_locale_name(locname); + enca_free(locname); + return result; + +#else /* HAVE_SETLOCALE */ + cvt = locale_alias_convert(lang); + result = strip_locale_name(cvt); + enca_free(cvt); + return result; +#endif /* HAVE_SETLOCALE */ +} + +#ifdef HAVE_SETLOCALE +/** + * detect_target_charset: + * + * Detect target charset from LC_CTYPE for user's language. + * + * Returns: A string (to be freed) with charset name or NULL on failure. + **/ +static char* +detect_target_charset(const char *locname) +{ + char *s = NULL; + +#ifdef HAVE_NL_LANGINFO + if (!locname) + return NULL; + + if ((s = setlocale(LC_CTYPE, locname)) == NULL) + return NULL; + + s = enca_strdup(nl_langinfo(CODESET)); + + if (setlocale(LC_CTYPE, "C") == NULL) { + fprintf(stderr, "%s: Cannot set LC_CTYPE to the portable \"C\" locale\n", + program_name); + exit(EXIT_TROUBLE); + } + if (options.verbosity_level > 2) + fprintf(stderr, "Detected locale native charset: %s\n", s); +#endif /* HAVE_NL_LANGINFO */ + + return s; +} + +/** + * detect_user_language: + * + * Detect user's locale by querying several LC categories. + * + * NB: this is conceptually wrong, the string returned by setlocale should + * be taken as opaque -- but then we would be in deep shit^Wtrouble. This + * seems to actually happen on Win32. + * + * Returns: A string (to be freed) with locale name or NULL on failure. + **/ +static char* +detect_user_language(void) +{ + static const int test_categories[] = { + LC_CTYPE, LC_COLLATE, +#if HAVE_LC_MESSAGES + LC_MESSAGES, +#endif + }; + char *s = NULL; + size_t i; + + for (i = 0; i < ELEMENTS(test_categories); i++) { + enca_free(s); + if ((s = setlocale(test_categories[i], "")) == NULL) + continue; + s = enca_strdup(s); + if (setlocale(test_categories[i], "C") == NULL) { + fprintf(stderr, "%s: Cannot set locale to the portable \"C\" locale\n", + program_name); + exit(EXIT_TROUBLE); + } + + if (strcmp(s, "") == 0 + || strcmp(s, "C") == 0 + || strcmp(s, "POSIX") == 0 + || (strncmp(s, "en", 2) == 0 && !isalpha(s[2]))) + continue; + + if (options.verbosity_level > 2) + fprintf(stderr, "Locale inherited from environment: %s\n", s); + + return s; + } + + free(s); + return NULL; +} +#endif /* HAVE_SETLOCALE */ + +/* convert locale alias to canonical name using LOCALE_ALIAS_FILE (presumably + /usr/share/locale/locale.alias) and return it + + Returned string should be freed by caller. + + FIXME: this function can get easily confused by lines longer than BUFSIZE + (but the worst thing that can happen is we return wrong locale name) + the locale.alias format is nowhere described, so we assume every line + consists of alias (row 1), some whitespace and canonical name */ +static char* +locale_alias_convert(const char *locname) +{ +#ifdef HAVE_LOCALE_ALIAS + File *fla; /* locale.alias file */ + Buffer *buf; + char *s,*p,*q; + size_t n; +#endif /* HAVE_LOCALE_ALIAS */ + + if (!locname) + return NULL; + + /* Catch the special language name `none' */ + if (strcmp(locname, "none") == 0) + return enca_strdup("__"); + +#ifdef HAVE_LOCALE_ALIAS + /* try to read locale.alias */ + buf = buffer_new(0); + fla = file_new(LOCALE_ALIAS_PATH, buf); + if (file_open(fla, "r") != 0) { + if (options.verbosity_level) { + fprintf(stderr, "Cannot find locale.alias file.\n" + "This build of enca probably has been configured for " + "quite a different system\n"); + } + file_free(fla); + buffer_free(buf); + return enca_strdup(locname); + } + + /* scan locale.alias + somewhat crude now */ + n = strlen(locname); + p = NULL; + s = (char*)buf->data; /* alias */ + while (file_getline(fla) != NULL) { + if (strncmp(s, locname, n) == 0 && + (isspace(s[n]) || (s[n] == ':' && isspace(s[n+1])))) { + p = s + n; + /* skip any amount of whitespace */ + while (isspace(*p)) p++; + q = p; + /* anything up to next whitespace is the canonical locale name */ + while (*q != '\0' && !isspace(*q)) q++; + *q = '\0'; + p = enca_strdup(p); + break; + } + } + file_close(fla); + file_free(fla); + + buffer_free(buf); + return p != NULL ? p : static_iso639_alias_convert(locname); +#else /* HAVE_LOCALE_ALIAS */ + return static_iso639_alias_convert(locname); +#endif /* HAVE_LOCALE_ALIAS */ +} + +/** + * get_lang_codeset: + * + * Returns locale native charset. + * + * MUST be called after detect_lang. + * + * Returns: the codeset name. + **/ +const char* +get_lang_codeset(void) +{ + if (!codeset) + codeset = enca_strdup(""); + + return codeset; +} + +/** + * Returns `language' component of locale name locname (if successfully + * parsed), NULL otherwise + * + * Returned string should be freed by caller. + **/ +static char* +strip_locale_name(const char *locname) +{ + /* Some supported languages can also appear as dialects of some other + * language */ + struct { + const char *dialect; + const char *iso639; + } + const DIALECTS[] = { + { "cs_SK", "sk" }, + { "ru_UA", "uk" }, + }; + + size_t n; + char *s; + + if (!locname) + return NULL; + + s = enca_strdup(locname); + n = strlen(s); + /* Just language: en, de, fr, cs, sk, ru, etc. */ + if (n == 2) + return s; + + /* Some long specification (either X/Open or CEN). */ + if (n >= 5 && s[2] == '_' + && (s[5] == '\0' || s[5] == '.' || s[5] == '+')) { + size_t i; + + /* Convert dialects. */ + for (i = 0; i < ELEMENTS(DIALECTS); i++) { + if (strncmp(DIALECTS[i].dialect, s, 5) == 0) { + s[0] = DIALECTS[i].iso639[0]; + s[1] = DIALECTS[i].iso639[1]; + break; + } + } + + s[2] = '\0'; + } + else { + /* Just garbage or some unresolved locale alias. */ + enca_free(s); + } + + return s; +} + +/** + * Tries to translate language names statically. + * + * Also catches some bad and alternative spellings. + * + * Returned string should be freed by caller. + **/ +static char* +static_iso639_alias_convert(const char *locname) +{ + struct { + const char *alias; + const char *iso639; + } + const ALIASES[] = { + { "byelarussian", "be" }, + { "byelarusian", "be" }, + { "belarussian", "be" }, + { "belarusian", "be" }, + { "byelorussian", "be" }, + { "belorussian", "be" }, + { "byelorusian", "be" }, + { "belorusian", "be" }, + { "bosnian", "hr" }, + { "bulgarian", "bg" }, + { "chinese", "zh" }, + { "croatian", "hr" }, + { "czech", "cs" }, + { "estonian", "et" }, + { "hungarian", "hu" }, + { "lativan", "lt" }, + { "lettic", "lv" }, + { "lettish", "lv" }, + { "lithuanian", "lt" }, + { "macedonian", "bg"}, + { "magyar", "hu" }, + { "montenegrin-cyrilic", "bg"}, + { "montenegrin-latin", "hr" }, + { "polish", "pl" }, + { "russian", "ru" }, + { "serbian-cyrilic", "bg"}, + { "serbian-latin", "hr"}, + { "slovak", "sk" }, + { "slovene", "sl" }, + { "slovenian", "sl" }, + { "ukrainian", "uk" } + }; + + size_t i; + + if (!locname) + return NULL; + + for (i = 0; i < ELEMENTS(ALIASES); i++) { + if (strcmp(ALIASES[i].alias, locname) == 0) { + if (options.verbosity_level > 2) + fprintf(stderr, "Decrypted locale alias using built-in table: %s\n", + ALIASES[i].iso639); + + return enca_strdup(ALIASES[i].iso639); + } + } + + return enca_strdup(locname); +} + +static void +codeset_free(void) +{ + enca_free(codeset); +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/options.c b/wlx/wayland_qt_base/build/enca-1.19/src/options.c new file mode 100644 index 0000000..e13f49e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/options.c @@ -0,0 +1,1006 @@ +/* + command line option processing + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#include "common.h" + +#ifdef HAVE_GETOPT_H +# include +#else /* HAVE_GETOPT_H */ +# include "getopt.h" +#endif /* HAVE_GETOPT_H */ + +#ifdef HAVE_WORDEXP +# ifdef HAVE_WORDEXP_H +# include +# else /* HAVE_WORDEXP_H */ +/* don't declare all the stuff from wordexp.h when not present, it would + probably not work anyway---just don't use it */ +# undef HAVE_WORDEXP +# endif /* HAVE_WORDEXP_H */ +#endif /* HAVE_WORDEXP */ + +typedef void (* ReportFunc)(void); + +/* Program behaviour: enca or enconv. */ +typedef enum { + BEHAVE_ENCA, + BEHAVE_ENCONV +} ProgramBehaviour; + +/* Settings. */ +char *program_name = NULL; +static ProgramBehaviour behaviour = BEHAVE_ENCA; +Options options; + +/* Environment variable containing default options. */ +static const char *ENCA_ENV_VAR = "ENCAOPT"; + +/* Environment variable containing default target charset (think recode). */ +static const char *RECODE_CHARSET_VAR = "DEFAULT_CHARSET"; + +/* Default option values. */ +static const Options DEFAULTS = { + 0, /* verbosity_level */ + NULL, /* language */ + OTYPE_HUMAN, /* output_type */ + { ENCA_CS_UNKNOWN, 0 }, /* target_enc */ + NULL, /* target_enc_str */ + -1, /* prefix_filename */ +}; + +extern const char *const COPYING_text[]; +extern const char *const HELP_text[]; + +/* Version/copyright text. */ +static const char *VERSION_TEXT = /* {{{ */ +"Features: " +#ifdef HAVE_LIBRECODE +"+" +#else /* HAVE_LIBRECODE */ +"-" +#endif /* HAVE_LIBRECODE */ +"librecode-interface " + +#ifdef HAVE_GOOD_ICONV +"+" +#else /* HAVE_GOOD_ICONV */ +"-" +#endif /* HAVE_GOOD_ICONV */ +"iconv-interface " + +#ifdef ENABLE_EXTERNAL +"+" +#else /* ENABLE_EXTERNAL */ +"-" +#endif /* ENABLE_EXTERNAL */ +"external-converter " + +#ifdef HAVE_SETLOCALE +"+" +#else /* HAVE_SETLOCALE */ +"-" +#endif /* HAVE_SETLOCALE */ +"language-detection " + +#ifdef HAVE_LOCALE_ALIAS +"+" +#else /* HAVE_LOCALE_ALIAS */ +"-" +#endif /* HAVE_LOCALE_ALIAS */ +"locale-alias " + +#ifdef HAVE_NL_LANGINFO +"+" +#else /* HAVE_NL_LANGINFO */ +"-" +#endif /* HAVE_NL_LANGINFO */ +"target-charset-auto " + +#ifdef HAVE_WORDEXP +"+" +#else /* HAVE_WORDEXP */ +"-" +#endif /* HAVE_WORDEXP */ +"ENCAOPT "; +/* }}} */ + +static const char *COPYRIGHT_TEXT = /* {{{ */ +"Copyright (C) 2000-2005 David Necas (Yeti) (),\n" +" 2005 Zuxy Meng ().\n" +"\n" +PACKAGE_NAME +" is free software; it can be copied and/or modified under the terms of\n" +"version 2 of GNU General Public License, run `enca --license' to see the full\n" +"license text. There is NO WARRANTY; not even for MERCHANTABILITY or FITNESS\n" +"FOR A PARTICULAR PURPOSE."; +/* }}} */ + +/* Local prototypes. */ +static char** interpret_opt (int argc, + char *argv[], + int cmdl_argc); +static int prepend_env (int argc, + char *argv[], + int *newargc, + char *(*newargv[])); +static OutputType optchar_to_otype (const char c); +static void set_otype_from_name (const char *otname); +static void set_program_behaviour (void); +static int parse_arg_x (const char *s); +static int add_parsed_converters (const char *list); +static void print_some_list (const char *listname); +static char** make_filelist (const int n, + char *argvrest[]); +static int prefix_filename (int pfx); +#ifndef HAVE_PROGRAM_INVOCATION_SHORT_NAME +# define program_invocation_short_name strip_path(argv[0]) +static char* strip_path (const char *fullpath); +#endif /* not HAVE_PROGRAM_INVOCATION_SHORT_NAME */ +static void print_version (void); +static void print_all_charsets (void); +static void print_builtin_charsets (void); +static void print_surfaces (void); +static void print_languages (void); +static void print_lists (void); +static void print_names (void); +static void print_charsets (int only_builtin); +static void print_text_and_exit (const char *const *text, + int exitcode); + +/* merge all sources of options (ENCAOPT and command line arguments) and + process them + returns list of file to process (or NULL for stdin) */ +char** +process_opt(const int argc, char *argv[]) +{ + int newargc; + char **newargv; + char **flist; + + /* Assign defaults. */ + options = DEFAULTS; + + program_name = program_invocation_short_name; + set_program_behaviour(); + +#ifdef ENABLE_EXTERNAL + set_external_converter(DEFAULT_EXTERNAL_CONVERTER); +#endif /* ENABLE_EXTERNAL */ + + /* Prepend options in $ENCAOPT. */ + prepend_env(argc, argv, &newargc, &newargv); + + /* Interpret them. */ + flist = interpret_opt(newargc, newargv, argc); + + /* prefix result with file name iff we are about to process stdin or the + file list contains only one file and we don't print result */ + if (prefix_filename(-1) == -1) { + if ((flist == NULL || flist[1] == NULL) + && options.output_type != OTYPE_DETAILS) + prefix_filename(0); + else + prefix_filename(1); + } + + return flist; +} + +/* process options, return file list (i.e. all remaining arguments) + + FIXME: this function is infinitely ugly */ +static char** +interpret_opt(int argc, char *argv[], int cmdl_argc) +{ + /* Short command line options. */ + static const char *short_options = + "cC:deE:fgGhil:L:mn:pPrsvVx:"; + + /* Long `GNU style' command line options {{{. */ + static const struct option long_options[] = { + { "auto-convert", no_argument, NULL, 'c' }, + { "convert-to", required_argument, NULL, 'x' }, + { "cstocs-name", no_argument, NULL, 's' }, + { "details", no_argument, NULL, 'd' }, + { "enca-name", no_argument, NULL, 'e' }, + { "external-converter-program", required_argument, NULL, 'E' }, + { "guess", no_argument, NULL, 'g' }, + { "help", no_argument, NULL, 'h' }, + { "human-readable", no_argument, NULL, 'f' }, + { "iconv-name", no_argument, NULL, 'i' }, + { "language", required_argument, NULL, 'L' }, + { "license", no_argument, NULL, 'G' }, + { "list", required_argument, NULL, 'l' }, + { "mime-name", no_argument, NULL, 'm' }, + { "name", required_argument, NULL, 'n' }, + { "no-filename", no_argument, NULL, 'P' }, + { "rfc1345-name", no_argument, NULL, 'r' }, + { "try-converters", required_argument, NULL, 'C' }, + { "verbose", no_argument, NULL, 'V' }, + { "version", no_argument, NULL, 'v' }, + { "with-filename", no_argument, NULL, 'p' }, + { NULL, 0, NULL, 0 } + }; + /* }}} */ + + int c; + char **filelist; + int otype_set = 0; /* Whether output type was explicitely set. */ + + /* Process options. */ + opterr = 0; /* Getopt() shouldn't print errors, we do it ourself. */ + while ((c = getopt_long(argc, argv, short_options, + long_options, NULL)) != -1) { + switch (c) { + case '?': /* Unknown option. */ + fprintf(stderr, "%s: Unknown option -%c%s.\n" + "Run `%s --help' to get brief help.\n", + program_name, optopt, + optopt == '\0' ? " or misspelt/ambiguous long option" + : "", + program_name); + exit(EXIT_TROUBLE); + break; + + case ':': /* Missing paramter. */ + fprintf(stderr, "%s: Option -%c requires an argument.\n" + "Run `%s --help' to get brief help.\n", + program_name, optopt, program_name); + exit(EXIT_TROUBLE); + break; + + case 'h': /* Help (and exit). */ + print_text_and_exit(HELP_text, EXIT_SUCCESS); + break; + + case 'v': /* Version (and exit). */ + print_version(); + exit(EXIT_SUCCESS); + break; + + case 'G': /* License (and exit). */ + print_text_and_exit(COPYING_text, EXIT_SUCCESS); + break; + + case 'l': /* Print required list (and exit). */ + print_some_list(optarg); + exit(EXIT_SUCCESS); + break; + + case 'd': /* Detailed output. */ + case 'e': /* Canonical name. */ + case 'f': /* Full (descriptive) output. */ + case 'i': /* Iconv name. */ + case 'm': /* MIME name. */ + case 'r': /* RFC 1345 name as output. */ + case 's': /* Cstocs name as output. */ + options.output_type = optchar_to_otype(c); + otype_set = 1; + break; + + case 'n': /* Output type by name. */ + set_otype_from_name(optarg); + otype_set = 1; + break; + + case 'p': /* Prefix filename on. */ + case 'P': /* Prefix filename off. */ + prefix_filename(islower(c)); + break; + + case 'g': /* Behave enca. */ + behaviour = BEHAVE_ENCA; + break; + + case 'c': /* Behave enconv. */ + behaviour = BEHAVE_ENCONV; + break; + + case 'V': /* Increase verbosity level. */ + options.verbosity_level++; + break; + + case 'x': /* Convert to. */ + options.output_type = OTYPE_CONVERT; + parse_arg_x(optarg); + otype_set = 1; + break; + + case 'L': /* Language. */ + options.language = optarg; + break; + + case 'C': /* Add converters to converter list. */ + add_parsed_converters(optarg); + break; + + case 'E': /* Converter name. */ +#ifdef ENABLE_EXTERNAL + set_external_converter(optarg); +#else /* ENABLE_EXTERNAL */ + fprintf(stderr, "%s: Cannot set external converter.\n" + "Enca was built without support " + "for external converters.\n", + program_name); +#endif /* ENABLE_EXTERNAL */ + break; + + default: + abort(); + break; + } + } + + /* Set and initialize language. */ + options.language = detect_lang(options.language); + if (options.language == NULL) { + fprintf(stderr, "%s: Cannot determine (or understand) " + "your language preferences.\n" + "Please use `-L language', or `-L none' if your language is not supported\n" + "(only a few multibyte encodings can be recognized then).\n" + "Run `%s --list languages' to get a list of supported languages.\n", + program_name, program_name); + exit(EXIT_TROUBLE); + } + + /* Behaviour. */ + /* With an explicit output type doesn't matter how we were called. */ + if (otype_set) { + behaviour = BEHAVE_ENCA; + if (options.output_type == OTYPE_CONVERT + && options.verbosity_level > 2) + fprintf(stderr, "Explicitly specified target charset: %s\n", + options.target_enc_str); + } + + switch (behaviour) { + case BEHAVE_ENCA: + /* Nothing special here. */ + break; + + case BEHAVE_ENCONV: + { + const char *charset; + + /* Try recode's default target charset. */ + charset = getenv(RECODE_CHARSET_VAR); + if (charset != NULL) { + if (options.verbosity_level > 2) + fprintf(stderr, "Inherited recode's %s target charset: %s\n", + RECODE_CHARSET_VAR, charset); + } + else { + /* Then locale native charset. */ + charset = get_lang_codeset(); + assert(charset != NULL); + } + + parse_arg_x(charset); + } + if (options.target_enc_str[0] == '\0') { + fprintf(stderr, "%s: Cannot detect native charset for locale %s.\n" + "You have to use the `-x' option " + "or the %s environment variable " + "to set the target encoding manually.\n", + program_name, + options.language, + RECODE_CHARSET_VAR); + exit(EXIT_TROUBLE); + } + options.output_type = OTYPE_CONVERT; + break; + + default: + abort(); + break; + } + + /* Set up default list of converters. */ + if (add_parsed_converters(NULL) == 0) + add_parsed_converters(DEFAULT_CONVERTER_LIST); + + /* Create file list from remaining options. */ + filelist = make_filelist(argc-optind, argv+optind); + /* When run without any arguments and input is a tty, print help. */ + if (filelist == NULL && enca_isatty(STDIN_FILENO) && cmdl_argc == 1) + print_text_and_exit(HELP_text, EXIT_SUCCESS); + +#ifdef ENABLE_EXTERNAL + if (options.output_type == OTYPE_CONVERT + && external_converter_listed() + && !check_external_converter()) + exit(EXIT_TROUBLE); +#endif + + return filelist; +} + +/* prepend parsed contents of environment variable containing default options + (ENCAOPT) before command line arguments (but after argv[0]) and return the + new list of arguments in newargv (its length is newargc) */ +static int +prepend_env(int argc, + char *argv[], + int *newargc, + char *(*newargv[])) +#ifdef HAVE_WORDEXP +{ + char *msg; + char *encaenv; + wordexp_t encaenv_parsed; + size_t i; + + *newargc = argc; + *newargv = argv; + /* Fetch value of ENCA_ENV_VAR, if set. */ + encaenv = getenv(ENCA_ENV_VAR); + if (encaenv == NULL) + return 0; + + /* Parse encaenv. */ + if ((i = wordexp(encaenv, &encaenv_parsed, WRDE_NOCMD)) != 0) { + switch (i) { + case WRDE_NOSPACE: + wordfree(&encaenv_parsed); + fprintf(stderr, "%s: Cannot allocate memory.\n", + program_name); + exit(EXIT_TROUBLE); + break; + + case WRDE_BADCHAR: + msg = "invalid characters"; + break; + + case WRDE_CMDSUB: + msg = "command substitution is disabled"; + break; + + case WRDE_SYNTAX: + msg = "syntax error"; + break; + + default: + msg = NULL; + break; + } + fprintf(stderr, "%s: Cannot parse value of %s (", + program_name, ENCA_ENV_VAR); + if (msg == NULL) + fprintf(stderr, "error %zd", i); + else + fprintf(stderr, "%s", msg); + + fputs("), ignoring it\n", stderr); + + return 1; + } + + /* create newargv starting from argv[0], then encaenv_parsed, and last rest + of argv; note we copy addresses, not strings themselves from argv */ + *newargc = argc + encaenv_parsed.we_wordc; + *newargv = (char**)enca_malloc((*newargc)*sizeof(char*)); + (*newargv)[0] = argv[0]; + + for (i = 0; i < encaenv_parsed.we_wordc; i++) + (*newargv)[i+1] = enca_strdup(encaenv_parsed.we_wordv[i]); + + for (i = 1; i < (size_t)argc; i++) + (*newargv)[i + encaenv_parsed.we_wordc] = argv[i]; + + /* Free memory. */ + wordfree(&encaenv_parsed); + + return 0; +} +#else /* HAVE_WORDEXP */ +{ + char *encaenv; + size_t nitems; + size_t i, state; + const char *p; + + *newargc = argc; + *newargv = argv; + /* Fetch value of ENCA_ENV_VAR, if set. */ + encaenv = getenv(ENCA_ENV_VAR); + if (encaenv == NULL) + return 0; + + /* Count the number of tokens in ENCA_ENV_VAR. */ + encaenv = enca_strdup(encaenv); + nitems = 0; + state = 0; + for (i = 0; encaenv[i] != '\0'; i++) { + if (state == 0) { + if (!isspace(encaenv[i])) + nitems += ++state; + } + else { + if (isspace(encaenv[i])) { + encaenv[i] = '\0'; + state = 0; + } + } + } + + /* Extend argv[]. (see above) */ + *newargc = argc + nitems; + *newargv = (char**)enca_malloc((*newargc)*sizeof(char*)); + (*newargv)[0] = argv[0]; + + p = encaenv; + for (i = 0; i < nitems; i++) { + while (isspace(*p)) + p++; + + (*newargv)[i+1] = enca_strdup(p); + + while (*p != '\0') + p++; + p++; + } + enca_free(encaenv); + + for (i = 1; i < argc; i++) + (*newargv)[i + nitems] = argv[i]; + + return 0; +} +#endif /* HAVE_WORDEXP */ + +/* Return output type appropriate for given option character. */ +static OutputType +optchar_to_otype(const char c) +{ + switch (c) { + case 'd': return OTYPE_DETAILS; /* Detailed output. */ + case 'e': return OTYPE_CANON; /* Enca's name. */ + case 'f': return OTYPE_HUMAN; /* Full (descriptive) output. */ + case 'i': return OTYPE_ICONV; /* Iconv name. */ + case 'r': return OTYPE_RFC1345; /* RFC 1345 name as output */ + case 's': return OTYPE_CS2CS; /* Cstocs name as output. */ + case 'm': return OTYPE_MIME; /* Preferred MIME name as output. */ + } + + abort(); + return 0; +} + +/* if otname represents a valid output type name, assign it to *otype, + otherwise do nothing + when gets NULL as the name, prints list of valid names instead */ +static void +set_otype_from_name(const char *otname) +{ + /* Abbreviations table stores pointers, we need something to point to. */ + static const OutputType OTS[] = { + OTYPE_DETAILS, + OTYPE_CANON, + OTYPE_HUMAN, + OTYPE_RFC1345, + OTYPE_ICONV, + OTYPE_CS2CS, + OTYPE_MIME, + OTYPE_ALIASES + }; + + /* Output type names. */ + static const Abbreviation OTNAMES[] = + { + { "aliases", OTS+7 }, + { "cstocs", OTS+4 }, + { "details", OTS }, + { "enca", OTS+1 }, + { "human-readable", OTS+2 }, + { "iconv", OTS+5 }, + { "mime", OTS+6 }, + { "rfc1345", OTS+3 }, + }; + + const Abbreviation *p; + + p = expand_abbreviation(otname, OTNAMES, + sizeof(OTNAMES)/sizeof(Abbreviation), + "output type"); + if (p != NULL) + options.output_type = *(OutputType*)p->data; +} + +/* parse -x argument, assign output encoding */ +static int +parse_arg_x(const char *s) +{ + /* Encoding separator for -x argument. */ + static const char XENC_SEPARATOR[] = ".."; + static const size_t XENC_SEPARATOR_LEN = sizeof(XENC_SEPARATOR); + + /* Strip leading `..' if present. */ + if (strncmp(s, XENC_SEPARATOR, XENC_SEPARATOR_LEN) == 0) + s += XENC_SEPARATOR_LEN; + + /* Assign target encoding. */ + enca_free(options.target_enc_str); + options.target_enc_str = enca_strdup(s); + + /* We have to check for `..CHARSET/SURFACE..CHARSET2/SURFACE2' which would + * enca_parse_encoding_name() split as + * charset = CHARSET + * surfaces = SURFACE..CHARSET2, SURFACE2 + * which is aboviously not what we want. */ + if (enca_strstr(s, XENC_SEPARATOR) == NULL) + options.target_enc = enca_parse_encoding_name(s); + else { + options.target_enc.charset = ENCA_CS_UNKNOWN; + options.target_enc.surface = 0; + } + + return 0; +} + +/* add comma separated list of converters to list of converters + returns zero on success, nonzero otherwise + when list is NULL return number of successfully added converters instead */ +static int +add_parsed_converters(const char *list) +{ + /* Converter list separator for -E argument. */ + static const char CONVERTER_SEPARATOR = ','; + + char *s; + char *p_c,*p_c1; + static int nc = 0; + + if (list == NULL) + return nc; + + s = enca_strdup(list); + /* Add converter names one by one. */ + p_c = s; + while ((p_c1 = strchr(p_c, CONVERTER_SEPARATOR)) != NULL) { + *p_c1++ = '\0'; + if (add_converter(p_c) == 0) nc++; + p_c = p_c1; + } + if (add_converter(p_c) == 0) nc++; + enca_free(s); + + return 0; +} + +/* create NULL-terminated file list from remaining fields in argv[] + and return it */ +static char** +make_filelist(const int n, char *argvrest[]) +{ + int i; + char **flist = NULL; + + /* Accept `-' as stdin. */ + if (n == 0 + || (n == 1 && strcmp(argvrest[0], "-") == 0)) + return NULL; + + flist = (char**)enca_malloc((n+1)*sizeof(char*)); + for (i = 0; i < n; i++) flist[i] = enca_strdup(argvrest[i]); + flist[n] = NULL; + + return flist; +} + +static int +prefix_filename(int pfx) { + if (pfx != -1) + options.prefix_filename = pfx; + return options.prefix_filename; +} + +/* prints some list user asked for (--list) -- just calls appropriate + * functions from appropriate module (with funny abbreviation expansion) + * when listname is NULL prints list of available lists instead */ +static void +print_some_list(const char *listname) +{ + /* ISO C forbids initialization between function pointers and void* + so we use one more level of indirection to comply (and hope gracious + complier will forgive us our sins, amen) */ + static const ReportFunc printer_bics = print_builtin_charsets; + static const ReportFunc printer_conv = print_converter_list; + static const ReportFunc printer_char = print_all_charsets; + static const ReportFunc printer_lang = print_languages; + static const ReportFunc printer_list = print_lists; + static const ReportFunc printer_name = print_names; + static const ReportFunc printer_surf = print_surfaces; + + /* List names and pointers to pointers to list-printers. */ + static const Abbreviation LISTS[] = { + { "built-in-charsets", &printer_bics }, + { "converters", &printer_conv }, + { "charsets", &printer_char }, + { "languages", &printer_lang }, + { "lists", &printer_list }, + { "names", &printer_name }, + { "surfaces", &printer_surf }, + }; + + const Abbreviation *p = NULL; + ReportFunc list_printer; /* Pointer to list printing functions. */ + + /* Get the abbreviation data. */ + p = expand_abbreviation(listname, LISTS, + sizeof(LISTS)/sizeof(Abbreviation), + "list"); + + /* p can be NULL in weird situations, e.g. when print_some_list() was + * called recursively by itself through print_lists. + * In all cases, return. */ + if (p == NULL) + return; + + list_printer = *(ReportFunc*)p->data; + list_printer(); +} + +#ifndef HAVE_PROGRAM_INVOCATION_SHORT_NAME +/* Create and return string containing only last component of path fullpath. */ +static char* +strip_path(const char *fullpath) +{ + char *p; + + p = strrchr(fullpath, '/'); + if (p == NULL) + p = (char*)fullpath; + else + p++; + + return enca_strdup(p); +} +#endif + +/* Print version information. */ +static void +print_version(void) +{ + printf("%s %s\n\n%s\n\n%s\n", PACKAGE_TARNAME, PACKAGE_VERSION, VERSION_TEXT, COPYRIGHT_TEXT); +} + +/** + * Prints builtin charsets. + * Must be of type ReportFunc. + **/ +static void +print_builtin_charsets(void) +{ + print_charsets(1); +} + +/** + * Prints all charsets. + * Must be of type ReportFunc. + **/ +static void +print_all_charsets(void) +{ + print_charsets(0); +} + +/** + * Prints list of charsets using name style from options.output_type. + * + * It prints all charsets, except: + * - charsets without given name, and + * - charsets without UCS-2 map when only_builtin is set. + **/ +static void +print_charsets(int only_builtin) +{ + size_t ncharsets, i; + + ncharsets = enca_number_of_charsets(); + for (i = 0; i < ncharsets; i++) { + if (only_builtin && !enca_charset_has_ucs2_map(i)) + continue; + + switch (options.output_type) { + case OTYPE_ALIASES: + print_aliases(i); + break; + + case OTYPE_CANON: + case OTYPE_CONVERT: + puts(enca_charset_name(i, ENCA_NAME_STYLE_ENCA)); + break; + + case OTYPE_HUMAN: + case OTYPE_DETAILS: + puts(enca_charset_name(i, ENCA_NAME_STYLE_HUMAN)); + break; + + case OTYPE_RFC1345: + puts(enca_charset_name(i, ENCA_NAME_STYLE_RFC1345)); + break; + + case OTYPE_CS2CS: + if (enca_charset_name(i, ENCA_NAME_STYLE_CSTOCS) != NULL) + puts(enca_charset_name(i, ENCA_NAME_STYLE_CSTOCS)); + break; + + case OTYPE_ICONV: + if (enca_charset_name(i, ENCA_NAME_STYLE_ICONV) != NULL) + puts(enca_charset_name(i, ENCA_NAME_STYLE_ICONV)); + break; + + case OTYPE_MIME: + if (enca_charset_name(i, ENCA_NAME_STYLE_MIME) != NULL) + puts(enca_charset_name(i, ENCA_NAME_STYLE_MIME)); + break; + + default: + abort(); + break; + } + } +} + +/** + * Prints all aliases of given charset. + **/ +void +print_aliases(size_t cs) +{ + size_t i, na; + const char **aliases = enca_get_charset_aliases(cs, &na); + + for (i = 0; i < na; i++) + printf("%s ", aliases[i]); + + putchar('\n'); + enca_free(aliases); +} + +/** + * Prints all [public] surfaces. + * Must be of type ReportFunc. + **/ +static void +print_surfaces(void) +{ + EncaNameStyle ns; + char *s; + unsigned int i; + + /* Only these two know surfaces. */ + if (options.output_type == OTYPE_HUMAN) + ns = ENCA_NAME_STYLE_HUMAN; + else + ns = ENCA_NAME_STYLE_ENCA; + + for (i = 1; i != 0; i <<= 1) { + s = enca_get_surface_name(i, ns); + if (s != NULL && s[0] != '\0') { + fputs(s, stdout); + if (ns == ENCA_NAME_STYLE_ENCA) + putchar('\n'); + enca_free(s); + } + } +} + +/* Magically print the list of lists. */ +static void +print_lists(void) +{ + print_some_list(NULL); +} + +/** + * Prints all languages list of charsets of each. + * Must be of type ReportFunc. + * Quite illogically affected by options.output_type: it changes *language* + * name style, instead of charset name style. + **/ +static void +print_languages(void) +{ + size_t nl, nc, i, j, maxlen; + const char **l; + int *c; + int english; + + l = enca_get_languages(&nl); + + english = options.output_type == OTYPE_HUMAN + || options.output_type == OTYPE_DETAILS; + /* Find max. language name length for English. */ + maxlen = 0; + if (english) { + for (i = 0; i < nl; i++) { + j = strlen(enca_language_english_name(l[i])); + if (j > maxlen) + maxlen = j; + } + } + + /* Print the names. */ + for (i = 0; i < nl; i++) { + if (english) + printf("%*s:", (int)maxlen, enca_language_english_name(l[i])); + else + printf("%s:", l[i]); + c = enca_get_language_charsets(l[i], &nc); + for (j = 0; j < nc; j++) + printf(" %s", enca_charset_name(c[j], ENCA_NAME_STYLE_ENCA)); + + putchar('\n'); + enca_free(c); + } + enca_free(l); +} + +/** + * Prints list of all encoding name styles. + * Must be of type ReportFunc. + **/ +static void +print_names(void) +{ + set_otype_from_name(NULL); +} + +/** + * Print some text (help, copying, ...) and exit with given code. + **/ +static void +print_text_and_exit(const char *const *text, int exitcode) +{ + assert(text); + + for (; *text; text++) + puts(*text); + + exit(exitcode); +} + +/** + * set_program_behaviour: + * + * Sets behaviour according to name we were called. + **/ +static void +set_program_behaviour(void) +{ + static const char enca_name[] = "enca"; + static const char enconv_name[] = "enconv"; + static const size_t nenca = sizeof(enca_name) - 1; + static const size_t nenconv = sizeof(enconv_name) - 1; + + if (strncmp(program_name, enca_name, nenca) == 0 + && !isalpha(program_name[nenca])) { + behaviour = BEHAVE_ENCA; + return; + } + + if (strncmp(program_name, enconv_name, nenconv) == 0 + && !isalpha(program_name[nenconv])) { + behaviour = BEHAVE_ENCONV; + return; + } +} + +/* vim: ts=2 + */ diff --git a/wlx/wayland_qt_base/build/enca-1.19/src/text2c.sh b/wlx/wayland_qt_base/build/enca-1.19/src/text2c.sh new file mode 100755 index 0000000..d99d228 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/src/text2c.sh @@ -0,0 +1,12 @@ +#! /bin/sh +name=`echo $1 | sed -e 's/.*\///'` +cat <. + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# This file is maintained in Automake, please report +# bugs to or send patches to +# . + +# Make unconditional expansion of undefined variables an error. This +# helps a lot in preventing typo-related bugs. +set -u + +usage_error () +{ + echo "$0: $*" >&2 + print_usage >&2 + exit 2 +} + +print_usage () +{ + cat <$log_file 2>&1 +estatus=$? + +if test $enable_hard_errors = no && test $estatus -eq 99; then + tweaked_estatus=1 +else + tweaked_estatus=$estatus +fi + +case $tweaked_estatus:$expect_failure in + 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; + 0:*) col=$grn res=PASS recheck=no gcopy=no;; + 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; + 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; + *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; + *:*) col=$red res=FAIL recheck=yes gcopy=yes;; +esac + +# Report the test outcome and exit status in the logs, so that one can +# know whether the test passed or failed simply by looking at the '.log' +# file, without the need of also peaking into the corresponding '.trs' +# file (automake bug#11814). +echo "$res $test_name (exit status: $estatus)" >>$log_file + +# Report outcome to console. +echo "${col}${res}${std}: $test_name" + +# Register the test result, and other relevant metadata. +echo ":test-result: $res" > $trs_file +echo ":global-test-result: $res" >> $trs_file +echo ":recheck: $recheck" >> $trs_file +echo ":copy-in-global-log: $gcopy" >> $trs_file + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/.deps/simtable.Po b/wlx/wayland_qt_base/build/enca-1.19/test/.deps/simtable.Po new file mode 100644 index 0000000..bac8ce9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/.deps/simtable.Po @@ -0,0 +1,100 @@ +simtable.o: simtable.c /usr/include/stdc-predef.h /usr/include/stdlib.h \ + /usr/include/bits/libc-header-start.h /usr/include/features.h \ + /usr/include/features-time64.h /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + /usr/include/string.h /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/__locale_t.h /usr/include/strings.h \ + ../lib/enca.h ../lib/internal.h /usr/include/assert.h ../lib/enca.h +/usr/include/stdc-predef.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/stdio.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: +/usr/include/bits/types/__fpos_t.h: +/usr/include/bits/types/__mbstate_t.h: +/usr/include/bits/types/__fpos64_t.h: +/usr/include/bits/types/__FILE.h: +/usr/include/bits/types/FILE.h: +/usr/include/bits/types/struct_FILE.h: +/usr/include/bits/types/cookie_io_functions_t.h: +/usr/include/bits/stdio_lim.h: +/usr/include/bits/stdio.h: +/usr/include/string.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/strings.h: +../lib/enca.h: +../lib/internal.h: +/usr/include/assert.h: +../lib/enca.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/Makefile b/wlx/wayland_qt_base/build/enca-1.19/test/Makefile new file mode 100644 index 0000000..cc9b682 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/Makefile @@ -0,0 +1,1346 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# test/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + + + +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/enca +pkgincludedir = $(includedir)/enca +pkglibdir = $(libdir)/enca +pkglibexecdir = $(libexecdir)/enca +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-pc-linux-gnu +host_triplet = x86_64-pc-linux-gnu +noinst_PROGRAMS = simtable$(EXEEXT) +subdir = test +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +PROGRAMS = $(noinst_PROGRAMS) +am_simtable_OBJECTS = simtable.$(OBJEXT) +simtable_OBJECTS = $(am_simtable_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +simtable_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(simtable_LDFLAGS) $(LDFLAGS) -o $@ +SCRIPTS = $(noinst_SCRIPTS) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(simtable_SOURCES) +DIST_SOURCES = $(simtable_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +TEST_EXTENSIONS = .test +LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:.log=.log) +TEST_LOGS = $(am__test_logs2:.test.log=.log) +TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver +TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ + $(TEST_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ + $(top_srcdir)/mkinstalldirs $(top_srcdir)/test-driver +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing aclocal-1.15 -I m4 +AMTAR = $${TAR-tar} +AM_DEFAULT_VERBOSITY = 1 +AR = ar +AUTOCONF = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoconf +AUTOHEADER = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoheader +AUTOMAKE = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing automake-1.15 +AWK = gawk +CC = /usr/bin/cc +CCDEPMODE = depmode=gcc3 +CFLAGS = -Wall -Wextra -W -pedantic -g -O2 +CONVERTER_LIBS = +CPP = /usr/bin/cc -E +CPPFLAGS = +CSTOCS_PROG = +CYGPATH_W = echo +DEFAULT_CONVERTER_LIST = built-in,iconv +DEFAULT_EXTERNAL_CONVERTER = recode +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +FGREP = /usr/bin/grep -F +GCOV = /usr/bin/gcov +GCOV_CPPFLAGS = +GCOV_FLAGS = +GCOV_LDFLAGS = +GREP = /usr/bin/grep +GTKDOC = false +HTML_DIR = ${datarootdir}/gtk-doc/html +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBICONV = +LIBM = -lm +LIBOBJS = +LIBS = -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LN_S = ln -s +LTLIBICONV = +LTLIBOBJS = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing makeinfo +MANIFEST_TOOL = : +MAP_PROG = +MKDIR_P = /usr/bin/mkdir -p +MKTEMP_PROG = /usr/bin/mktemp +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = enca +PACKAGE_BUGREPORT = https://github.com/nijel/enca/issues +PACKAGE_NAME = Enca +PACKAGE_STRING = Enca 1.19 +PACKAGE_TARNAME = enca +PACKAGE_URL = +PACKAGE_VERSION = 1.19 +PATH_SEPARATOR = : +PICONV_PROG = /usr/bin/core_perl/piconv +RANLIB = ranlib +RECODE_PROG = /usr/bin/recode +RELEASE = 1 +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SHELL_RANDOM_FILENAME = `/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` +STRIP = strip +UMAP_PROG = +VERSION = 1.19 +abs_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/test +abs_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/test +abs_top_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +abs_top_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +ac_ct_AR = ar +ac_ct_CC = /usr/bin/cc +ac_ct_DUMPBIN = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-pc-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = pc +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} +dvidir = ${docdir} +exec_prefix = ${prefix} +host = x86_64-pc-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = pc +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /usr/local +program_transform_name = s,x,x, +psdir = ${docdir} +runstatedir = ${localstatedir}/run +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = . +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = .. +TESTS_ENVIRONMENT = srcdir=. top_srcdir=.. top_builddir=.. builddir=. +TESTS = \ + ./test-lists.sh \ + ./test-long-texts.sh \ + ./test-convlist.sh \ + ./test-guess-unknown.sh \ + ./test-guess-short.sh \ + ./test-guess-stdin.sh \ + ./test-guess-utf8.sh \ + ./test-pP.sh \ + ./test-aliases.sh \ + ./test-empty.sh \ + ./test-convert-64.sh \ + ./test-convert-filter.sh \ + ./test-errors.sh \ + ./test-ENCAOPT.sh \ + ./test-default-cs.sh \ + ./test-external.sh \ + ./test-iconv.sh \ + ./test-tex.sh \ + ./test-locale.sh \ + ./test-simtable.sh \ + ./test-recode.sh + +noinst_SCRIPTS = \ + dummy-converter.sh \ + failing-converter.sh \ + failing-converter2.sh \ + finish.sh \ + setup.sh + +simtable_SOURCES = simtable.c +simtable_LDFLAGS = -lm +simtable_LDADD = $(top_builddir)/lib/libenca.la +simtable_DEPENDENCIES = $(top_builddir)/lib/libenca.la +AM_CPPFLAGS = -I$(top_srcdir)/lib $(GCOV_CPPFLAGS) +AM_LDFLAGS = $(GCOV_LDFLAGS) +AM_CFLAGS = $(GCOV_FLAGS) +EXTRA_DIST = $(TEST_SAMPLES) $(TESTS) $(TEST_RESULTS) $(noinst_SCRIPTS) +TEST_RESULTS = \ + test-guess-short.expected \ + test-guess-utf8.expected \ + test-guess-unknown.expected \ + test-external.expected \ + test-pP.expected + +TEST_SAMPLES = \ + binary \ + be-s.cp1251 \ + be-s.ibm855 \ + be-s.ibm866 \ + be-s.iso88595 \ + be-s.koi8uni \ + be-s.maccyr \ + be-s.utf8 \ + be-utf8.ibm855 \ + be-utf8.iso88595 \ + bg-s.cp1251 \ + bg-s.cp1251.qp \ + bg-s.ecma113 \ + bg-s.ibm855 \ + bg-s.iso88595 \ + bg-s.maccyr \ + bg-s.utf8 \ + bg-utf8.bin \ + bg-utf8.cp1251 \ + bg-utf8.ecma113 \ + bg-utf8.ibm855 \ + bg-utf8.iso88595 \ + bg-utf8.maccyr \ + cs-s.ambi \ + cs-s.cork \ + cs-s.cp1250 \ + cs-s.ibm852 \ + cs-s.ibm852.qp \ + cs-s.iso88592 \ + cs-s.keybcs2 \ + cs-s.koi8cs2 \ + cs-s.macce \ + cs-s.tex \ + cs-s.utf8 \ + cs-utf8.bin \ + cs-utf8.cork \ + cs-utf8.ibm852 \ + cs-utf8.iso88592 \ + et-s.baltic \ + et-s.cp1257 \ + et-s.ibm775 \ + et-s.iso885913 \ + et-s.iso88594 \ + et-s.iso88594.qp \ + et-s.macce \ + et-s.utf8 \ + et-utf8.bin \ + et-utf8.ibm775 \ + et-utf8.iso885913 \ + et-utf8.iso88594 \ + hr-s.cork \ + hr-s.cp1250 \ + hr-s.ibm852 \ + hr-s.iso88592 \ + hr-s.iso88592.qp \ + hr-s.macce \ + hr-s.utf8 \ + hr-utf8.cp1250 \ + hr-utf8.ibm852 \ + hu-s.cork \ + hu-s.cp1250 \ + hu-s.ibm852 \ + hu-s.iso88592 \ + hu-s.macce \ + hu-s.macce.qp \ + hu-s.utf8 \ + hu-utf8.cork \ + hu-utf8.cp1250 \ + hu-utf8.ibm852 \ + hu-utf8.macce \ + lt-s.baltic \ + lt-s.cp1257 \ + lt-s.ibm775 \ + lt-s.iso885913 \ + lt-s.iso88594 \ + lt-s.macce \ + lt-s.utf8 \ + lt-utf8.ibm775 \ + lt-utf8.iso88594 \ + lt-utf8.macce \ + lv-s.baltic \ + lv-s.cp1257 \ + lv-s.ibm775 \ + lv-s.iso885913 \ + lv-s.iso885913.qp \ + lv-s.iso88594 \ + lv-s.macce \ + lv-s.utf8 \ + lv-utf8.ibm775 \ + lv-utf8.iso88594 \ + lv-utf8.macce \ + none-s.ucs2 \ + none-s.ucs2be.bom \ + none-s.ucs2be.bom.crlf \ + none-s.ucs2be.bom.noeol \ + none-s.ucs2le \ + none-s.ucs2le.bom \ + none-s.ucs2le.qp \ + none-s.ucs4 \ + none-s.ucs4le \ + none-s.utf7 \ + none-s.utf8 \ + none-s.utf8.bom \ + none-utf8.messy \ + pl-s.baltic \ + pl-s.baltic.qp \ + pl-s.cork \ + pl-s.cp1250 \ + pl-s.ibm852 \ + pl-s.iso885913 \ + pl-s.iso885916 \ + pl-s.iso88592 \ + pl-s.utf8 \ + pl-utf8.baltic \ + pl-utf8.ibm852 \ + pl-utf8.iso885916 \ + ru-s.cp1251 \ + ru-s.cp866 \ + ru-s.iso88595 \ + ru-s.koi8r \ + ru-s.maccyr \ + ru-s.maccyr.qp \ + ru-s.utf8 \ + ru-utf8.cp866 \ + ru-utf8.koi8r \ + ru-utf8.maccyr \ + sk-s.cork \ + sk-s.cp1250 \ + sk-s.cp1250.qp \ + sk-s.ibm852 \ + sk-s.iso88592 \ + sk-s.keybcs2 \ + sk-s.koi8cs2 \ + sk-s.macce \ + sk-s.utf8 \ + sk-utf8.cp1250 \ + sk-utf8.keybcs2 \ + sl-s.cork \ + sl-s.cp1250 \ + sl-s.ibm852 \ + sl-s.ibm852.qp \ + sl-s.iso88592 \ + sl-s.macce \ + sl-s.utf8 \ + sl-utf8.cork \ + sl-utf8.ibm852 \ + sl-utf8.iso88592 \ + sl-utf8.macce \ + uk-s.cp1125 \ + uk-s.cp1251 \ + uk-s.ibm855 \ + uk-s.iso88595 \ + uk-s.koi8u \ + uk-s.maccyr \ + uk-s.utf8 \ + uk-utf8.bin \ + uk-utf8.cp1251 \ + zh-s.big5 \ + zh-s.gbk \ + zh-s.hz \ + zh-s.utf8 + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits test/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits test/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +simtable$(EXEEXT): $(simtable_OBJECTS) $(simtable_DEPENDENCIES) $(EXTRA_simtable_DEPENDENCIES) + @rm -f simtable$(EXEEXT) + $(AM_V_CCLD)$(simtable_LINK) $(simtable_OBJECTS) $(simtable_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/simtable.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 + +check-TESTS: + @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list + @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + trs_list=`for i in $$bases; do echo $$i.trs; done`; \ + log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ + exit $$?; +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +./test-lists.sh.log: ./test-lists.sh + @p='./test-lists.sh'; \ + b='./test-lists.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-long-texts.sh.log: ./test-long-texts.sh + @p='./test-long-texts.sh'; \ + b='./test-long-texts.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-convlist.sh.log: ./test-convlist.sh + @p='./test-convlist.sh'; \ + b='./test-convlist.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-guess-unknown.sh.log: ./test-guess-unknown.sh + @p='./test-guess-unknown.sh'; \ + b='./test-guess-unknown.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-guess-short.sh.log: ./test-guess-short.sh + @p='./test-guess-short.sh'; \ + b='./test-guess-short.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-guess-stdin.sh.log: ./test-guess-stdin.sh + @p='./test-guess-stdin.sh'; \ + b='./test-guess-stdin.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-guess-utf8.sh.log: ./test-guess-utf8.sh + @p='./test-guess-utf8.sh'; \ + b='./test-guess-utf8.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-pP.sh.log: ./test-pP.sh + @p='./test-pP.sh'; \ + b='./test-pP.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-aliases.sh.log: ./test-aliases.sh + @p='./test-aliases.sh'; \ + b='./test-aliases.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-empty.sh.log: ./test-empty.sh + @p='./test-empty.sh'; \ + b='./test-empty.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-convert-64.sh.log: ./test-convert-64.sh + @p='./test-convert-64.sh'; \ + b='./test-convert-64.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-convert-filter.sh.log: ./test-convert-filter.sh + @p='./test-convert-filter.sh'; \ + b='./test-convert-filter.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-errors.sh.log: ./test-errors.sh + @p='./test-errors.sh'; \ + b='./test-errors.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-ENCAOPT.sh.log: ./test-ENCAOPT.sh + @p='./test-ENCAOPT.sh'; \ + b='./test-ENCAOPT.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-default-cs.sh.log: ./test-default-cs.sh + @p='./test-default-cs.sh'; \ + b='./test-default-cs.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-external.sh.log: ./test-external.sh + @p='./test-external.sh'; \ + b='./test-external.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-iconv.sh.log: ./test-iconv.sh + @p='./test-iconv.sh'; \ + b='./test-iconv.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-tex.sh.log: ./test-tex.sh + @p='./test-tex.sh'; \ + b='./test-tex.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-locale.sh.log: ./test-locale.sh + @p='./test-locale.sh'; \ + b='./test-locale.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-simtable.sh.log: ./test-simtable.sh + @p='./test-simtable.sh'; \ + b='./test-simtable.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-recode.sh.log: ./test-recode.sh + @p='./test-recode.sh'; \ + b='./test-recode.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.test.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +#.test$(EXEEXT).log: +# @p='$<'; \ +# $(am__set_b); \ +# $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ +# --log-file $$b.log --trs-file $$b.trs \ +# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ +# "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" distdir="$(distdir)" \ + dist-hook +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) $(SCRIPTS) +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool clean-local clean-noinstPROGRAMS \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \ + clean-generic clean-libtool clean-local clean-noinstPROGRAMS \ + cscopelist-am ctags ctags-am dist-hook distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am recheck tags tags-am uninstall \ + uninstall-am + +.PRECIOUS: Makefile + + +# alias test=check +test: check + +.PHONY: test + +clean-local: + rm -f test-*.actual core.* core *.tmp *~ *-big.* test-guess-stdin.expected test-ENCAOPT.expected + +dist-hook: + chmod 755 $(distdir)/test-*.sh + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/Makefile.am b/wlx/wayland_qt_base/build/enca-1.19/test/Makefile.am new file mode 100644 index 0000000..3b9b758 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/Makefile.am @@ -0,0 +1,224 @@ +TESTS_ENVIRONMENT = srcdir=@srcdir@ top_srcdir=@top_srcdir@ top_builddir=@top_builddir@ builddir=@builddir@ + +TESTS = \ + ./test-lists.sh \ + ./test-long-texts.sh \ + ./test-convlist.sh \ + ./test-guess-unknown.sh \ + ./test-guess-short.sh \ + ./test-guess-stdin.sh \ + ./test-guess-utf8.sh \ + ./test-pP.sh \ + ./test-aliases.sh \ + ./test-empty.sh \ + ./test-convert-64.sh \ + ./test-convert-filter.sh \ + ./test-errors.sh \ + ./test-ENCAOPT.sh \ + ./test-default-cs.sh \ + ./test-external.sh \ + ./test-iconv.sh \ + ./test-tex.sh \ + ./test-locale.sh \ + ./test-simtable.sh \ + ./test-recode.sh + +noinst_SCRIPTS = \ + dummy-converter.sh \ + failing-converter.sh \ + failing-converter2.sh \ + finish.sh \ + setup.sh + +noinst_PROGRAMS = simtable +simtable_SOURCES = simtable.c +simtable_LDFLAGS = @LDFLAGS@ @LIBS@ +simtable_LDADD = $(top_builddir)/lib/libenca.la +simtable_DEPENDENCIES = $(top_builddir)/lib/libenca.la +AM_CPPFLAGS = -I$(top_srcdir)/lib $(GCOV_CPPFLAGS) +AM_LDFLAGS = $(GCOV_LDFLAGS) +AM_CFLAGS = $(GCOV_FLAGS) + +EXTRA_DIST = $(TEST_SAMPLES) $(TESTS) $(TEST_RESULTS) $(noinst_SCRIPTS) + +TEST_RESULTS = \ + test-guess-short.expected \ + test-guess-utf8.expected \ + test-guess-unknown.expected \ + test-external.expected \ + test-pP.expected + +TEST_SAMPLES = \ + binary \ + be-s.cp1251 \ + be-s.ibm855 \ + be-s.ibm866 \ + be-s.iso88595 \ + be-s.koi8uni \ + be-s.maccyr \ + be-s.utf8 \ + be-utf8.ibm855 \ + be-utf8.iso88595 \ + bg-s.cp1251 \ + bg-s.cp1251.qp \ + bg-s.ecma113 \ + bg-s.ibm855 \ + bg-s.iso88595 \ + bg-s.maccyr \ + bg-s.utf8 \ + bg-utf8.bin \ + bg-utf8.cp1251 \ + bg-utf8.ecma113 \ + bg-utf8.ibm855 \ + bg-utf8.iso88595 \ + bg-utf8.maccyr \ + cs-s.ambi \ + cs-s.cork \ + cs-s.cp1250 \ + cs-s.ibm852 \ + cs-s.ibm852.qp \ + cs-s.iso88592 \ + cs-s.keybcs2 \ + cs-s.koi8cs2 \ + cs-s.macce \ + cs-s.tex \ + cs-s.utf8 \ + cs-utf8.bin \ + cs-utf8.cork \ + cs-utf8.ibm852 \ + cs-utf8.iso88592 \ + et-s.baltic \ + et-s.cp1257 \ + et-s.ibm775 \ + et-s.iso885913 \ + et-s.iso88594 \ + et-s.iso88594.qp \ + et-s.macce \ + et-s.utf8 \ + et-utf8.bin \ + et-utf8.ibm775 \ + et-utf8.iso885913 \ + et-utf8.iso88594 \ + hr-s.cork \ + hr-s.cp1250 \ + hr-s.ibm852 \ + hr-s.iso88592 \ + hr-s.iso88592.qp \ + hr-s.macce \ + hr-s.utf8 \ + hr-utf8.cp1250 \ + hr-utf8.ibm852 \ + hu-s.cork \ + hu-s.cp1250 \ + hu-s.ibm852 \ + hu-s.iso88592 \ + hu-s.macce \ + hu-s.macce.qp \ + hu-s.utf8 \ + hu-utf8.cork \ + hu-utf8.cp1250 \ + hu-utf8.ibm852 \ + hu-utf8.macce \ + lt-s.baltic \ + lt-s.cp1257 \ + lt-s.ibm775 \ + lt-s.iso885913 \ + lt-s.iso88594 \ + lt-s.macce \ + lt-s.utf8 \ + lt-utf8.ibm775 \ + lt-utf8.iso88594 \ + lt-utf8.macce \ + lv-s.baltic \ + lv-s.cp1257 \ + lv-s.ibm775 \ + lv-s.iso885913 \ + lv-s.iso885913.qp \ + lv-s.iso88594 \ + lv-s.macce \ + lv-s.utf8 \ + lv-utf8.ibm775 \ + lv-utf8.iso88594 \ + lv-utf8.macce \ + none-s.ucs2 \ + none-s.ucs2be.bom \ + none-s.ucs2be.bom.crlf \ + none-s.ucs2be.bom.noeol \ + none-s.ucs2le \ + none-s.ucs2le.bom \ + none-s.ucs2le.qp \ + none-s.ucs4 \ + none-s.ucs4le \ + none-s.utf7 \ + none-s.utf8 \ + none-s.utf8.bom \ + none-utf8.messy \ + pl-s.baltic \ + pl-s.baltic.qp \ + pl-s.cork \ + pl-s.cp1250 \ + pl-s.ibm852 \ + pl-s.iso885913 \ + pl-s.iso885916 \ + pl-s.iso88592 \ + pl-s.utf8 \ + pl-utf8.baltic \ + pl-utf8.ibm852 \ + pl-utf8.iso885916 \ + ru-s.cp1251 \ + ru-s.cp866 \ + ru-s.iso88595 \ + ru-s.koi8r \ + ru-s.maccyr \ + ru-s.maccyr.qp \ + ru-s.utf8 \ + ru-utf8.cp866 \ + ru-utf8.koi8r \ + ru-utf8.maccyr \ + sk-s.cork \ + sk-s.cp1250 \ + sk-s.cp1250.qp \ + sk-s.ibm852 \ + sk-s.iso88592 \ + sk-s.keybcs2 \ + sk-s.koi8cs2 \ + sk-s.macce \ + sk-s.utf8 \ + sk-utf8.cp1250 \ + sk-utf8.keybcs2 \ + sl-s.cork \ + sl-s.cp1250 \ + sl-s.ibm852 \ + sl-s.ibm852.qp \ + sl-s.iso88592 \ + sl-s.macce \ + sl-s.utf8 \ + sl-utf8.cork \ + sl-utf8.ibm852 \ + sl-utf8.iso88592 \ + sl-utf8.macce \ + uk-s.cp1125 \ + uk-s.cp1251 \ + uk-s.ibm855 \ + uk-s.iso88595 \ + uk-s.koi8u \ + uk-s.maccyr \ + uk-s.utf8 \ + uk-utf8.bin \ + uk-utf8.cp1251 \ + zh-s.big5 \ + zh-s.gbk \ + zh-s.hz \ + zh-s.utf8 + +# alias test=check +test: check + +.PHONY: test + +clean-local: + rm -f test-*.actual core.* core *.tmp *~ *-big.* test-guess-stdin.expected test-ENCAOPT.expected + +dist-hook: + chmod 755 $(distdir)/test-*.sh + diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/Makefile.in b/wlx/wayland_qt_base/build/enca-1.19/test/Makefile.in new file mode 100644 index 0000000..8c30888 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/Makefile.in @@ -0,0 +1,1346 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +noinst_PROGRAMS = simtable$(EXEEXT) +subdir = test +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +PROGRAMS = $(noinst_PROGRAMS) +am_simtable_OBJECTS = simtable.$(OBJEXT) +simtable_OBJECTS = $(am_simtable_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +simtable_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(simtable_LDFLAGS) $(LDFLAGS) -o $@ +SCRIPTS = $(noinst_SCRIPTS) +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(simtable_SOURCES) +DIST_SOURCES = $(simtable_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +TEST_EXTENSIONS = @EXEEXT@ .test +LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) +TEST_LOGS = $(am__test_logs2:.test.log=.log) +TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver +TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ + $(TEST_LOG_FLAGS) +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ + $(top_srcdir)/mkinstalldirs $(top_srcdir)/test-driver +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERTER_LIBS = @CONVERTER_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CSTOCS_PROG = @CSTOCS_PROG@ +CYGPATH_W = @CYGPATH_W@ +DEFAULT_CONVERTER_LIST = @DEFAULT_CONVERTER_LIST@ +DEFAULT_EXTERNAL_CONVERTER = @DEFAULT_EXTERNAL_CONVERTER@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCOV = @GCOV@ +GCOV_CPPFLAGS = @GCOV_CPPFLAGS@ +GCOV_FLAGS = @GCOV_FLAGS@ +GCOV_LDFLAGS = @GCOV_LDFLAGS@ +GREP = @GREP@ +GTKDOC = @GTKDOC@ +HTML_DIR = @HTML_DIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBM = @LIBM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MAP_PROG = @MAP_PROG@ +MKDIR_P = @MKDIR_P@ +MKTEMP_PROG = @MKTEMP_PROG@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PICONV_PROG = @PICONV_PROG@ +RANLIB = @RANLIB@ +RECODE_PROG = @RECODE_PROG@ +RELEASE = @RELEASE@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SHELL_RANDOM_FILENAME = @SHELL_RANDOM_FILENAME@ +STRIP = @STRIP@ +UMAP_PROG = @UMAP_PROG@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +TESTS_ENVIRONMENT = srcdir=@srcdir@ top_srcdir=@top_srcdir@ top_builddir=@top_builddir@ builddir=@builddir@ +TESTS = \ + ./test-lists.sh \ + ./test-long-texts.sh \ + ./test-convlist.sh \ + ./test-guess-unknown.sh \ + ./test-guess-short.sh \ + ./test-guess-stdin.sh \ + ./test-guess-utf8.sh \ + ./test-pP.sh \ + ./test-aliases.sh \ + ./test-empty.sh \ + ./test-convert-64.sh \ + ./test-convert-filter.sh \ + ./test-errors.sh \ + ./test-ENCAOPT.sh \ + ./test-default-cs.sh \ + ./test-external.sh \ + ./test-iconv.sh \ + ./test-tex.sh \ + ./test-locale.sh \ + ./test-simtable.sh \ + ./test-recode.sh + +noinst_SCRIPTS = \ + dummy-converter.sh \ + failing-converter.sh \ + failing-converter2.sh \ + finish.sh \ + setup.sh + +simtable_SOURCES = simtable.c +simtable_LDFLAGS = @LDFLAGS@ @LIBS@ +simtable_LDADD = $(top_builddir)/lib/libenca.la +simtable_DEPENDENCIES = $(top_builddir)/lib/libenca.la +AM_CPPFLAGS = -I$(top_srcdir)/lib $(GCOV_CPPFLAGS) +AM_LDFLAGS = $(GCOV_LDFLAGS) +AM_CFLAGS = $(GCOV_FLAGS) +EXTRA_DIST = $(TEST_SAMPLES) $(TESTS) $(TEST_RESULTS) $(noinst_SCRIPTS) +TEST_RESULTS = \ + test-guess-short.expected \ + test-guess-utf8.expected \ + test-guess-unknown.expected \ + test-external.expected \ + test-pP.expected + +TEST_SAMPLES = \ + binary \ + be-s.cp1251 \ + be-s.ibm855 \ + be-s.ibm866 \ + be-s.iso88595 \ + be-s.koi8uni \ + be-s.maccyr \ + be-s.utf8 \ + be-utf8.ibm855 \ + be-utf8.iso88595 \ + bg-s.cp1251 \ + bg-s.cp1251.qp \ + bg-s.ecma113 \ + bg-s.ibm855 \ + bg-s.iso88595 \ + bg-s.maccyr \ + bg-s.utf8 \ + bg-utf8.bin \ + bg-utf8.cp1251 \ + bg-utf8.ecma113 \ + bg-utf8.ibm855 \ + bg-utf8.iso88595 \ + bg-utf8.maccyr \ + cs-s.ambi \ + cs-s.cork \ + cs-s.cp1250 \ + cs-s.ibm852 \ + cs-s.ibm852.qp \ + cs-s.iso88592 \ + cs-s.keybcs2 \ + cs-s.koi8cs2 \ + cs-s.macce \ + cs-s.tex \ + cs-s.utf8 \ + cs-utf8.bin \ + cs-utf8.cork \ + cs-utf8.ibm852 \ + cs-utf8.iso88592 \ + et-s.baltic \ + et-s.cp1257 \ + et-s.ibm775 \ + et-s.iso885913 \ + et-s.iso88594 \ + et-s.iso88594.qp \ + et-s.macce \ + et-s.utf8 \ + et-utf8.bin \ + et-utf8.ibm775 \ + et-utf8.iso885913 \ + et-utf8.iso88594 \ + hr-s.cork \ + hr-s.cp1250 \ + hr-s.ibm852 \ + hr-s.iso88592 \ + hr-s.iso88592.qp \ + hr-s.macce \ + hr-s.utf8 \ + hr-utf8.cp1250 \ + hr-utf8.ibm852 \ + hu-s.cork \ + hu-s.cp1250 \ + hu-s.ibm852 \ + hu-s.iso88592 \ + hu-s.macce \ + hu-s.macce.qp \ + hu-s.utf8 \ + hu-utf8.cork \ + hu-utf8.cp1250 \ + hu-utf8.ibm852 \ + hu-utf8.macce \ + lt-s.baltic \ + lt-s.cp1257 \ + lt-s.ibm775 \ + lt-s.iso885913 \ + lt-s.iso88594 \ + lt-s.macce \ + lt-s.utf8 \ + lt-utf8.ibm775 \ + lt-utf8.iso88594 \ + lt-utf8.macce \ + lv-s.baltic \ + lv-s.cp1257 \ + lv-s.ibm775 \ + lv-s.iso885913 \ + lv-s.iso885913.qp \ + lv-s.iso88594 \ + lv-s.macce \ + lv-s.utf8 \ + lv-utf8.ibm775 \ + lv-utf8.iso88594 \ + lv-utf8.macce \ + none-s.ucs2 \ + none-s.ucs2be.bom \ + none-s.ucs2be.bom.crlf \ + none-s.ucs2be.bom.noeol \ + none-s.ucs2le \ + none-s.ucs2le.bom \ + none-s.ucs2le.qp \ + none-s.ucs4 \ + none-s.ucs4le \ + none-s.utf7 \ + none-s.utf8 \ + none-s.utf8.bom \ + none-utf8.messy \ + pl-s.baltic \ + pl-s.baltic.qp \ + pl-s.cork \ + pl-s.cp1250 \ + pl-s.ibm852 \ + pl-s.iso885913 \ + pl-s.iso885916 \ + pl-s.iso88592 \ + pl-s.utf8 \ + pl-utf8.baltic \ + pl-utf8.ibm852 \ + pl-utf8.iso885916 \ + ru-s.cp1251 \ + ru-s.cp866 \ + ru-s.iso88595 \ + ru-s.koi8r \ + ru-s.maccyr \ + ru-s.maccyr.qp \ + ru-s.utf8 \ + ru-utf8.cp866 \ + ru-utf8.koi8r \ + ru-utf8.maccyr \ + sk-s.cork \ + sk-s.cp1250 \ + sk-s.cp1250.qp \ + sk-s.ibm852 \ + sk-s.iso88592 \ + sk-s.keybcs2 \ + sk-s.koi8cs2 \ + sk-s.macce \ + sk-s.utf8 \ + sk-utf8.cp1250 \ + sk-utf8.keybcs2 \ + sl-s.cork \ + sl-s.cp1250 \ + sl-s.ibm852 \ + sl-s.ibm852.qp \ + sl-s.iso88592 \ + sl-s.macce \ + sl-s.utf8 \ + sl-utf8.cork \ + sl-utf8.ibm852 \ + sl-utf8.iso88592 \ + sl-utf8.macce \ + uk-s.cp1125 \ + uk-s.cp1251 \ + uk-s.ibm855 \ + uk-s.iso88595 \ + uk-s.koi8u \ + uk-s.maccyr \ + uk-s.utf8 \ + uk-utf8.bin \ + uk-utf8.cp1251 \ + zh-s.big5 \ + zh-s.gbk \ + zh-s.hz \ + zh-s.utf8 + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits test/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits test/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +simtable$(EXEEXT): $(simtable_OBJECTS) $(simtable_DEPENDENCIES) $(EXTRA_simtable_DEPENDENCIES) + @rm -f simtable$(EXEEXT) + $(AM_V_CCLD)$(simtable_LINK) $(simtable_OBJECTS) $(simtable_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simtable.Po@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + elif test -n "$$redo_logs"; then \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 + +check-TESTS: + @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list + @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + trs_list=`for i in $$bases; do echo $$i.trs; done`; \ + log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ + exit $$?; +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +./test-lists.sh.log: ./test-lists.sh + @p='./test-lists.sh'; \ + b='./test-lists.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-long-texts.sh.log: ./test-long-texts.sh + @p='./test-long-texts.sh'; \ + b='./test-long-texts.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-convlist.sh.log: ./test-convlist.sh + @p='./test-convlist.sh'; \ + b='./test-convlist.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-guess-unknown.sh.log: ./test-guess-unknown.sh + @p='./test-guess-unknown.sh'; \ + b='./test-guess-unknown.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-guess-short.sh.log: ./test-guess-short.sh + @p='./test-guess-short.sh'; \ + b='./test-guess-short.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-guess-stdin.sh.log: ./test-guess-stdin.sh + @p='./test-guess-stdin.sh'; \ + b='./test-guess-stdin.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-guess-utf8.sh.log: ./test-guess-utf8.sh + @p='./test-guess-utf8.sh'; \ + b='./test-guess-utf8.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-pP.sh.log: ./test-pP.sh + @p='./test-pP.sh'; \ + b='./test-pP.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-aliases.sh.log: ./test-aliases.sh + @p='./test-aliases.sh'; \ + b='./test-aliases.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-empty.sh.log: ./test-empty.sh + @p='./test-empty.sh'; \ + b='./test-empty.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-convert-64.sh.log: ./test-convert-64.sh + @p='./test-convert-64.sh'; \ + b='./test-convert-64.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-convert-filter.sh.log: ./test-convert-filter.sh + @p='./test-convert-filter.sh'; \ + b='./test-convert-filter.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-errors.sh.log: ./test-errors.sh + @p='./test-errors.sh'; \ + b='./test-errors.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-ENCAOPT.sh.log: ./test-ENCAOPT.sh + @p='./test-ENCAOPT.sh'; \ + b='./test-ENCAOPT.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-default-cs.sh.log: ./test-default-cs.sh + @p='./test-default-cs.sh'; \ + b='./test-default-cs.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-external.sh.log: ./test-external.sh + @p='./test-external.sh'; \ + b='./test-external.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-iconv.sh.log: ./test-iconv.sh + @p='./test-iconv.sh'; \ + b='./test-iconv.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-tex.sh.log: ./test-tex.sh + @p='./test-tex.sh'; \ + b='./test-tex.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-locale.sh.log: ./test-locale.sh + @p='./test-locale.sh'; \ + b='./test-locale.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-simtable.sh.log: ./test-simtable.sh + @p='./test-simtable.sh'; \ + b='./test-simtable.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +./test-recode.sh.log: ./test-recode.sh + @p='./test-recode.sh'; \ + b='./test-recode.sh'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.test.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +@am__EXEEXT_TRUE@.test$(EXEEXT).log: +@am__EXEEXT_TRUE@ @p='$<'; \ +@am__EXEEXT_TRUE@ $(am__set_b); \ +@am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ +@am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ +@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ +@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$(top_distdir)" distdir="$(distdir)" \ + dist-hook +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) $(SCRIPTS) +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool clean-local clean-noinstPROGRAMS \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \ + clean-generic clean-libtool clean-local clean-noinstPROGRAMS \ + cscopelist-am ctags ctags-am dist-hook distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am recheck tags tags-am uninstall \ + uninstall-am + +.PRECIOUS: Makefile + + +# alias test=check +test: check + +.PHONY: test + +clean-local: + rm -f test-*.actual core.* core *.tmp *~ *-big.* test-guess-stdin.expected test-ENCAOPT.expected + +dist-hook: + chmod 755 $(distdir)/test-*.sh + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/be-s.cp1251 b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.cp1251 new file mode 100644 index 0000000..1a09a8f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.cp1251 @@ -0,0 +1 @@ + ? diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/be-s.ibm855 b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.ibm855 new file mode 100644 index 0000000..33c8541 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.ibm855 @@ -0,0 +1 @@ + Ԩ ؠަ󨤨? diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/be-s.ibm866 b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.ibm866 new file mode 100644 index 0000000..38dcafd --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.ibm866 @@ -0,0 +1 @@ + 蠟? diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/be-s.iso88595 b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.iso88595 new file mode 100644 index 0000000..9768d4c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.iso88595 @@ -0,0 +1 @@ + ? diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/be-s.koi8uni b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.koi8uni new file mode 100644 index 0000000..a8a376d --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.koi8uni @@ -0,0 +1 @@ + ? diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/be-s.maccyr b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.maccyr new file mode 100644 index 0000000..8cfc19f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.maccyr @@ -0,0 +1 @@ + ? \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/be-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.utf8 new file mode 100644 index 0000000..700563a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/be-s.utf8 @@ -0,0 +1 @@ +Ну што вы не пасядзеце? diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/be-utf8.ibm855 b/wlx/wayland_qt_base/build/enca-1.19/test/be-utf8.ibm855 new file mode 100644 index 0000000..1a8a2ff --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/be-utf8.ibm855 @@ -0,0 +1 @@ +лЮЛЃ ЛѕЛѓлЙ л▓ЛІ лйлх л┐л░ЛЂЛЈл┤лилхЛєлх? diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/be-utf8.iso88595 b/wlx/wayland_qt_base/build/enca-1.19/test/be-utf8.iso88595 new file mode 100644 index 0000000..06aa859 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/be-utf8.iso88595 @@ -0,0 +1 @@ +абƒ бˆб‚аО аВб‹ аНаЕ аПаАббаДаЗаЕб†аЕ? diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.cp1251 b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.cp1251 new file mode 100644 index 0000000..df1856c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.cp1251 @@ -0,0 +1 @@ + - , - . diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.cp1251.qp b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.cp1251.qp new file mode 100644 index 0000000..a69f31b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.cp1251.qp @@ -0,0 +1,2 @@ +=CA=EE=E9=F2=EE =EC=EE=E6=E5 - =EF=F0=E0=E2=E8 =E3=EE, =EA=EE=E9=F2=EE =ED= +=E5 =EC=EE=E6=E5 - =F3=F7=E8 =E4=F0=F3=E3=E8=F2=E5. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.ecma113 b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.ecma113 new file mode 100644 index 0000000..e9709e8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.ecma113 @@ -0,0 +1 @@ + - , - . diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.ibm855 b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.ibm855 new file mode 100644 index 0000000..d129fdd --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.ibm855 @@ -0,0 +1 @@ +ֽ - , ֽ Ԩ - 笷. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.iso88595 b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.iso88595 new file mode 100644 index 0000000..ffd0eae --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.iso88595 @@ -0,0 +1 @@ + - , - . diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.maccyr b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.maccyr new file mode 100644 index 0000000..ace5dd5 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.maccyr @@ -0,0 +1 @@ + - , - . \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.utf8 new file mode 100644 index 0000000..625b900 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/bg-s.utf8 @@ -0,0 +1 @@ +Който може - прави го, който не може - учи другите. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.bin b/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.bin new file mode 100644 index 0000000..a30630a Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.bin differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.cp1251 b/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.cp1251 new file mode 100644 index 0000000..77dc401 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.cp1251 @@ -0,0 +1 @@ +Който РјРѕР¶Рµ - прави РіРѕ, който РЅРµ РјРѕР¶Рµ - учи другите. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.ecma113 b/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.ecma113 new file mode 100644 index 0000000..0008dcc --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.ecma113 @@ -0,0 +1 @@ +пšпЎпЉя‚пЎ пЌпЎпІпЅ - пЏя€п№пЃпЈ пЁпЎ, пЊпЎпЉя‚пЎ п¤пЅ пЌпЎпІпЅ - яƒя‡пЈ пЄя€яƒпЁпЈя‚пЅ. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.ibm855 b/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.ibm855 new file mode 100644 index 0000000..3c95b26 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.ibm855 @@ -0,0 +1 @@ +лџлЙл╣ЛѓлЙ л╝лЙлХлх - л┐Лђл░л▓лИ л│лЙ, л║лЙл╣ЛѓлЙ лйлх л╝лЙлХлх - ЛЃЛЄлИ л┤ЛђЛЃл│лИЛѓлх. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.iso88595 b/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.iso88595 new file mode 100644 index 0000000..d13b583 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.iso88595 @@ -0,0 +1 @@ +аšаОаЙб‚аО аМаОаЖаЕ - аПб€аАаВаИ аГаО, аКаОаЙб‚аО аНаЕ аМаОаЖаЕ - бƒб‡аИ аДб€бƒаГаИб‚аЕ. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.maccyr b/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.maccyr new file mode 100644 index 0000000..295962a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/bg-utf8.maccyr @@ -0,0 +1 @@ +–Ъ–Њ–є—В–Њ –Љ–Њ–ґ–µ - –њ—А–∞–≤–Є –≥–Њ, –Ї–Њ–є—В–Њ –љ–µ –Љ–Њ–ґ–µ - —Г—З–Є –і—А—Г–≥–Є—В–µ. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/binary b/wlx/wayland_qt_base/build/enca-1.19/test/binary new file mode 100644 index 0000000..01399f9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/binary @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.ambi b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.ambi new file mode 100644 index 0000000..0725640 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.ambi @@ -0,0 +1 @@ +npor pskajcch vl pro diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.cork b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.cork new file mode 100644 index 0000000..09643ed --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.cork @@ -0,0 +1 @@ +npor poouchlch lutch an pehluil i zuc orkn diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.cp1250 b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.cp1250 new file mode 100644 index 0000000..a08c69b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.cp1250 @@ -0,0 +1 @@ +npor poouchlch lutch an pehluil i zuc orkn diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.ibm852 b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.ibm852 new file mode 100644 index 0000000..fa71a59 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.ibm852 @@ -0,0 +1 @@ +npor poouchlch lutch an pehluil i zuc orkn diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.ibm852.qp b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.ibm852.qp new file mode 100644 index 0000000..e10101e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.ibm852.qp @@ -0,0 +1,2 @@ +n=A0por po=9Couchl=ECch =A7lut=ECch =9F=A1=E5an=85 p=FDehlu=E7il i zu=FD=A1= +c=A1 ork=A0n=0D diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.iso88592 b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.iso88592 new file mode 100644 index 0000000..40b8e69 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.iso88592 @@ -0,0 +1 @@ +npor poouchlch lutch an pehluil i zuc orkn diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.keybcs2 b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.keybcs2 new file mode 100644 index 0000000..b3943f8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.keybcs2 @@ -0,0 +1 @@ +npor poouchlch lutch an pehluil i zuc orkn diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.koi8cs2 b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.koi8cs2 new file mode 100644 index 0000000..63d00c8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.koi8cs2 @@ -0,0 +1 @@ +npor poouchlch lutch an pehluil i zuc orkn diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.macce b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.macce new file mode 100644 index 0000000..b867a63 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.macce @@ -0,0 +1 @@ +npor poouchlch lutch an pehluil i zuޒc orkn \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.tex b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.tex new file mode 100644 index 0000000..5318516 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.tex @@ -0,0 +1 @@ +n\'apor potouchl\'ych zlut\'ych c\'{\i}nanu prehlusil i zur\'{\i}c\'{\i} ork\'an diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.utf8 new file mode 100644 index 0000000..03f6726 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-s.utf8 @@ -0,0 +1 @@ +nápor poťouchlých žlutých číňanů přehlušil i zuřící orkán diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-utf8.bin b/wlx/wayland_qt_base/build/enca-1.19/test/cs-utf8.bin new file mode 100644 index 0000000..6c66d9a Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/cs-utf8.bin differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-utf8.cork b/wlx/wayland_qt_base/build/enca-1.19/test/cs-utf8.cork new file mode 100644 index 0000000..87033e9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-utf8.cork @@ -0,0 +1 @@ +nÃąpor poÅěouchlách Å¿lutách ÄŊÃŋÅĹanÅŕ pÅŹehluÅąil i zuÅŹÃŋcÃŋ orkÃąnËŹ \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-utf8.ibm852 b/wlx/wayland_qt_base/build/enca-1.19/test/cs-utf8.ibm852 new file mode 100644 index 0000000..f594e5e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-utf8.ibm852 @@ -0,0 +1 @@ +n├ípor po┼ąouchl├Żch ┼żlut├Żch ─Ź├ş┼łan┼» p┼Öehlu┼íil i zu┼Ö├şc├ş ork├ín diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/cs-utf8.iso88592 b/wlx/wayland_qt_base/build/enca-1.19/test/cs-utf8.iso88592 new file mode 100644 index 0000000..7e4eb44 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/cs-utf8.iso88592 @@ -0,0 +1 @@ +nĂĄpor poĹĽouchlĂ˝ch ĹžlutĂ˝ch číňanĹŻ přehluĹĄil i zuřícĂ­ orkĂĄn diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/dummy-converter.sh b/wlx/wayland_qt_base/build/enca-1.19/test/dummy-converter.sh new file mode 100755 index 0000000..24275e8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/dummy-converter.sh @@ -0,0 +1,2 @@ +#! /bin/sh +echo $@ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/et-s.baltic b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.baltic new file mode 100644 index 0000000..5f3fac7 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.baltic @@ -0,0 +1 @@ +...dispeteri kohustusetega, luues kgiviljapeenardel ettenhtud veereiimi... diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/et-s.cp1257 b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.cp1257 new file mode 100644 index 0000000..d33b7e6 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.cp1257 @@ -0,0 +1 @@ +...dispeteri kohustusetega, luues kgiviljapeenardel ettenhtud veereiimi... diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/et-s.ibm775 b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.ibm775 new file mode 100644 index 0000000..344e70c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.ibm775 @@ -0,0 +1 @@ +...dispeteri kohustusetega, luues kgiviljapeenardel ettenhtud veereiimi... diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/et-s.iso885913 b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.iso885913 new file mode 100644 index 0000000..b090d95 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.iso885913 @@ -0,0 +1 @@ +...dispeteri kohustusetega, luues kgiviljapeenardel ettenhtud veereiimi... diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/et-s.iso88594 b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.iso88594 new file mode 100644 index 0000000..119a3f1 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.iso88594 @@ -0,0 +1 @@ +...dispeteri kohustusetega, luues kgiviljapeenardel ettenhtud veereiimi... diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/et-s.iso88594.qp b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.iso88594.qp new file mode 100644 index 0000000..fd6ab3a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.iso88594.qp @@ -0,0 +1,2 @@ +...dispet=B9eri kohustusetega, luues k=F6=F6giviljapeenardel etten=E4htud v= +eere=BEiimi... diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/et-s.macce b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.macce new file mode 100644 index 0000000..c852a7c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.macce @@ -0,0 +1 @@ +...dispeteri kohustusetega, luues kgiviljapeenardel ettenhtud veereiimi... \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/et-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.utf8 new file mode 100644 index 0000000..762b605 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/et-s.utf8 @@ -0,0 +1 @@ +...dispetšeri kohustusetega, luues köögiviljapeenardel ettenähtud veerežiimi... diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/et-utf8.bin b/wlx/wayland_qt_base/build/enca-1.19/test/et-utf8.bin new file mode 100644 index 0000000..c5bd4b9 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/et-utf8.bin differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/et-utf8.ibm775 b/wlx/wayland_qt_base/build/enca-1.19/test/et-utf8.ibm775 new file mode 100644 index 0000000..568e8eb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/et-utf8.ibm775 @@ -0,0 +1 @@ +...dispet┼Īeri kohustusetega, luues k├Č├Čgiviljapeenardel etten├żhtud veere┼Šiimi... diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/et-utf8.iso885913 b/wlx/wayland_qt_base/build/enca-1.19/test/et-utf8.iso885913 new file mode 100644 index 0000000..08254b1 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/et-utf8.iso885913 @@ -0,0 +1 @@ +...dispetÅ”eri kohustusetega, luues kƶƶgiviljapeenardel ettenƤhtud veerežiimi... diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/et-utf8.iso88594 b/wlx/wayland_qt_base/build/enca-1.19/test/et-utf8.iso88594 new file mode 100644 index 0000000..fc92413 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/et-utf8.iso88594 @@ -0,0 +1 @@ +...dispetÅĄeri kohustusetega, luues kÃļÃļgiviljapeenardel ettenähtud veereÅžiimi... diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/failing-converter.sh b/wlx/wayland_qt_base/build/enca-1.19/test/failing-converter.sh new file mode 100755 index 0000000..2526efb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/failing-converter.sh @@ -0,0 +1,2 @@ +#! /bin/sh +exit 1 diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/failing-converter2.sh b/wlx/wayland_qt_base/build/enca-1.19/test/failing-converter2.sh new file mode 100755 index 0000000..b675809 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/failing-converter2.sh @@ -0,0 +1,2 @@ +#! /bin/sh +kill -9 $$ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/finish.sh b/wlx/wayland_qt_base/build/enca-1.19/test/finish.sh new file mode 100644 index 0000000..f4f8bcc --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/finish.sh @@ -0,0 +1,16 @@ +if test -n "$E77"; then + exit 77 +fi +if test -f $TESTNAME.expected; then + diff $TESTNAME.expected $TESTNAME.actual || DIE=1 +else + if test -f $srcdir/$TESTNAME.expected; then + diff $srcdir/$TESTNAME.expected $TESTNAME.actual || DIE=1 + fi +fi +if test -z "$DIE"; then + rm -f $TESTNAME.actual $TESTNAME.tmp 2>/dev/null +fi +ls | grep 'core' >/dev/null && DIE=1 +rm -f core* 2>/dev/null +test -z "$DIE" || exit 1 diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.cork b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.cork new file mode 100644 index 0000000..e8daf5e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.cork @@ -0,0 +1,2 @@ +...strunih tematskih teajeva radi ostvarenja vre suradnje izmeu +nacionalnih arhivskih slubi zemalja jugoistone Europe. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.cp1250 b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.cp1250 new file mode 100644 index 0000000..7532f71 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.cp1250 @@ -0,0 +1,2 @@ +...strunih tematskih teajeva radi ostvarenja vre suradnje izmeu +nacionalnih arhivskih slubi zemalja jugoistone Europe. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.ibm852 b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.ibm852 new file mode 100644 index 0000000..93e9723 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.ibm852 @@ -0,0 +1,2 @@ +...strunih tematskih teajeva radi ostvarenja vre suradnje izmeu +nacionalnih arhivskih slubi zemalja jugoistone Europe. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.iso88592 b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.iso88592 new file mode 100644 index 0000000..e95fe44 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.iso88592 @@ -0,0 +1,2 @@ +...strunih tematskih teajeva radi ostvarenja vre suradnje izmeu +nacionalnih arhivskih slubi zemalja jugoistone Europe. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.iso88592.qp b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.iso88592.qp new file mode 100644 index 0000000..231d07f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.iso88592.qp @@ -0,0 +1,3 @@ +...stru=E8nih tematskih te=E8ajeva radi ostvarenja =E8vr=B9=E6e suradnje iz= +me=F0u +nacionalnih arhivskih slu=BEbi zemalja jugoisto=E8ne Europe. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.macce b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.macce new file mode 100644 index 0000000..1a4c515 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.macce @@ -0,0 +1 @@ +...strunih tematskih teajeva radi ostvarenja vre suradnje izmedu nacionalnih arhivskih slubi zemalja jugoistone Europe. \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.utf8 new file mode 100644 index 0000000..19d79e1 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hr-s.utf8 @@ -0,0 +1,2 @@ +...stručnih tematskih tečajeva radi ostvarenja čvršće suradnje između +nacionalnih arhivskih službi zemalja jugoistočne Europe. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hr-utf8.cp1250 b/wlx/wayland_qt_base/build/enca-1.19/test/hr-utf8.cp1250 new file mode 100644 index 0000000..1f5041f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hr-utf8.cp1250 @@ -0,0 +1,2 @@ +...struÄŤnih tematskih teÄŤajeva radi ostvarenja ÄŤvršće suradnje izmeÄ‘u +nacionalnih arhivskih sluĹľbi zemalja jugoistoÄŤne Europe. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hr-utf8.ibm852 b/wlx/wayland_qt_base/build/enca-1.19/test/hr-utf8.ibm852 new file mode 100644 index 0000000..09dbfa9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hr-utf8.ibm852 @@ -0,0 +1,2 @@ +...stru─Źnih tematskih te─Źajeva radi ostvarenja ─Źvr┼í─çe suradnje izme─Ĺu +nacionalnih arhivskih slu┼żbi zemalja jugoisto─Źne Europe. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.cork b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.cork new file mode 100644 index 0000000..d818e8e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.cork @@ -0,0 +1 @@ +Hajnalonta a kertsz kiltet tz t rzst a ftrre. Vrslenek diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.cp1250 b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.cp1250 new file mode 100644 index 0000000..a763d11 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.cp1250 @@ -0,0 +1 @@ +Hajnalonta a kertsz kiltet tz t rzst a ftrre. Vrslenek diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.ibm852 b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.ibm852 new file mode 100644 index 0000000..781b9ce --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.ibm852 @@ -0,0 +1 @@ +Hajnalonta a kertsz kiltet tz t rzst a ftrre. Vrslenek diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.iso88592 b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.iso88592 new file mode 100644 index 0000000..4bfa05b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.iso88592 @@ -0,0 +1 @@ +Hajnalonta a kertsz kiltet tz t rzst a ftrre. Vrslenek diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.macce b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.macce new file mode 100644 index 0000000..75df22b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.macce @@ -0,0 +1 @@ +Hajnalonta a kertsz kiltet tz t rzst a ftrre. Vrslenek \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.macce.qp b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.macce.qp new file mode 100644 index 0000000..4de02be --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.macce.qp @@ -0,0 +1,2 @@ +Hajnalonta a kert=8Esz ki=9Fltet t=92z t=CE r=97zs=87t a f=CEt=8Erre. V=9Ar= +=9Aslenek diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.utf8 new file mode 100644 index 0000000..de74da7 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hu-s.utf8 @@ -0,0 +1 @@ +Hajnalonta a kertész kiültet tíz tő rózsát a főtérre. Vöröslenek diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hu-utf8.cork b/wlx/wayland_qt_base/build/enca-1.19/test/hu-utf8.cork new file mode 100644 index 0000000..ccae1a0 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hu-utf8.cork @@ -0,0 +1 @@ +Hajnalonta a kertÃľsz kiÃijltet tÃŋz tÅŚ rÃşzsÃąt a fÅŚtÃľrre. VÃűrÃűslenek‚˙ \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hu-utf8.cp1250 b/wlx/wayland_qt_base/build/enca-1.19/test/hu-utf8.cp1250 new file mode 100644 index 0000000..ef9baba --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hu-utf8.cp1250 @@ -0,0 +1 @@ +Hajnalonta a kertĂ©sz kiĂĽltet tĂ­z tĹ‘ rĂłzsát a fĹ‘tĂ©rre. Vöröslenek diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hu-utf8.ibm852 b/wlx/wayland_qt_base/build/enca-1.19/test/hu-utf8.ibm852 new file mode 100644 index 0000000..74b2ac7 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hu-utf8.ibm852 @@ -0,0 +1 @@ +Hajnalonta a kert├ęsz ki├╝ltet t├şz t┼Ĺ r├│zs├ít a f┼Ĺt├ęrre. V├Âr├Âslenek diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/hu-utf8.macce b/wlx/wayland_qt_base/build/enca-1.19/test/hu-utf8.macce new file mode 100644 index 0000000..92caf51 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/hu-utf8.macce @@ -0,0 +1 @@ +Hajnalonta a kert√©sz ki√ľltet t√≠z tŇĎ r√≥zs√°t a fŇĎt√©rre. V√∂r√∂slenek \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.baltic b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.baltic new file mode 100644 index 0000000..4af3542 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.baltic @@ -0,0 +1 @@ +Kaip prastai, kart nakt ijs pasivaikioti, Dirolamas namo nebegro. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.cp1257 b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.cp1257 new file mode 100644 index 0000000..95ed1d0 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.cp1257 @@ -0,0 +1 @@ +Kaip prastai, kart nakt ijs pasivaikioti, Dirolamas namo nebegro. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.ibm775 b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.ibm775 new file mode 100644 index 0000000..b85298e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.ibm775 @@ -0,0 +1 @@ +Kaip prastai, kart nakt ijs pasivaikioti, Dirolamas namo nebegro. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.iso885913 b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.iso885913 new file mode 100644 index 0000000..3a52c4c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.iso885913 @@ -0,0 +1 @@ +Kaip prastai, kart nakt ijs pasivaikioti, Dirolamas namo nebegro. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.iso88594 b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.iso88594 new file mode 100644 index 0000000..060ffc3 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.iso88594 @@ -0,0 +1 @@ +Kaip prastai, kart nakt ijs pasivaikioti, Dirolamas namo nebegro. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.macce b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.macce new file mode 100644 index 0000000..e163d24 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.macce @@ -0,0 +1 @@ +Kaip prastai, kart nakt ijs pasivaikioti, Dirolamas namo nebegro. \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.utf8 new file mode 100644 index 0000000..185fdce --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lt-s.utf8 @@ -0,0 +1 @@ +Kaip įprastai, kartą naktį išėjęs pasivaikščioti, Džirolamas namo nebegrįžo. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lt-utf8.ibm775 b/wlx/wayland_qt_base/build/enca-1.19/test/lt-utf8.ibm775 new file mode 100644 index 0000000..4d46979 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lt-utf8.ibm775 @@ -0,0 +1 @@ +Kaip ─»prastai, kart─ģ nakt─» i┼Ī─Śj─Ös pasivaik┼Ī─Źioti, D┼Širolamas namo nebegr─»┼Šo. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lt-utf8.iso88594 b/wlx/wayland_qt_base/build/enca-1.19/test/lt-utf8.iso88594 new file mode 100644 index 0000000..2afe473 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lt-utf8.iso88594 @@ -0,0 +1 @@ +Kaip įprastai, kartą naktį iÅĄÄ—jęs pasivaikÅĄÄioti, DÅžirolamas namo nebegrįŞo. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lt-utf8.macce b/wlx/wayland_qt_base/build/enca-1.19/test/lt-utf8.macce new file mode 100644 index 0000000..475ce92 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lt-utf8.macce @@ -0,0 +1 @@ +Kaip ńIprastai, kartńÖ naktńI iҰńójńôs pasivaikҰńćioti, DŇĺirolamas namo nebegrńIŇĺo. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.baltic b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.baltic new file mode 100644 index 0000000..18068fe --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.baltic @@ -0,0 +1 @@ +bet vri, kamr ie saceas, paem duktus - ieliek zrk, paem du diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.cp1257 b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.cp1257 new file mode 100644 index 0000000..f794872 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.cp1257 @@ -0,0 +1 @@ +bet vri, kamr ie saceas, paem duktus - ieliek zrk, paem du diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.ibm775 b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.ibm775 new file mode 100644 index 0000000..01cdd40 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.ibm775 @@ -0,0 +1 @@ +bet vri, kamr ie saceas, paem duktus - ieliek zrk, paem du diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.iso885913 b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.iso885913 new file mode 100644 index 0000000..6e0bdbe --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.iso885913 @@ -0,0 +1 @@ +bet vri, kamr ie saceas, paem duktus - ieliek zrk, paem du diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.iso885913.qp b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.iso885913.qp new file mode 100644 index 0000000..306dd5a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.iso885913.qp @@ -0,0 +1,2 @@ +bet v=EEri=F2=F0, kam=E7r =F0ie sace=EFas, pa=F2em duk=E2tus - ieliek z=E2r= +k=E2, pa=F2em =E2du diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.iso88594 b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.iso88594 new file mode 100644 index 0000000..8e20bc7 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.iso88594 @@ -0,0 +1 @@ +bet vri, kamr ie saceas, paem duktus - ieliek zrk, paem du diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.macce b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.macce new file mode 100644 index 0000000..ec5dc91 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.macce @@ -0,0 +1 @@ +bet vri, kamr ie saceas, paem duktus - ieliek zrk, paem du \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.utf8 new file mode 100644 index 0000000..6d2bb5f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lv-s.utf8 @@ -0,0 +1 @@ +bet vīriņš, kamēr šie saceļas, paņem dukātus - ieliek zārkā, paņem ādu diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lv-utf8.ibm775 b/wlx/wayland_qt_base/build/enca-1.19/test/lv-utf8.ibm775 new file mode 100644 index 0000000..0fc76f7 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lv-utf8.ibm775 @@ -0,0 +1 @@ +bet v─½ri┼å┼Ī, kam─ōr ┼Īie sace─╝as, pa┼åem duk─ütus - ieliek z─ürk─ü, pa┼åem ─üdu diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lv-utf8.iso88594 b/wlx/wayland_qt_base/build/enca-1.19/test/lv-utf8.iso88594 new file mode 100644 index 0000000..9f1bdc0 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lv-utf8.iso88594 @@ -0,0 +1 @@ +bet vÄĢriÅ†ÅĄ, kamēr ÅĄie saceÄŧas, paņem dukātus - ieliek zārkā, paņem ādu diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/lv-utf8.macce b/wlx/wayland_qt_base/build/enca-1.19/test/lv-utf8.macce new file mode 100644 index 0000000..37ece44 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/lv-utf8.macce @@ -0,0 +1 @@ +bet vńęriŇÜҰ, kamńďr Ұie saceńľas, paŇÜem dukńAtus - ieliek zńArkńA, paŇÜem ńAdu diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2 b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2 new file mode 100644 index 0000000..3a57fb5 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2 differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2be.bom b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2be.bom new file mode 100644 index 0000000..058fbd8 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2be.bom differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2be.bom.crlf b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2be.bom.crlf new file mode 100644 index 0000000..da4c844 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2be.bom.crlf differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2be.bom.noeol b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2be.bom.noeol new file mode 100644 index 0000000..18e8f25 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2be.bom.noeol differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2le b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2le new file mode 100644 index 0000000..8216d84 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2le differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2le.bom b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2le.bom new file mode 100644 index 0000000..349d190 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2le.bom differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2le.qp b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2le.qp new file mode 100644 index 0000000..ed587b6 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs2le.qp @@ -0,0 +1,10 @@ +D=00a=00n=00i=00e=00l=00 =00P=00o=00l=00a=00n=00s=00k=00=FD=00 +=00D=00a=00v=00i=00d=00 =00N=00e=00=0D=01a=00s=00 +=00F=00r=00a=00n=00=E7=00o=00i=00s=00 =00P=00i=00n=00a=00r=00d=00 +=00J=00a=00n=00 =00M=00a=00r=00t=00=ED=00n=00e=00k=00 +=00J=00i=00Y=01=ED=00 =00P=00o=00l=00c=00a=00r=00 +=00V=00=E1=00c=00l=00a=00v=00 =00X=01=ED=00k=00a=00l=00 +=00=10=04;=045=04:=04A=040=04=3D=044=04@=04 =001=04>=04:=04>=042=04>=049=04 +=00=1C=048=04E=040=048=04;=04 =00(=048=043=04>=04@=048=04=3D=04 +=00 +=00= diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs4 b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs4 new file mode 100644 index 0000000..40b3efd Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs4 differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs4le b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs4le new file mode 100644 index 0000000..45fd4ae Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.ucs4le differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/none-s.utf7 b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.utf7 new file mode 100644 index 0000000..718caa3 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.utf7 @@ -0,0 +1,9 @@ +Daniel Polansk+AP0 +David Ne+AQ0-as +Fran+AOc-ois Pinard +Jan Mart+AO0-nek +Ji+AVkA7Q Polcar +V+AOE-clav +AVgA7Q-kal ++BBAEOwQ1BDoEQQQwBD0ENARA +BDEEPgQ6BD4EMgQ+BDk ++BBwEOARFBDAEOAQ7 +BCgEOAQzBD4EQAQ4BD0 + diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/none-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.utf8 new file mode 100644 index 0000000..5f3e92e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.utf8 @@ -0,0 +1,9 @@ +Daniel Polanský +David Nečas +François Pinard +Jan Martínek +Jiří Polcar +Václav Říkal +Александр боковой +Михаил Шигорин + diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/none-s.utf8.bom b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.utf8.bom new file mode 100644 index 0000000..a13c399 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/none-s.utf8.bom @@ -0,0 +1 @@ +test diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/none-utf8.messy b/wlx/wayland_qt_base/build/enca-1.19/test/none-utf8.messy new file mode 100644 index 0000000..374156a Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/none-utf8.messy differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.baltic b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.baltic new file mode 100644 index 0000000..04a956b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.baltic @@ -0,0 +1 @@ +Podejrzewam, e przedmioty robi to ze wzgldw wychowawczych, aby wci nam wypomina nasz niestao. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.baltic.qp b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.baltic.qp new file mode 100644 index 0000000..292d060 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.baltic.qp @@ -0,0 +1,2 @@ +Podejrzewam, =FDe przedmioty robi=E6 to ze wzgl=EBd=F3w wychowawczych, aby = +wci=E6=FD nam wypomina=E3 nasz=E6 niesta=F0o=FA=E3.=0D diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.cork b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.cork new file mode 100644 index 0000000..062f579 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.cork @@ -0,0 +1 @@ +Podejrzewam, e przedmioty robi to ze wzgldw wychowawczych, aby wci nam wypomina nasz niestao. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.cp1250 b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.cp1250 new file mode 100644 index 0000000..52f87c1 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.cp1250 @@ -0,0 +1 @@ +Podejrzewam, e przedmioty robi to ze wzgldw wychowawczych, aby wci nam wypomina nasz niestao. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.ibm852 b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.ibm852 new file mode 100644 index 0000000..83b531a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.ibm852 @@ -0,0 +1 @@ +Podejrzewam, e przedmioty robi to ze wzgldw wychowawczych, aby wci nam wypomina nasz niestao. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.iso885913 b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.iso885913 new file mode 100644 index 0000000..a96d220 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.iso885913 @@ -0,0 +1 @@ +Podejrzewam, e przedmioty robi to ze wzgldw wychowawczych, aby wci nam wypomina nasz niestao. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.iso885916 b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.iso885916 new file mode 100644 index 0000000..e13f5a9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.iso885916 @@ -0,0 +1 @@ +Podejrzewam, e przedmioty robi to ze wzgldw wychowawczych, aby wci nam wypomina nasz niestao. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.iso88592 b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.iso88592 new file mode 100644 index 0000000..07e725b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.iso88592 @@ -0,0 +1 @@ +Podejrzewam, e przedmioty robi to ze wzgldw wychowawczych, aby wci nam wypomina nasz niestao. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.utf8 new file mode 100644 index 0000000..ff4ab20 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/pl-s.utf8 @@ -0,0 +1 @@ +Podejrzewam, że przedmioty robią to ze względów wychowawczych, aby wciąż nam wypominać naszą niestałość. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/pl-utf8.baltic b/wlx/wayland_qt_base/build/enca-1.19/test/pl-utf8.baltic new file mode 100644 index 0000000..11871c7 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/pl-utf8.baltic @@ -0,0 +1 @@ +Podejrzewam, że przedmioty robią to ze względów wychowawczych, aby wciąż nam wypominać naszą niestałość. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/pl-utf8.ibm852 b/wlx/wayland_qt_base/build/enca-1.19/test/pl-utf8.ibm852 new file mode 100644 index 0000000..9df2de6 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/pl-utf8.ibm852 @@ -0,0 +1 @@ +Podejrzewam, ┼╝e przedmioty robi─ů to ze wzgl─Öd├│w wychowawczych, aby wci─ů┼╝ nam wypomina─ç nasz─ů niesta┼éo┼Ť─ç. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/pl-utf8.iso885916 b/wlx/wayland_qt_base/build/enca-1.19/test/pl-utf8.iso885916 new file mode 100644 index 0000000..a23e2a6 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/pl-utf8.iso885916 @@ -0,0 +1 @@ +Podejrzewam, ĆŒe przedmioty robią to ze względĂłw wychowawczych, aby wciÄ…ĆŒ nam wypominać naszą niestaƂoƛć. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.cp1251 b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.cp1251 new file mode 100644 index 0000000..ecd418f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.cp1251 @@ -0,0 +1 @@ + xcode . diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.cp866 b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.cp866 new file mode 100644 index 0000000..067a4f9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.cp866 @@ -0,0 +1 @@ + xcode 㫨. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.iso88595 b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.iso88595 new file mode 100644 index 0000000..57d8511 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.iso88595 @@ -0,0 +1 @@ + xcode . diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.koi8r b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.koi8r new file mode 100644 index 0000000..abfb553 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.koi8r @@ -0,0 +1 @@ + xcode . diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.maccyr b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.maccyr new file mode 100644 index 0000000..4876d68 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.maccyr @@ -0,0 +1 @@ + xcode . \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.maccyr.qp b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.maccyr.qp new file mode 100644 index 0000000..edae57d --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.maccyr.qp @@ -0,0 +1 @@ +=92=E0=EA =F7=F2=EE =E4=EB=DF =EC=E5=ED=DF =EF=EE=EA=E0 xcode =F0=F3=EB=E8= =F2.=0D= \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.utf8 new file mode 100644 index 0000000..01b133e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/ru-s.utf8 @@ -0,0 +1 @@ +Так что для меня пока xcode рулит. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/ru-utf8.cp866 b/wlx/wayland_qt_base/build/enca-1.19/test/ru-utf8.cp866 new file mode 100644 index 0000000..b681920 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/ru-utf8.cp866 @@ -0,0 +1 @@ +╨в╨░╨║ ╤З╤В╨╛ ╨┤╨╗╤П ╨╝╨╡╨╜╤П ╨┐╨╛╨║╨░ xcode ╤А╤Г╨╗╨╕╤В. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/ru-utf8.koi8r b/wlx/wayland_qt_base/build/enca-1.19/test/ru-utf8.koi8r new file mode 100644 index 0000000..62021fb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/ru-utf8.koi8r @@ -0,0 +1 @@ +п╒п╟п╨ я┤я┌п╬ п╢п╩я▐ п╪п╣п╫я▐ п©п╬п╨п╟ xcode я─я┐п╩п╦я┌. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/ru-utf8.maccyr b/wlx/wayland_qt_base/build/enca-1.19/test/ru-utf8.maccyr new file mode 100644 index 0000000..188b2e6 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/ru-utf8.maccyr @@ -0,0 +1 @@ +–¢–∞–Ї —З—В–Њ –і–ї—П –Љ–µ–љ—П –њ–Њ–Ї–∞ xcode —А—Г–ї–Є—В. \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/setup.sh b/wlx/wayland_qt_base/build/enca-1.19/test/setup.sh new file mode 100644 index 0000000..a1b886f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/setup.sh @@ -0,0 +1,22 @@ +ENCA=$top_builddir/src/enca +TEST_LANGUAGES="be bg cs et hr hu lt lv pl ru sk sl uk zh" +ALL_TEST_LANGUAGES="$TEST_LANGUAGES none" +TEST_PAIR_be="koi8uni cp1251" +TEST_PAIR_bg="ibm855 cp1251" +TEST_PAIR_cs="keybcs2 ibm852" +TEST_PAIR_et="iso885913 baltic" +TEST_PAIR_hr="ibm852 cp1250" +TEST_PAIR_hu="cp1250 ibm852" +TEST_PAIR_lt="iso88594 baltic" +TEST_PAIR_lv="ibm775 cp1257" +TEST_PAIR_pl="iso88592 iso885916" +TEST_PAIR_ru="koi8r cp866" +TEST_PAIR_sk="keybcs2 koi8cs2" +TEST_PAIR_sl="cp1250 ibm852" +TEST_PAIR_uk="koi8u cp1125" +# Only lucky people have basename +TESTNAME=`echo $0 | sed -e 's/.*\///' -e 's/.sh$//'` +DIE= +E77= +cat $TESTNAME.actual +rm -f core* 2>/dev/null diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/simtable b/wlx/wayland_qt_base/build/enca-1.19/test/simtable new file mode 100755 index 0000000..7a8996a Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/simtable differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/simtable.c b/wlx/wayland_qt_base/build/enca-1.19/test/simtable.c new file mode 100644 index 0000000..1d41e05 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/simtable.c @@ -0,0 +1,73 @@ +#include +#include +#include + +#include "enca.h" +/* To cheat... */ +#include "internal.h" + +int myargc; +char **myargv; + +static void +prl(const EncaLanguageInfo *l, const char *hooks) +{ + double *m; + int a; + size_t i, j; + + if (myargc > 1) { + a = 1; + while (a < myargc && strcmp(myargv[a], l->name)) + a++; + if (a == myargc) + return; + } + + printf("\n==\x1b[1m%s\x1b[m==\n", l->name); + m = enca_get_charset_similarity_matrix(l); + for (i = 0; i < l->ncharsets; i++) { + for (j = 0; j < l->ncharsets; j++) { + double q = 1000.0*m[i*l->ncharsets + j]; + + if (i == j) + printf("\x1b[36m"); + else if (q > 500) + printf("\x1b[1;31m"); + else if (q > 333) + printf("\x1b[31m"); + else if (q > 200) + printf("\x1b[34m"); + else if (q < 50) + printf("\x1b[30m"); + printf("%4.0f ", q); + printf("\x1b[m"); + } + printf(" %s\n", l->csnames[i]); + } + printf("Hooks: \x1b[32m%s\x1b[m\n", hooks); + free(m); +} + +int +main(int argc, char *argv[]) +{ + myargc = argc; + myargv = argv; + + prl(&ENCA_LANGUAGE_BE, "macwin isokoi 855866"); + prl(&ENCA_LANGUAGE_BG, "1251mac"); + prl(&ENCA_LANGUAGE_CS, "isowin 852kam"); + prl(&ENCA_LANGUAGE_ET, ""); + prl(&ENCA_LANGUAGE_HR, "isowin"); + prl(&ENCA_LANGUAGE_HU, "isocork isowin[XXX]"); + prl(&ENCA_LANGUAGE_LT, "winbalt lat4balt iso13win[XXX]"); + prl(&ENCA_LANGUAGE_LV, "winbalt iso13win[XXX]"); + prl(&ENCA_LANGUAGE_PL, "isowin balt13"); + prl(&ENCA_LANGUAGE_RU, "macwin"); + prl(&ENCA_LANGUAGE_SK, "isowin 852kam"); + prl(&ENCA_LANGUAGE_SL, ""); + prl(&ENCA_LANGUAGE_UK, "macwin isokoi ibm1125"); + + return 0; +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/simtable.o b/wlx/wayland_qt_base/build/enca-1.19/test/simtable.o new file mode 100644 index 0000000..947734a Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/simtable.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.cork b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.cork new file mode 100644 index 0000000..f0d7210 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.cork @@ -0,0 +1 @@ +Nevedel vbec ni. Vedel iba to, e ak chce osta naive mus sa stara o to, aby naive neostali t, ktor ho chc o ivot pripravi. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.cp1250 b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.cp1250 new file mode 100644 index 0000000..3621acf --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.cp1250 @@ -0,0 +1 @@ +Nevedel vbec ni. Vedel iba to, e ak chce osta naive mus sa stara o to, aby naive neostali t, ktor ho chc o ivot pripravi. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.cp1250.qp b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.cp1250.qp new file mode 100644 index 0000000..371cc4f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.cp1250.qp @@ -0,0 +1,3 @@ +Nevedel v=F4bec ni=E8. Vedel iba to, =9Ee ak chce osta=9D na=9Eive mus=ED s= +a stara=9D o to, aby na=9Eive neostali t=ED, ktor=ED ho chc=FA o =9Eivot pr= +ipravi=9D.=0D diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.ibm852 b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.ibm852 new file mode 100644 index 0000000..b9c703f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.ibm852 @@ -0,0 +1 @@ +Nevedel vbec ni. Vedel iba to, e ak chce osta naive mus sa stara o to, aby naive neostali t, ktor ho chc o ivot pripravi. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.iso88592 b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.iso88592 new file mode 100644 index 0000000..e74db6b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.iso88592 @@ -0,0 +1 @@ +Nevedel vbec ni. Vedel iba to, e ak chce osta naive mus sa stara o to, aby naive neostali t, ktor ho chc o ivot pripravi. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.keybcs2 b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.keybcs2 new file mode 100644 index 0000000..dbe6c36 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.keybcs2 @@ -0,0 +1 @@ +Nevedel vbec ni. Vedel iba to, e ak chce osta naive mus sa stara o to, aby naive neostali t, ktor ho chc o ivot pripravi. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.koi8cs2 b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.koi8cs2 new file mode 100644 index 0000000..3368b19 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.koi8cs2 @@ -0,0 +1 @@ +Nevedel vbec ni. Vedel iba to, e ak chce osta naive mus sa stara o to, aby naive neostali t, ktor ho chc o ivot pripravi. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.macce b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.macce new file mode 100644 index 0000000..252a558 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.macce @@ -0,0 +1 @@ +Nevedel vbec ni. Vedel iba to, e ak chce osta naive mus sa stara o to, aby naive neostali t, ktor ho chc o ivot pripravi. \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.utf8 new file mode 100644 index 0000000..63bd369 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sk-s.utf8 @@ -0,0 +1 @@ +Nevedel vôbec nič. Vedel iba to, že ak chce ostať nažive musí sa starať o to, aby nažive neostali tí, ktorí ho chcú o život pripraviť. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sk-utf8.cp1250 b/wlx/wayland_qt_base/build/enca-1.19/test/sk-utf8.cp1250 new file mode 100644 index 0000000..79631de --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sk-utf8.cp1250 @@ -0,0 +1 @@ +Nevedel vĂ´bec niÄŤ. Vedel iba to, Ĺľe ak chce ostaĹĄ naĹľive musĂ­ sa staraĹĄ o to, aby naĹľive neostali tĂ­, ktorĂ­ ho chcĂş o Ĺľivot pripraviĹĄ. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sk-utf8.keybcs2 b/wlx/wayland_qt_base/build/enca-1.19/test/sk-utf8.keybcs2 new file mode 100644 index 0000000..caba641 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sk-utf8.keybcs2 @@ -0,0 +1 @@ +Nevedel v├┤bec ni─ĺ. Vedel iba to, ┼╛e ak chce osta┼Ň na┼╛ive mus├§ sa stara┼Ň o to, aby na┼╛ive neostali t├§, ktor├§ ho chc├║ o ┼╛ivot pripravi┼Ň. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.cork b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.cork new file mode 100644 index 0000000..bd6beeb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.cork @@ -0,0 +1 @@ +Ko je zazoril jemen in je priel as konje, so dolinci eli e penico. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.cp1250 b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.cp1250 new file mode 100644 index 0000000..cf7de10 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.cp1250 @@ -0,0 +1 @@ +Ko je zazoril jemen in je priel as konje, so dolinci eli e penico. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.ibm852 b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.ibm852 new file mode 100644 index 0000000..a79e71c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.ibm852 @@ -0,0 +1 @@ +Ko je zazoril jemen in je priel as konje, so dolinci eli e penico. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.ibm852.qp b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.ibm852.qp new file mode 100644 index 0000000..85af93e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.ibm852.qp @@ -0,0 +1,2 @@ +Ko je zazoril je=9Fmen in je pri=E7el =9Fas ko=E7nje, so dolinci =A7eli =A7= +e p=E7enico. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.iso88592 b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.iso88592 new file mode 100644 index 0000000..941757f --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.iso88592 @@ -0,0 +1 @@ +Ko je zazoril jemen in je priel as konje, so dolinci eli e penico. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.macce b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.macce new file mode 100644 index 0000000..6a40ed1 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.macce @@ -0,0 +1 @@ +Ko je zazoril jemen in je priel as konje, so dolinci eli e penico. \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.utf8 new file mode 100644 index 0000000..c827a6e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sl-s.utf8 @@ -0,0 +1 @@ +Ko je zazoril ječmen in je prišel čas košnje, so dolinci želi že pšenico. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sl-utf8.cork b/wlx/wayland_qt_base/build/enca-1.19/test/sl-utf8.cork new file mode 100644 index 0000000..4da5a13 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sl-utf8.cork @@ -0,0 +1 @@ +Ko je zazoril jeÄŊmen in je priÅąel ÄŊas koÅąnje, so dolinci Å¿eli Å¿e pÅąenico.˙ \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sl-utf8.ibm852 b/wlx/wayland_qt_base/build/enca-1.19/test/sl-utf8.ibm852 new file mode 100644 index 0000000..8d25a66 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sl-utf8.ibm852 @@ -0,0 +1 @@ +Ko je zazoril je─Źmen in je pri┼íel ─Źas ko┼ínje, so dolinci ┼żeli ┼że p┼íenico. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sl-utf8.iso88592 b/wlx/wayland_qt_base/build/enca-1.19/test/sl-utf8.iso88592 new file mode 100644 index 0000000..c72330b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sl-utf8.iso88592 @@ -0,0 +1 @@ +Ko je zazoril ječmen in je priĹĄel čas koĹĄnje, so dolinci Ĺželi Ĺže pĹĄenico. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/sl-utf8.macce b/wlx/wayland_qt_base/build/enca-1.19/test/sl-utf8.macce new file mode 100644 index 0000000..c221b19 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/sl-utf8.macce @@ -0,0 +1 @@ +Ko je zazoril jeńćmen in je priҰel ńćas koҰnje, so dolinci Ňĺeli Ňĺe pҰenico. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-ENCAOPT.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-ENCAOPT.sh new file mode 100755 index 0000000..5f55d2a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-ENCAOPT.sh @@ -0,0 +1,18 @@ +#! /bin/sh +# Purpose: test whether ENCAOPT works. +. $srcdir/setup.sh +DATATESTNAME=test-guess-short +rm -f $TESTNAME.expected 2>/dev/null +ln -s $srcdir/$DATATESTNAME.expected $TESTNAME.expected +for l in $ALL_TEST_LANGUAGES; do + ENCAOPT="-L $l -p -e" + # This is necessary when $ENCA is in fact a libtool script + export ENCAOPT + $ENCA $srcdir/$l-s.* | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +done +# Test invalid option string +ENCAOPT=";" +export ENCAOPT +$ENCA -L none $srcdir/cs-s.utf8 || DIE=1 +. $srcdir/finish.sh +rm -f $TESTNAME.expected 2>/dev/null diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-aliases.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-aliases.sh new file mode 100755 index 0000000..ef7a4bb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-aliases.sh @@ -0,0 +1,6 @@ +#! /bin/sh +# Purpose: check for iconv charsets, namely without libiconv. Enca used to +# keep the @...@ in alias list. +. $srcdir/setup.sh +$ENCA --name aliases --list charsets | grep '@' && DIE=1 +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-convert-64.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-convert-64.sh new file mode 100755 index 0000000..cc2e61b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-convert-64.sh @@ -0,0 +1,38 @@ +#! /bin/sh +# Purpose: test whether built-in converter works. We need files larger than +# 64kb, because enca used to have problems with them (the generated big samples +# are between 100k and 600k, depending on original small sample size). +. $srcdir/setup.sh +for l in $TEST_LANGUAGES; do + # Create big files form the fragments. + lname=TEST_PAIR_$l + # Is this POSIX? But even ash supports it. + eval lname=$`echo $lname` + if test "x$lname" != x; then + src= + for c in $lname; do + cp -f $srcdir/$l-s.$c $l-big-64.$c + for i in 1 2 3 4 5 6; do + cat $l-big-64.$c $l-big-64.$c $l-big-64.$c $l-big-64.$c >test-64.tmp + mv -f test-64.tmp $l-big-64.$c + done + if test -z "$src"; then + src=$c + else + tgt=$c + fi + done + # The test itself. + DIE_THIS=0 + $ENCA -L $l -x $tgt $l-big-64.$src || DIE_THIS=1 + diff $l-big-64.$src $l-big-64.$tgt >/dev/null || DIE_THIS=1 + if test "$DIE_THIS" = "1"; then + echo "Conversion $l: $src -> $tgt failed." + DIE=1 + else + rm -f $l-big-64.$src $l-big-64.$tgt + fi + fi +done +. $srcdir/finish.sh + diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-convert-filter.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-convert-filter.sh new file mode 100755 index 0000000..0954b83 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-convert-filter.sh @@ -0,0 +1,37 @@ +#! /bin/sh +# Purpose: test whether built-in converter works on stdin (see test-convert-64 +# for details). +. $srcdir/setup.sh +for l in $TEST_LANGUAGES; do + # Create big files form the fragments. + lname=TEST_PAIR_$l + # Is this POSIX? But even ash supports it. + eval lname=$`echo $lname` + if test "x$lname" != x; then + src= + for c in $lname; do + cp -f $srcdir/$l-s.$c $l-big.$c + for i in 1 2 3 4 5 6; do + cat $l-big.$c $l-big.$c $l-big.$c $l-big.$c >test.tmp + mv -f test.tmp $l-big.$c + done + if test -z "$src"; then + src=$c + else + tgt=$c + fi + done + # The test itself. + DIE_THIS=0 + $ENCA -L $l -x $tgt <$l-big.$src >$THISTEST.tmp || DIE_THIS=1 + diff $THISTEST.tmp $l-big.$tgt >/dev/null || DIE_THIS=1 + if test "$DIE_THIS" = "1"; then + echo "Conversion $l: $src -> $tgt failed." + DIE=1 + else + rm -f $l-big.$src $l-big.$tgt $THISTEST.tmp + fi + fi +done +. $srcdir/finish.sh + diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-convlist.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-convlist.sh new file mode 100755 index 0000000..3e2d267 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-convlist.sh @@ -0,0 +1,18 @@ +#! /bin/sh +# Purpose: check whether --list converters and --version are consistent +. $srcdir/setup.sh +rm -f $TESTNAME.expected 2>/dev/null +$ENCA --list converters | grep "^librecode$" >>$TESTNAME.expected +if $ENCA --version | grep " +librecode-interface " >/dev/null; then + echo librecode >>$TESTNAME.actual +fi +$ENCA --list converters | grep "^iconv$" >>$TESTNAME.expected +if $ENCA --version | grep " +iconv-interface " >/dev/null; then + echo iconv >>$TESTNAME.actual +fi +$ENCA --list converters | grep "^extern$" >>$TESTNAME.expected +if $ENCA --version | grep " +external-converter " >/dev/null; then + echo extern >>$TESTNAME.actual +fi +. $srcdir/finish.sh +rm -f $TESTNAME.expected 2>/dev/null diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-default-cs.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-default-cs.sh new file mode 100755 index 0000000..2373f4a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-default-cs.sh @@ -0,0 +1,32 @@ +#! /bin/sh +# Purpose: test whether DEFAULT_CHARSET works. +. $srcdir/setup.sh +for l in $TEST_LANGUAGES; do + lname=TEST_PAIR_$l + # Is this POSIX? But even ash supports it. + eval lname=$`echo $lname` + if test "x$lname" != x; then + src= + for c in $lname; do + if test -z "$src"; then + src=$c + else + tgt=$c + fi + done + cat $srcdir/$l-s.$src >$TESTNAME-$l.tmp + DEFAULT_CHARSET=$tgt + # This is necessary when $ENCA is in fact a libtool script + export DEFAULT_CHARSET + DIE_THIS=0 + $ENCA -c -L $l $TESTNAME-$l.tmp || DIE=1 + diff $TESTNAME-$l.tmp $srcdir/$l-s.$tgt >/dev/null || DIE_THIS=1 + if test "$DIE_THIS" = "1"; then + echo "Conversion $l: $src -> $tgt failed." + DIE=1 + else + rm -f $TESTNAME-$l.tmp + fi + fi +done +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-empty.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-empty.sh new file mode 100755 index 0000000..8229a3d --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-empty.sh @@ -0,0 +1,9 @@ +#! /bin/sh +# Purpose: check how enca reacts on various incorrect inputs +. $srcdir/setup.sh +# These should succeede +$ENCA -L cs -x koi8cs2 /dev/null 2>&1 || DIE=1 +$ENCA -L ru -x anoldoak /dev/null 2>&1 || DIE=1 +# These should fail. +$ENCA -L pl /dev/null 2>&1 && DIE=1 +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-errors.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-errors.sh new file mode 100755 index 0000000..0edac86 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-errors.sh @@ -0,0 +1,26 @@ +#! /bin/sh +# Purpose: check how enca reacts on various incorrect inputs +. $srcdir/setup.sh +TEST_TEXT=$srcdir/cs-s.iso88592 +LC_CTYPE= +LC_COLLATE= +LC_MESSAGES= +LC_ALL= +LANG= +# This is necessary when $ENCA is in fact a libtool script +export LC_CTYPE LC_ALL LC_COLLATE LC_MESSAGES LANG +# These should succeede +# If they set some options, they should keep defaults. +$ENCA -L cs --name puskin >/dev/null 2>/dev/null <$TEST_TEXT || DIE=1 +$ENCA -L cs -C gogol >/dev/null 2>/dev/null <$TEST_TEXT || DIE=1 +# These should fail. +$ENCA -L bulgakov >/dev/null 2>/dev/null <$TEST_TEXT && DIE=1 +$ENCA -L none dostojevskij 2>/dev/null && DIE=1 +touch zombie +chmod 000 zombie +$ENCA -L none zombie 2>/dev/null && DIE=1 +chmod 700 zombie +rm -f zombie 2>/dev/null +# Test no converter +$ENCA -C none -L cs -x utf-8 <$TEST_TEXT && DIE=1 +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-external.expected b/wlx/wayland_qt_base/build/enca-1.19/test/test-external.expected new file mode 100644 index 0000000..d5486f3 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-external.expected @@ -0,0 +1 @@ +ISO-8859-2/LF CP1250 test-external.tmp diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-external.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-external.sh new file mode 100755 index 0000000..7534865 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-external.sh @@ -0,0 +1,20 @@ +#! /bin/sh +# Purpose: test whether external converter is executed with correct arguments, +# whether enca fails when it cannot find it iff there's something to convert, +# whether converter errors are correctly propagated +. $srcdir/setup.sh +if $ENCA --list converters | grep '^extern$' >/dev/null; then + TEST_TEXT=$srcdir/cs-s.iso88592 + cat $TEST_TEXT >$TESTNAME.tmp + OPTS="-L cs -x 1250" + $ENCA -E $srcdir/dummy-converter.sh $OPTS -C extern $TESTNAME.tmp >>$TESTNAME.actual || DIE=1 + $ENCA -E $srcdir/dummy-converter.sh $OPTS -C extern <$TESTNAME.tmp >>$TESTNAME.actual > /dev/null || DIE=1 + $ENCA -E tolstoj-mumble-mumble $OPTS -C built-in <$TEST_TEXT >/dev/null || DIE=1 + $ENCA -E tolstoj-mumble-mumble $OPTS -C extern <$TEST_TEXT >/dev/null 2>/dev/null && DIE=1 + $ENCA -E '' $OPTS -C extern <$TEST_TEXT >/dev/null 2>/dev/null && DIE=1 + $ENCA -E $srcdir/failing-converter.sh $OPTS -C extern $TESTNAME.tmp 2>/dev/null && DIE=1 + $ENCA -E $srcdir/failing-converter2.sh $OPTS -C extern $TESTNAME.tmp 2>/dev/null && DIE=1 +else + E77=1 +fi +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-short.expected b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-short.expected new file mode 100644 index 0000000..4de1a58 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-short.expected @@ -0,0 +1,117 @@ +be-s.cp1251: CP1251 +be-s.ibm855: IBM855 +be-s.ibm866: IBM866 +be-s.iso88595: ISO-8859-5 +be-s.koi8uni: KOI8-UNI +be-s.maccyr: maccyr +be-s.utf8: UTF-8/CRLF +bg-s.cp1251: CP1251 +bg-s.cp1251.qp: CP1251/LF/qp +bg-s.ecma113: ECMA-113 +bg-s.ibm855: IBM855 +bg-s.iso88595: ISO-8859-5 +bg-s.maccyr: maccyr +bg-s.utf8: UTF-8/CRLF +cs-s.ambi: CP1250 +cs-s.cork: CORK/LF +cs-s.cp1250: CP1250 +cs-s.ibm852: IBM852 +cs-s.ibm852.qp: IBM852/qp +cs-s.iso88592: ISO-8859-2 +cs-s.keybcs2: KEYBCS2 +cs-s.koi8cs2: KOI-8_CS_2 +cs-s.macce: macce +cs-s.tex: TeX +cs-s.utf8: UTF-8/CRLF +et-s.baltic: baltic +et-s.cp1257: CP1257 +et-s.ibm775: IBM775 +et-s.iso885913: ISO-8859-13 +et-s.iso88594: ISO-8859-4 +et-s.iso88594.qp: ISO-8859-4/qp +et-s.macce: macce +et-s.utf8: UTF-8/CRLF +hr-s.cork: CORK/LF +hr-s.cp1250: CP1250 +hr-s.ibm852: IBM852 +hr-s.iso88592: ISO-8859-2 +hr-s.iso88592.qp: ISO-8859-2/qp +hr-s.macce: macce +hr-s.utf8: UTF-8/CRLF +hu-s.cork: CORK/LF +hu-s.cp1250: CP1250 +hu-s.ibm852: IBM852 +hu-s.iso88592: ISO-8859-2 +hu-s.macce: macce +hu-s.macce.qp: macce/LF/qp +hu-s.utf8: UTF-8/CRLF +lt-s.baltic: baltic +lt-s.cp1257: CP1257 +lt-s.ibm775: IBM775 +lt-s.iso885913: ISO-8859-13 +lt-s.iso88594: ISO-8859-4 +lt-s.macce: macce +lt-s.utf8: UTF-8/CRLF +lv-s.baltic: baltic +lv-s.cp1257: CP1257 +lv-s.ibm775: IBM775 +lv-s.iso885913: ISO-8859-13 +lv-s.iso885913.qp: ISO-8859-13/qp +lv-s.iso88594: ISO-8859-4 +lv-s.macce: macce +lv-s.utf8: UTF-8/CRLF +pl-s.baltic: baltic/CRLF +pl-s.baltic.qp: baltic/CRLF/qp +pl-s.cork: CORK/LF +pl-s.cp1250: CP1250 +pl-s.ibm852: IBM852 +pl-s.iso885913: ISO-8859-13 +pl-s.iso885916: ISO-8859-16 +pl-s.iso88592: ISO-8859-2 +pl-s.utf8: UTF-8/CRLF +ru-s.cp1251: CP1251 +ru-s.cp866: IBM866 +ru-s.iso88595: ISO-8859-5 +ru-s.koi8r: KOI8-R +ru-s.maccyr: maccyr +ru-s.maccyr.qp: maccyr/qp +ru-s.utf8: UTF-8/CRLF +sk-s.cork: CORK/LF +sk-s.cp1250: CP1250 +sk-s.cp1250.qp: CP1250/qp +sk-s.ibm852: IBM852 +sk-s.iso88592: ISO-8859-2 +sk-s.keybcs2: KEYBCS2 +sk-s.koi8cs2: KOI-8_CS_2 +sk-s.macce: macce +sk-s.utf8: UTF-8/CRLF +sl-s.cork: CORK/LF +sl-s.cp1250: CP1250 +sl-s.ibm852: IBM852 +sl-s.ibm852.qp: IBM852/LF/qp +sl-s.iso88592: ISO-8859-2 +sl-s.macce: macce +sl-s.utf8: UTF-8 +uk-s.cp1125: CP1125 +uk-s.cp1251: CP1251 +uk-s.ibm855: IBM855 +uk-s.iso88595: ISO-8859-5 +uk-s.koi8u: KOI8-U +uk-s.maccyr: maccyr +uk-s.utf8: UTF-8/CRLF +zh-s.big5: BIG5 +zh-s.gbk: GBK +zh-s.hz: HZ +zh-s.utf8: UTF-8 +none-s.ucs2: UCS-2/LF +none-s.ucs2be.bom: UCS-2/LF +none-s.ucs2be.bom.crlf: UCS-2/CRLF +none-s.ucs2be.bom.noeol: UCS-2/LF +none-s.ucs2le: UCS-2/LF/21 +none-s.ucs2le.bom: UCS-2/LF/21 +none-s.ucs2le.qp: UCS-2/LF/21/qp +none-s.ucs4: UCS-4/LF +none-s.ucs4le: UCS-4/LF/4321 +none-s.utf7: UTF-7/LF +none-s.utf8: UTF-8 +none-s.utf8.bom: UTF-8 diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-short.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-short.sh new file mode 100755 index 0000000..22d7771 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-short.sh @@ -0,0 +1,7 @@ +#! /bin/sh +# Purpose: test charset recognition on tiny text fragments. +. $srcdir/setup.sh +for l in $ALL_TEST_LANGUAGES; do + $ENCA -p -e -L $l $srcdir/$l-s.* | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +done +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-stdin.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-stdin.sh new file mode 100755 index 0000000..b3690df --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-stdin.sh @@ -0,0 +1,15 @@ +#! /bin/sh +# Purpose: test charset recognition of samples coming from stdin. +. $srcdir/setup.sh +DATATESTNAME=test-guess-short +rm -f $TESTNAME.expected 2>/dev/null +ln -s $srcdir/$DATATESTNAME.expected $TESTNAME.expected +for l in $ALL_TEST_LANGUAGES; do + for f in $srcdir/$l-s.*; do + sf=`echo $f | sed -e "s#^$srcdir/##"` + x="$sf: "`$ENCA -P -e -L $l <$f` || DIE=1 + echo "$x" >>$TESTNAME.actual + done +done +. $srcdir/finish.sh +rm -f $TESTNAME.expected 2>/dev/null diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-unknown.expected b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-unknown.expected new file mode 100644 index 0000000..6abfba0 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-unknown.expected @@ -0,0 +1,2 @@ +unknown +unknown diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-unknown.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-unknown.sh new file mode 100755 index 0000000..8b26b09 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-unknown.sh @@ -0,0 +1,6 @@ +#! /bin/sh +# Purpose: test charset recognition for binary +. $srcdir/setup.sh +$ENCA -P -e -L none < $srcdir/binary >>$TESTNAME.actual && DIE=1 +$ENCA -P -e -L none $srcdir/binary >>$TESTNAME.actual && DIE=1 +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-utf8.expected b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-utf8.expected new file mode 100644 index 0000000..55ef501 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-utf8.expected @@ -0,0 +1,100 @@ +be-utf8.ibm855: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from IBM855 +be-utf8.iso88595: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from ISO-8859-5 +bg-utf8.bin: Universal transformation format 8 bits; UTF-8 + Surrounded by/intermixed with non-text data +bg-utf8.cp1251: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from CP1251 +bg-utf8.ecma113: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from ECMA-113 +bg-utf8.ibm855: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from IBM855 +bg-utf8.iso88595: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from ISO-8859-5 +bg-utf8.maccyr: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from maccyr +cs-utf8.bin: Universal transformation format 8 bits; UTF-8 + Surrounded by/intermixed with non-text data +cs-utf8.cork: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from CORK +cs-utf8.ibm852: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from one of: IBM852 KEYBCS2 +cs-utf8.iso88592: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from one of: ISO-8859-2 CP1250 +et-utf8.bin: Universal transformation format 8 bits; UTF-8 + Surrounded by/intermixed with non-text data +et-utf8.ibm775: Universal transformation format 8 bits; UTF-8 + CRLF line terminators + Doubly-encoded to UTF-8 from IBM775 +et-utf8.iso885913: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from one of: CP1257 ISO-8859-13 baltic +et-utf8.iso88594: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from ISO-8859-4 +hr-utf8.cp1250: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from one of: CP1250 ISO-8859-2 +hr-utf8.ibm852: Universal transformation format 8 bits; UTF-8 + CRLF line terminators + Doubly-encoded to UTF-8 from IBM852 +hu-utf8.cork: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from CORK +hu-utf8.cp1250: Universal transformation format 8 bits; UTF-8 + CRLF line terminators + Doubly-encoded to UTF-8 from one of: ISO-8859-2 CP1250 +hu-utf8.ibm852: Universal transformation format 8 bits; UTF-8 + CRLF line terminators + Doubly-encoded to UTF-8 from IBM852 +hu-utf8.macce: Universal transformation format 8 bits; UTF-8 + CR line terminators + Doubly-encoded to UTF-8 from macce +lt-utf8.ibm775: Universal transformation format 8 bits; UTF-8 + CRLF line terminators + Doubly-encoded to UTF-8 from IBM775 +lt-utf8.iso88594: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from one of: CP1257 ISO-8859-4 ISO-8859-13 baltic +lt-utf8.macce: Universal transformation format 8 bits; UTF-8 + CRLF line terminators + Doubly-encoded to UTF-8 from macce +lv-utf8.ibm775: Universal transformation format 8 bits; UTF-8 + CRLF line terminators + Doubly-encoded to UTF-8 from IBM775 +lv-utf8.iso88594: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from one of: CP1257 ISO-8859-4 ISO-8859-13 baltic +lv-utf8.macce: Universal transformation format 8 bits; UTF-8 + CRLF line terminators + Doubly-encoded to UTF-8 from macce +pl-utf8.baltic: Universal transformation format 8 bits; UTF-8 + CRLF line terminators + Doubly-encoded to UTF-8 from one of: ISO-8859-13 baltic CORK +pl-utf8.ibm852: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from IBM852 +pl-utf8.iso885916: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from ISO-8859-16 +ru-utf8.cp866: Universal transformation format 8 bits; UTF-8 + CRLF line terminators + Doubly-encoded to UTF-8 from IBM866 +ru-utf8.koi8r: Universal transformation format 8 bits; UTF-8 + CRLF line terminators + Doubly-encoded to UTF-8 from KOI8-R +ru-utf8.maccyr: Universal transformation format 8 bits; UTF-8 + CR line terminators + Doubly-encoded to UTF-8 from maccyr +sk-utf8.cp1250: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from one of: CP1250 ISO-8859-2 +sk-utf8.keybcs2: Universal transformation format 8 bits; UTF-8 + CRLF line terminators + Doubly-encoded to UTF-8 from one of: IBM852 KEYBCS2 +sl-utf8.cork: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from CORK +sl-utf8.ibm852: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from IBM852 +sl-utf8.iso88592: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from one of: ISO-8859-2 CP1250 +sl-utf8.macce: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from macce +uk-utf8.bin: Universal transformation format 8 bits; UTF-8 + Surrounded by/intermixed with non-text data +uk-utf8.cp1251: Universal transformation format 8 bits; UTF-8 + Doubly-encoded to UTF-8 from CP1251 +none-utf8.messy: Universal transformation format 8 bits; UTF-8 + Surrounded by/intermixed with non-text data diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-utf8.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-utf8.sh new file mode 100755 index 0000000..a6591f6 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-guess-utf8.sh @@ -0,0 +1,10 @@ +#! /bin/sh +# Purpose: various UTF-8 variant recognition. +. $srcdir/setup.sh +for l in $ALL_TEST_LANGUAGES; do + x=`ls $srcdir/$l-utf8.* 2>/dev/null` + if test "x$x" != x; then + $ENCA -p -f -L $l $srcdir/$l-utf8.* | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 + fi +done +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-iconv.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-iconv.sh new file mode 100755 index 0000000..02015fd --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-iconv.sh @@ -0,0 +1,33 @@ +#! /bin/sh +# Purpose: test whether libiconv interface works. +# FIXME: this may fail when the interface works but libiconv is broken! +. $srcdir/setup.sh +if $ENCA --list converters | grep '^iconv$' >/dev/null; then + TEST_TEXT=$srcdir/cs-s.iso88592 + OPTS="-L cs -C iconv" + # File + cp $TEST_TEXT $TESTNAME.actual + $ENCA $OPTS -x UTF-8 $TESTNAME.actual || DIE=1 + $ENCA -L none $TESTNAME.actual | grep UTF-8 >/dev/null || DIE=1 + $ENCA $OPTS -x ISO-8859-2 $TESTNAME.actual || DIE=1 + diff $TEST_TEXT $TESTNAME.actual || DIE=1 + # Pipe + cp $TEST_TEXT $TESTNAME.actual + $ENCA $OPTS -x UTF-8 <$TESTNAME.actual >$TESTNAME.tmp || DIE=1 + $ENCA -L none $TESTNAME.tmp | grep UTF-8 >/dev/null || DIE=1 + $ENCA $OPTS -x ISO-8859-2 <$TESTNAME.tmp >$TESTNAME.actual || DIE=1 + diff $TEST_TEXT $TESTNAME.actual || DIE=1 + # Failures + cp $TEST_TEXT $TESTNAME.actual + $ENCA $OPTS -x solzenicyn $TESTNAME.actual 2>/dev/null && DIE=1 + diff $TEST_TEXT $TESTNAME.actual || DIE=1 + # One copy doesn't contain enough characters to overweight the noise + cat $TESTNAME.tmp $TESTNAME.tmp $TESTNAME.tmp >$TESTNAME.actual + echo '' >>$TESTNAME.actual + cat $TESTNAME.actual >$TESTNAME.tmp + $ENCA $OPTS -x ISO-8859-2 $TESTNAME.tmp 2>/dev/null && DIE=1 + diff $TESTNAME.tmp $TESTNAME.actual || DIE=1 +else + E77=1 +fi +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-lists.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-lists.sh new file mode 100755 index 0000000..5d9cbb4 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-lists.sh @@ -0,0 +1,8 @@ +#! /bin/sh +# Purpose: check whether enca can list all the lists. It used to crash ;-) +. $srcdir/setup.sh +$ENCA --list lists >$TESTNAME.actual || DIE=1 +for l in `$ENCA --list lists`; do + $ENCA --list $l >>$TESTNAME.actual || DIE=1 +done +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-locale.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-locale.sh new file mode 100755 index 0000000..615eb14 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-locale.sh @@ -0,0 +1,22 @@ +#! /bin/sh +# Purpose: test whether libiconv interface works. +# FIXME: this may fail when the interface works but libiconv is broken! +. $srcdir/setup.sh +if $ENCA --version | grep ' +language-detection ' >/dev/null; then + export LC_CTYPE=cs_CZ + TEST_TEXT=$srcdir/cs-s.iso88592 + OPTS="" + if locale | grep -q '^LC_CTYPE=cs_CZx$' ; then + cp $TEST_TEXT $TESTNAME.actual + $ENCA $OPTS -x UTF-8 $TESTNAME.actual || DIE=1 + fi + # Failures + export LC_CTYPE=INVALID + export LC_COLLATE=INVALID + export LC_MESSAGES=INVALID + cp $TEST_TEXT $TESTNAME.actual + $ENCA $OPTS -x UTF-8 $TESTNAME.actual 2>/dev/null && DIE=1 +else + E77=1 +fi +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-long-texts.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-long-texts.sh new file mode 100755 index 0000000..59fcbdd --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-long-texts.sh @@ -0,0 +1,12 @@ +#! /bin/sh +# Purpose: check whether enca correctly prints license, help, version. +. $srcdir/setup.sh +$ENCA --version >$TESTNAME.actual || DIE=1 +version=`grep '^AC_INIT' $top_srcdir/configure.ac | sed -e 's/AC_INIT(Enca, \([0-9.]*\).*/\1/' -e 's/\./\\./'` +grep '^enca '$version $TESTNAME.actual >/dev/null || DIE=1 +$ENCA --license >$TESTNAME.actual || DIE=1 +diff $top_srcdir/COPYING $TESTNAME.actual || DIE=1 +$ENCA --help >$TESTNAME.actual || DIE=1 +diff $top_builddir/src/HELP $TESTNAME.actual || DIE=1 +grep '^Report bugs to .*http.*' $TESTNAME.actual >/dev/null || DIE=1 +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-pP.expected b/wlx/wayland_qt_base/build/enca-1.19/test/test-pP.expected new file mode 100644 index 0000000..73a1aa6 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-pP.expected @@ -0,0 +1,26 @@ +ISO-8859-2 +AAA +cs-s.iso88592: ISO-8859-2 +BBB +ISO-8859-2 +CCC +ISO-8859-2 +DDD +STDIN: ISO-8859-2 +EEE +ISO-8859-2 +FFF +ISO-8859-2 +GGG +STDIN: ISO-8859-2 +HHH +ISO-8859-2 +III +cs-s.iso88592: ISO-8859-2 +cs-s.iso88592: ISO-8859-2 +JJJ +cs-s.iso88592: ISO-8859-2 +cs-s.iso88592: ISO-8859-2 +KKK +ISO-8859-2 +ISO-8859-2 diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-pP.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-pP.sh new file mode 100755 index 0000000..56e6c6c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-pP.sh @@ -0,0 +1,29 @@ +#! /bin/sh +# Purpose: test whether -p, -P and default file prefixing works +. $srcdir/setup.sh +TEST_TEXT=$srcdir/cs-s.iso88592 +OPTS="-e -L cs" +$ENCA $OPTS $TEST_TEXT | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +echo AAA >>$TESTNAME.actual +$ENCA $OPTS -p $TEST_TEXT | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +echo BBB >>$TESTNAME.actual +$ENCA $OPTS -P $TEST_TEXT | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +echo CCC >>$TESTNAME.actual +$ENCA $OPTS <$TEST_TEXT | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +echo DDD >>$TESTNAME.actual +$ENCA $OPTS -p <$TEST_TEXT | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +echo EEE >>$TESTNAME.actual +$ENCA $OPTS -P <$TEST_TEXT | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +echo FFF >>$TESTNAME.actual +$ENCA $OPTS - <$TEST_TEXT | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +echo GGG >>$TESTNAME.actual +$ENCA $OPTS -p - <$TEST_TEXT | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +echo HHH >>$TESTNAME.actual +$ENCA $OPTS -P - <$TEST_TEXT | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +echo III >>$TESTNAME.actual +$ENCA $OPTS $TEST_TEXT $TEST_TEXT | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +echo JJJ >>$TESTNAME.actual +$ENCA $OPTS -p $TEST_TEXT $TEST_TEXT | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +echo KKK >>$TESTNAME.actual +$ENCA $OPTS -P $TEST_TEXT $TEST_TEXT | sed -e "s#^$srcdir/##" >>$TESTNAME.actual || DIE=1 +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-recode.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-recode.sh new file mode 100755 index 0000000..35f8412 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-recode.sh @@ -0,0 +1,37 @@ +#! /bin/sh +# Purpose: test whether librecode interface works. +# FIXME: this may fail when the interface works but librecode is broken! +. $srcdir/setup.sh +if $ENCA --list converters | grep '^librecode$' >/dev/null; then + TEST_TEXT=$srcdir/cs-s.iso88592 + OPTS="-L cs -C librecode" + # File + cp $TEST_TEXT $TESTNAME.actual + $ENCA $OPTS -x UTF-8 $TESTNAME.actual || DIE=1 + # Convert more files to hit recode request cache + $ENCA $OPTS -x UTF-8 $TESTNAME.actual $TESTNAME.actual $TESTNAME.actual $TESTNAME.actual || DIE=1 + $ENCA -L none $TESTNAME.actual | grep UTF-8 >/dev/null || DIE=1 + $ENCA $OPTS -x ISO-8859-2 $TESTNAME.actual || DIE=1 + diff $TEST_TEXT $TESTNAME.actual || DIE=1 + # Pipe + cp $TEST_TEXT $TESTNAME.actual + $ENCA $OPTS -x UTF-8 <$TESTNAME.actual >$TESTNAME.tmp || DIE=1 + $ENCA -L none $TESTNAME.tmp | grep UTF-8 >/dev/null || DIE=1 + $ENCA $OPTS -x ISO-8859-2 <$TESTNAME.tmp >$TESTNAME.actual || DIE=1 + diff $TEST_TEXT $TESTNAME.actual || DIE=1 + # Failures + cp $TEST_TEXT $TESTNAME.actual + $ENCA $OPTS -x solzenicyn $TESTNAME.actual 2>/dev/null && DIE=1 + diff $TEST_TEXT $TESTNAME.actual || DIE=1 + # TODO: this is not enough for recode to fail, it just wipes out the + # offending characters + # One copy doesn't contain enough characters to overweight the noise + #cat $TESTNAME.tmp $TESTNAME.tmp $TESTNAME.tmp >$TESTNAME.actual + #echo '' >>$TESTNAME.actual + #cat $TESTNAME.actual >$TESTNAME.tmp + #$ENCA $OPTS -x ISO-8859-2 $TESTNAME.tmp && DIE=1 + #diff $TESTNAME.tmp $TESTNAME.actual || DIE=1 +else + E77=1 +fi +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-simtable.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-simtable.sh new file mode 100755 index 0000000..2a9c7ec --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-simtable.sh @@ -0,0 +1,5 @@ +#! /bin/sh +# Purpose: check simtable rendering +. $srcdir/setup.sh +$builddir/simtable || DIE=1 +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/test-tex.sh b/wlx/wayland_qt_base/build/enca-1.19/test/test-tex.sh new file mode 100755 index 0000000..8274922 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/test-tex.sh @@ -0,0 +1,16 @@ +#! /bin/sh +# Purpose: test whether TeX decoding works. +. $srcdir/setup.sh +if $ENCA --list converters | grep '^librecode$' >/dev/null; then + TEST_TEXT=$srcdir/cs-s.tex + OPTS="-L cs -C recode" + # File + cp $TEST_TEXT $TESTNAME.actual + $ENCA $OPTS -x UTF-8 $TESTNAME.actual || DIE=1 + $ENCA -L none $TESTNAME.actual | grep UTF-8 >/dev/null || DIE=1 + $ENCA $OPTS -x TEX $TESTNAME.actual || DIE=1 + diff $TEST_TEXT $TESTNAME.actual || DIE=1 +else + E77=1 +fi +. $srcdir/finish.sh diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.cp1125 b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.cp1125 new file mode 100644 index 0000000..77a89ea --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.cp1125 @@ -0,0 +1 @@ + ⥬ GNU/Linux: ॡ ஫ root. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.cp1251 b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.cp1251 new file mode 100644 index 0000000..8aa2306 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.cp1251 @@ -0,0 +1 @@ + GNU/Linux: root. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.ibm855 b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.ibm855 new file mode 100644 index 0000000..cc89095 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.ibm855 @@ -0,0 +1 @@ + Ԡ з뷽 Ҩ بƷ ֌ ҷ GNU/Linux: ᨢ ؠ root. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.iso88595 b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.iso88595 new file mode 100644 index 0000000..7803189 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.iso88595 @@ -0,0 +1 @@ + GNU/Linux: root. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.koi8u b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.koi8u new file mode 100644 index 0000000..00768fd --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.koi8u @@ -0,0 +1 @@ + ¦ ϧ GNU/Linux: root. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.maccyr b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.maccyr new file mode 100644 index 0000000..ca267ea --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.maccyr @@ -0,0 +1 @@ + GNU/Linux: root. \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.utf8 new file mode 100644 index 0000000..34c1431 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/uk-s.utf8 @@ -0,0 +1 @@ +Це найбільш важливий момент для безпеки вашої системи GNU/Linux: вам треба ввести пароль root. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/uk-utf8.bin b/wlx/wayland_qt_base/build/enca-1.19/test/uk-utf8.bin new file mode 100644 index 0000000..c3551ce Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/test/uk-utf8.bin differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/uk-utf8.cp1251 b/wlx/wayland_qt_base/build/enca-1.19/test/uk-utf8.cp1251 new file mode 100644 index 0000000..f732ffe --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/uk-utf8.cp1251 @@ -0,0 +1 @@ +Це найбільш важливий момент для безпеки вашої системи GNU/Linux: вам треба ввести пароль root. diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/zh-s.big5 b/wlx/wayland_qt_base/build/enca-1.19/test/zh-s.big5 new file mode 100644 index 0000000..b5bc13e --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/zh-s.big5 @@ -0,0 +1,2 @@ +XɦHsݫCѡCѤWcAiO~CڱkhASãӥɦtABӴHC_R˲MvAbHI +শաACAӵLvCAƪVOɶHHdwXA릳ʡAƥjC@H[Ad̦@`SC \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/zh-s.gbk b/wlx/wayland_qt_base/build/enca-1.19/test/zh-s.gbk new file mode 100644 index 0000000..ded61d3 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/zh-s.gbk @@ -0,0 +1,2 @@ +¼ʱУѾ졣֪ϹڣϦǺꡣ˷ȥֿ¥ߴʤŪӰ˼䣡 +ת󣬵粻ߡӦкޣ³ʱԲбϣԲȱ¹ȫԸ˳ãǧﹲ濾ꡣ \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/zh-s.hz b/wlx/wayland_qt_base/build/enca-1.19/test/zh-s.hz new file mode 100644 index 0000000..8c2af7d --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/zh-s.hz @@ -0,0 +1,2 @@ +~{CwTB<8J1SP#?0Q>FNJG`Ll!#2;V*LlIO9,cZ#,=qO&JG:NDj!#NRS{3K7g9iH%#,SV?VGmB%SqSn#,8_4&2;J$:.!#FpNhE*GeS0#,:NKFTZHKC#,G'@o92f?>j!#~} \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/test/zh-s.utf8 b/wlx/wayland_qt_base/build/enca-1.19/test/zh-s.utf8 new file mode 100644 index 0000000..bb36c11 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/test/zh-s.utf8 @@ -0,0 +1,2 @@ +明月几时有?把酒问青天。不知天上宫阙,今夕是何年。我欲乘风归去,又恐琼楼玉宇,高处不胜寒。起舞弄清影,何似在人间! +转朱阁,低绮户,照无眠。不应有恨,何事长向别时圆?人有悲欢离合,月有阴晴圆缺,此事古难全。但愿人长久,千里共婵娟。 \ No newline at end of file diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/.deps/make_hash.Po b/wlx/wayland_qt_base/build/enca-1.19/tools/.deps/make_hash.Po new file mode 100644 index 0000000..896aeb1 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/.deps/make_hash.Po @@ -0,0 +1,111 @@ +make_hash.o: make_hash.c /usr/include/stdc-predef.h ../config.h \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ + /usr/include/sys/types.h /usr/include/bits/types.h \ + /usr/include/bits/typesizes.h /usr/include/bits/time64.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/bits/endian.h /usr/include/bits/endianness.h \ + /usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \ + /usr/include/sys/select.h /usr/include/bits/select.h \ + /usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/bits/stdlib-bsearch.h /usr/include/bits/types/once_flag.h \ + /usr/include/bits/stdlib-float.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h /usr/include/bits/stdio.h \ + /usr/include/string.h /usr/include/strings.h /usr/include/memory.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/bits/getopt_posix.h /usr/include/bits/getopt_core.h \ + /usr/include/bits/unistd_ext.h /usr/include/linux/close_range.h \ + /usr/include/ctype.h +/usr/include/stdc-predef.h: +../config.h: +/usr/include/stdlib.h: +/usr/include/bits/libc-header-start.h: +/usr/include/features.h: +/usr/include/features-time64.h: +/usr/include/bits/wordsize.h: +/usr/include/bits/timesize.h: +/usr/include/sys/cdefs.h: +/usr/include/bits/long-double.h: +/usr/include/gnu/stubs.h: +/usr/include/gnu/stubs-64.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h: +/usr/include/bits/waitflags.h: +/usr/include/bits/waitstatus.h: +/usr/include/bits/floatn.h: +/usr/include/bits/floatn-common.h: +/usr/include/bits/types/locale_t.h: +/usr/include/bits/types/__locale_t.h: +/usr/include/sys/types.h: +/usr/include/bits/types.h: +/usr/include/bits/typesizes.h: +/usr/include/bits/time64.h: +/usr/include/bits/types/clock_t.h: +/usr/include/bits/types/clockid_t.h: +/usr/include/bits/types/time_t.h: +/usr/include/bits/types/timer_t.h: +/usr/include/bits/stdint-intn.h: +/usr/include/endian.h: +/usr/include/bits/endian.h: +/usr/include/bits/endianness.h: +/usr/include/bits/byteswap.h: +/usr/include/bits/uintn-identity.h: +/usr/include/sys/select.h: +/usr/include/bits/select.h: +/usr/include/bits/types/sigset_t.h: +/usr/include/bits/types/__sigset_t.h: +/usr/include/bits/types/struct_timeval.h: +/usr/include/bits/types/struct_timespec.h: +/usr/include/bits/pthreadtypes.h: +/usr/include/bits/thread-shared-types.h: +/usr/include/bits/pthreadtypes-arch.h: +/usr/include/bits/atomic_wide_counter.h: +/usr/include/bits/struct_mutex.h: +/usr/include/bits/struct_rwlock.h: +/usr/include/alloca.h: +/usr/include/bits/stdlib-bsearch.h: +/usr/include/bits/types/once_flag.h: +/usr/include/bits/stdlib-float.h: +/usr/include/stdio.h: +/usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h: +/usr/include/bits/types/__fpos_t.h: +/usr/include/bits/types/__mbstate_t.h: +/usr/include/bits/types/__fpos64_t.h: +/usr/include/bits/types/__FILE.h: +/usr/include/bits/types/FILE.h: +/usr/include/bits/types/struct_FILE.h: +/usr/include/bits/types/cookie_io_functions_t.h: +/usr/include/bits/stdio_lim.h: +/usr/include/bits/stdio.h: +/usr/include/string.h: +/usr/include/strings.h: +/usr/include/memory.h: +/usr/include/unistd.h: +/usr/include/bits/posix_opt.h: +/usr/include/bits/environments.h: +/usr/include/bits/confname.h: +/usr/include/bits/getopt_posix.h: +/usr/include/bits/getopt_core.h: +/usr/include/bits/unistd_ext.h: +/usr/include/linux/close_range.h: +/usr/include/ctype.h: diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/ACCEPTED_CHARS.t b/wlx/wayland_qt_base/build/enca-1.19/tools/ACCEPTED_CHARS.t new file mode 100644 index 0000000..eed59a9 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/ACCEPTED_CHARS.t @@ -0,0 +1 @@ +"abcdefghijklnmopqrstuvwxyzABCDEFGHIJKLNMOPQRSTUVWXYZ0123456789-_.:/" diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/BASE64.ti b/wlx/wayland_qt_base/build/enca-1.19/tools/BASE64.ti new file mode 100644 index 0000000..ab640da --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/BASE64.ti @@ -0,0 +1 @@ +"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_CP1125.t b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_CP1125.t new file mode 100644 index 0000000..54d32e8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_CP1125.t @@ -0,0 +1,5 @@ +179, 180, 181, 182, 183, 184, 185, 186, +187, 188, 189, 190, 191, 192, 193, 194, +195, 197, 198, 199, 200, 201, 202, 203, +204, 206, 207, 208, 209, 210, 211, 212, +213, 214, 215, 216, 217, 218 diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_IBM852.t b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_IBM852.t new file mode 100644 index 0000000..2c278eb --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_IBM852.t @@ -0,0 +1,3 @@ +179, 180, 185, 186, 187, 188, 191, 192, +193, 194, 195, 197, 200, 201, 202, 203, +204, 206, 217, 218 diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KEYBCS2.t b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KEYBCS2.t new file mode 100644 index 0000000..54d32e8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KEYBCS2.t @@ -0,0 +1,5 @@ +179, 180, 181, 182, 183, 184, 185, 186, +187, 188, 189, 190, 191, 192, 193, 194, +195, 197, 198, 199, 200, 201, 202, 203, +204, 206, 207, 208, 209, 210, 211, 212, +213, 214, 215, 216, 217, 218 diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KOI8R.t b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KOI8R.t new file mode 100644 index 0000000..9404dd8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KOI8R.t @@ -0,0 +1,5 @@ +129, 130, 131, 132, 133, 134, 135, 136, +137, 138, 161, 162, 164, 165, 166, 167, +168, 169, 170, 171, 172, 173, 174, 175, +176, 177, 178, 180, 181, 182, 183, 184, +185, 186, 187, 188, 189, 190 diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KOI8RU.t b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KOI8RU.t new file mode 100644 index 0000000..475bbe4 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KOI8RU.t @@ -0,0 +1,4 @@ +129, 130, 131, 132, 133, 134, 135, 136, +137, 138, 161, 162, 165, 168, 169, 170, +171, 172, 175, 176, 177, 178, 181, 184, +185, 186, 187, 188 diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KOI8U.t b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KOI8U.t new file mode 100644 index 0000000..4242678 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KOI8U.t @@ -0,0 +1,4 @@ +128, 129, 130, 131, 132, 133, 134, 135, +136, 137, 138, 161, 162, 165, 168, 169, +170, 171, 172, 174, 175, 176, 177, 178, +181, 184, 185, 186, 187, 188, 190 diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KOI8UNI.t b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KOI8UNI.t new file mode 100644 index 0000000..b208543 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/BOXVERT_KOI8UNI.t @@ -0,0 +1,2 @@ +129, 130, 131, 132, 133, 134, 135, 136, +137, 138 diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/HEXDIGITS.ti b/wlx/wayland_qt_base/build/enca-1.19/tools/HEXDIGITS.ti new file mode 100644 index 0000000..ca8d53a --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/HEXDIGITS.ti @@ -0,0 +1 @@ +"0123456789ABCDEF" diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/Makefile b/wlx/wayland_qt_base/build/enca-1.19/tools/Makefile new file mode 100644 index 0000000..bbd3dfd --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/Makefile @@ -0,0 +1,677 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# tools/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + + + + +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/enca +pkgincludedir = $(includedir)/enca +pkglibdir = $(libdir)/enca +pkglibexecdir = $(libexecdir)/enca +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-pc-linux-gnu +host_triplet = x86_64-pc-linux-gnu +noinst_PROGRAMS = make_hash$(EXEEXT) +subdir = tools +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(noinst_HEADERS) \ + $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +PROGRAMS = $(noinst_PROGRAMS) +am_make_hash_OBJECTS = make_hash.$(OBJEXT) +make_hash_OBJECTS = $(am_make_hash_OBJECTS) +make_hash_LDADD = $(LDADD) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +SCRIPTS = $(noinst_SCRIPTS) +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(make_hash_SOURCES) +DIST_SOURCES = $(make_hash_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +HEADERS = $(noinst_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ + $(top_srcdir)/mkinstalldirs +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing aclocal-1.15 -I m4 +AMTAR = $${TAR-tar} +AM_DEFAULT_VERBOSITY = 1 +AR = ar +AUTOCONF = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoconf +AUTOHEADER = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing autoheader +AUTOMAKE = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing automake-1.15 +AWK = gawk +CC = /usr/bin/cc +CCDEPMODE = depmode=gcc3 +CFLAGS = -Wall -Wextra -W -pedantic -g -O2 +CONVERTER_LIBS = +CPP = /usr/bin/cc -E +CPPFLAGS = +CSTOCS_PROG = +CYGPATH_W = echo +DEFAULT_CONVERTER_LIST = built-in,iconv +DEFAULT_EXTERNAL_CONVERTER = recode +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /usr/bin/grep -E +EXEEXT = +FGREP = /usr/bin/grep -F +GCOV = /usr/bin/gcov +GCOV_CPPFLAGS = +GCOV_FLAGS = +GCOV_LDFLAGS = +GREP = /usr/bin/grep +GTKDOC = false +HTML_DIR = ${datarootdir}/gtk-doc/html +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +LD = /usr/bin/ld -m elf_x86_64 +LDFLAGS = +LIBICONV = +LIBM = -lm +LIBOBJS = +LIBS = -lm +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIPO = +LN_S = ln -s +LTLIBICONV = +LTLIBOBJS = +LT_SYS_LIBRARY_PATH = +MAINT = # +MAKEINFO = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/missing makeinfo +MANIFEST_TOOL = : +MAP_PROG = +MKDIR_P = /usr/bin/mkdir -p +MKTEMP_PROG = /usr/bin/mktemp +NM = /usr/bin/nm -B +NMEDIT = +OBJDUMP = objdump +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = enca +PACKAGE_BUGREPORT = https://github.com/nijel/enca/issues +PACKAGE_NAME = Enca +PACKAGE_STRING = Enca 1.19 +PACKAGE_TARNAME = enca +PACKAGE_URL = +PACKAGE_VERSION = 1.19 +PATH_SEPARATOR = : +PICONV_PROG = /usr/bin/core_perl/piconv +RANLIB = ranlib +RECODE_PROG = /usr/bin/recode +RELEASE = 1 +SED = /usr/bin/sed +SET_MAKE = +SHELL = /bin/sh +SHELL_RANDOM_FILENAME = `/usr/bin/mktemp /tmp/enca-$$-XXXXXXXX` +STRIP = strip +UMAP_PROG = +VERSION = 1.19 +abs_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/tools +abs_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/tools +abs_top_builddir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +abs_top_srcdir = /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19 +ac_ct_AR = ar +ac_ct_CC = /usr/bin/cc +ac_ct_DUMPBIN = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-pc-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = pc +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} +dvidir = ${docdir} +exec_prefix = ${prefix} +host = x86_64-pc-linux-gnu +host_alias = +host_cpu = x86_64 +host_os = linux-gnu +host_vendor = pc +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/enca-1.19/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /usr/local +program_transform_name = s,x,x, +psdir = ${docdir} +runstatedir = ${localstatedir}/run +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = . +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = ../ +top_builddir = .. +top_srcdir = .. +noinst_HEADERS = encodings.h +noinst_SCRIPTS = expand_table.pl +make_hash_SOURCES = make_hash.c +BUILT_SOURCES = $(noinst_HEADERS) +TABLE_SRC = \ + ACCEPTED_CHARS.t \ + BASE64.ti \ + BOXVERT_CP1125.t \ + BOXVERT_IBM852.t \ + BOXVERT_KEYBCS2.t \ + BOXVERT_KOI8R.t \ + BOXVERT_KOI8RU.t \ + BOXVERT_KOI8U.t \ + BOXVERT_KOI8UNI.t \ + HEXDIGITS.ti \ + TEX_ACCALPHA.t \ + TEX_ACCPUNCT.t \ + TEX_SKIP.t \ + encodings.dat + +EXTRA_DIST = $(TABLE_SRC) $(noinst_SCRIPTS) iconvenc.null + +# Normally there's no need to regenerate tables, they are copy-and-pasted +# into the C source manually, but the rules are here. Run `make tables' +# to create them. +TABLES = \ + ACCEPTED_CHARS.h \ + BOXVERT_CP1125.h \ + BOXVERT_IBM852.h \ + BOXVERT_KEYBCS2.h \ + BOXVERT_KOI8R.h \ + BOXVERT_KOI8RU.h \ + BOXVERT_KOI8U.h \ + BOXVERT_KOI8UNI.h \ + TEX_ACCALPHA.h \ + TEX_ACCPUNCT.h \ + TEX_SKIP.h + +TABLES_INCR = BASE64.h HEXDIGITS.h +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits tools/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits tools/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +make_hash$(EXEEXT): $(make_hash_OBJECTS) $(make_hash_DEPENDENCIES) $(EXTRA_make_hash_DEPENDENCIES) + @rm -f make_hash$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(make_hash_OBJECTS) $(make_hash_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/make_hash.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(PROGRAMS) $(SCRIPTS) $(HEADERS) +installdirs: +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-generic clean-libtool clean-local clean-noinstPROGRAMS \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-local distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: all check install install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ + clean-libtool clean-local clean-noinstPROGRAMS cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-local distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +all: encodings.h + +encodings.sed: $(top_builddir)/iconvenc.h + sed -e 's/^#define \([A-Z0-9_]*\) \(.*\)/@\1@ \2/' -e 's/"//g' -e 's/NULL$$//' -e 's/ /\//' -e 's/^\(.*\)$$/s\/\1\//' $(top_builddir)/iconvenc.h >encodings.sed + +encodings.h: encodings.sed $(srcdir)/encodings.dat make_hash + sed -f encodings.sed $(srcdir)/encodings.dat | ./make_hash >encodings.h + +#tables: $(TABLES) $(TABLES_INCR) + +#%.h: $(srcdir)/%.t $(srcdir)/expand_table.pl +# $(srcdir)/expand_table.pl $< >$@ + +#%.h: $(srcdir)/%.ti $(srcdir)/expand_table.pl +# $(srcdir)/expand_table.pl $< >$@ + +clean-local: + rm -f $(TABLES) $(TABLES_INCR) encodings.sed *~ core.* + +distclean-local: + rm -f encodings.h + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/Makefile.am b/wlx/wayland_qt_base/build/enca-1.19/tools/Makefile.am new file mode 100644 index 0000000..4092260 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/Makefile.am @@ -0,0 +1,67 @@ +noinst_PROGRAMS = make_hash +noinst_HEADERS = encodings.h +noinst_SCRIPTS = expand_table.pl + +make_hash_SOURCES = make_hash.c + +BUILT_SOURCES = $(noinst_HEADERS) + +TABLE_SRC = \ + ACCEPTED_CHARS.t \ + BASE64.ti \ + BOXVERT_CP1125.t \ + BOXVERT_IBM852.t \ + BOXVERT_KEYBCS2.t \ + BOXVERT_KOI8R.t \ + BOXVERT_KOI8RU.t \ + BOXVERT_KOI8U.t \ + BOXVERT_KOI8UNI.t \ + HEXDIGITS.ti \ + TEX_ACCALPHA.t \ + TEX_ACCPUNCT.t \ + TEX_SKIP.t \ + encodings.dat + +EXTRA_DIST = $(TABLE_SRC) $(noinst_SCRIPTS) iconvenc.null + +all: encodings.h + +encodings.sed: $(top_builddir)/iconvenc.h + sed -e 's/^#define \([A-Z0-9_]*\) \(.*\)/@\1@ \2/' -e 's/"//g' -e 's/NULL$$//' -e 's/ /\//' -e 's/^\(.*\)$$/s\/\1\//' $(top_builddir)/iconvenc.h >encodings.sed + +encodings.h: encodings.sed $(srcdir)/encodings.dat make_hash + sed -f encodings.sed $(srcdir)/encodings.dat | ./make_hash >encodings.h + +# Normally there's no need to regenerate tables, they are copy-and-pasted +# into the C source manually, but the rules are here. Run `make tables' +# to create them. +TABLES = \ + ACCEPTED_CHARS.h \ + BOXVERT_CP1125.h \ + BOXVERT_IBM852.h \ + BOXVERT_KEYBCS2.h \ + BOXVERT_KOI8R.h \ + BOXVERT_KOI8RU.h \ + BOXVERT_KOI8U.h \ + BOXVERT_KOI8UNI.h \ + TEX_ACCALPHA.h \ + TEX_ACCPUNCT.h \ + TEX_SKIP.h +TABLES_INCR = BASE64.h HEXDIGITS.h + +if MAINTAINER_MODE +tables: $(TABLES) $(TABLES_INCR) + +%.h: $(srcdir)/%.t $(srcdir)/expand_table.pl + $(srcdir)/expand_table.pl $< >$@ + +%.h: $(srcdir)/%.ti $(srcdir)/expand_table.pl + $(srcdir)/expand_table.pl $< >$@ +endif + +clean-local: + rm -f $(TABLES) $(TABLES_INCR) encodings.sed *~ core.* + +distclean-local: + rm -f encodings.h + diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/Makefile.in b/wlx/wayland_qt_base/build/enca-1.19/tools/Makefile.in new file mode 100644 index 0000000..1b30e8c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/Makefile.in @@ -0,0 +1,677 @@ +# Makefile.in generated by automake 1.15 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2014 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +noinst_PROGRAMS = make_hash$(EXEEXT) +subdir = tools +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gcov.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/libiconv.m4 \ + $(top_srcdir)/m4/libm.m4 $(top_srcdir)/m4/librecode.m4 \ + $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/localias.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/tools.m4 $(top_srcdir)/m4/typevar.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(noinst_HEADERS) \ + $(am__DIST_COMMON) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +PROGRAMS = $(noinst_PROGRAMS) +am_make_hash_OBJECTS = make_hash.$(OBJEXT) +make_hash_OBJECTS = $(am_make_hash_OBJECTS) +make_hash_LDADD = $(LDADD) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +SCRIPTS = $(noinst_SCRIPTS) +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(make_hash_SOURCES) +DIST_SOURCES = $(make_hash_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +HEADERS = $(noinst_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ + $(top_srcdir)/mkinstalldirs +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CONVERTER_LIBS = @CONVERTER_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CSTOCS_PROG = @CSTOCS_PROG@ +CYGPATH_W = @CYGPATH_W@ +DEFAULT_CONVERTER_LIST = @DEFAULT_CONVERTER_LIST@ +DEFAULT_EXTERNAL_CONVERTER = @DEFAULT_EXTERNAL_CONVERTER@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GCOV = @GCOV@ +GCOV_CPPFLAGS = @GCOV_CPPFLAGS@ +GCOV_FLAGS = @GCOV_FLAGS@ +GCOV_LDFLAGS = @GCOV_LDFLAGS@ +GREP = @GREP@ +GTKDOC = @GTKDOC@ +HTML_DIR = @HTML_DIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBM = @LIBM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MAP_PROG = @MAP_PROG@ +MKDIR_P = @MKDIR_P@ +MKTEMP_PROG = @MKTEMP_PROG@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PICONV_PROG = @PICONV_PROG@ +RANLIB = @RANLIB@ +RECODE_PROG = @RECODE_PROG@ +RELEASE = @RELEASE@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SHELL_RANDOM_FILENAME = @SHELL_RANDOM_FILENAME@ +STRIP = @STRIP@ +UMAP_PROG = @UMAP_PROG@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +noinst_HEADERS = encodings.h +noinst_SCRIPTS = expand_table.pl +make_hash_SOURCES = make_hash.c +BUILT_SOURCES = $(noinst_HEADERS) +TABLE_SRC = \ + ACCEPTED_CHARS.t \ + BASE64.ti \ + BOXVERT_CP1125.t \ + BOXVERT_IBM852.t \ + BOXVERT_KEYBCS2.t \ + BOXVERT_KOI8R.t \ + BOXVERT_KOI8RU.t \ + BOXVERT_KOI8U.t \ + BOXVERT_KOI8UNI.t \ + HEXDIGITS.ti \ + TEX_ACCALPHA.t \ + TEX_ACCPUNCT.t \ + TEX_SKIP.t \ + encodings.dat + +EXTRA_DIST = $(TABLE_SRC) $(noinst_SCRIPTS) iconvenc.null + +# Normally there's no need to regenerate tables, they are copy-and-pasted +# into the C source manually, but the rules are here. Run `make tables' +# to create them. +TABLES = \ + ACCEPTED_CHARS.h \ + BOXVERT_CP1125.h \ + BOXVERT_IBM852.h \ + BOXVERT_KEYBCS2.h \ + BOXVERT_KOI8R.h \ + BOXVERT_KOI8RU.h \ + BOXVERT_KOI8U.h \ + BOXVERT_KOI8UNI.h \ + TEX_ACCALPHA.h \ + TEX_ACCPUNCT.h \ + TEX_SKIP.h + +TABLES_INCR = BASE64.h HEXDIGITS.h +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits tools/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnits tools/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +make_hash$(EXEEXT): $(make_hash_OBJECTS) $(make_hash_DEPENDENCIES) $(EXTRA_make_hash_DEPENDENCIES) + @rm -f make_hash$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(make_hash_OBJECTS) $(make_hash_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/make_hash.Po@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(PROGRAMS) $(SCRIPTS) $(HEADERS) +installdirs: +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-generic clean-libtool clean-local clean-noinstPROGRAMS \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-local distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: all check install install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ + clean-libtool clean-local clean-noinstPROGRAMS cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-local distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am + +.PRECIOUS: Makefile + + +all: encodings.h + +encodings.sed: $(top_builddir)/iconvenc.h + sed -e 's/^#define \([A-Z0-9_]*\) \(.*\)/@\1@ \2/' -e 's/"//g' -e 's/NULL$$//' -e 's/ /\//' -e 's/^\(.*\)$$/s\/\1\//' $(top_builddir)/iconvenc.h >encodings.sed + +encodings.h: encodings.sed $(srcdir)/encodings.dat make_hash + sed -f encodings.sed $(srcdir)/encodings.dat | ./make_hash >encodings.h + +@MAINTAINER_MODE_TRUE@tables: $(TABLES) $(TABLES_INCR) + +@MAINTAINER_MODE_TRUE@%.h: $(srcdir)/%.t $(srcdir)/expand_table.pl +@MAINTAINER_MODE_TRUE@ $(srcdir)/expand_table.pl $< >$@ + +@MAINTAINER_MODE_TRUE@%.h: $(srcdir)/%.ti $(srcdir)/expand_table.pl +@MAINTAINER_MODE_TRUE@ $(srcdir)/expand_table.pl $< >$@ + +clean-local: + rm -f $(TABLES) $(TABLES_INCR) encodings.sed *~ core.* + +distclean-local: + rm -f encodings.h + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/TEX_ACCALPHA.t b/wlx/wayland_qt_base/build/enca-1.19/tools/TEX_ACCALPHA.t new file mode 100644 index 0000000..a53e72c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/TEX_ACCALPHA.t @@ -0,0 +1 @@ +"bcdHkrtuv" diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/TEX_ACCPUNCT.t b/wlx/wayland_qt_base/build/enca-1.19/tools/TEX_ACCPUNCT.t new file mode 100644 index 0000000..51a7011 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/TEX_ACCPUNCT.t @@ -0,0 +1 @@ +"'`^\"~=." diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/TEX_SKIP.t b/wlx/wayland_qt_base/build/enca-1.19/tools/TEX_SKIP.t new file mode 100644 index 0000000..5bbec9b --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/TEX_SKIP.t @@ -0,0 +1 @@ +" \t\n\r{" diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/encodings.dat b/wlx/wayland_qt_base/build/enca-1.19/tools/encodings.dat new file mode 100644 index 0000000..a5bc75c --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/encodings.dat @@ -0,0 +1,336 @@ +#1:enca name (namestring) +# -- basic symbolic name +#2:RFC-1345 name (namestring) +# -- must exist, use the most canonical name if RFC-1345 doesn't define it +#3:cstocs name (namestring) +# -- left empty for new charsets, all cstocs charsets are present +#4:iconv name (namestring) +# -- REPLACED FROM iconvenc.h, use @ICONV_NAME_...@ +#5:preferred MIME name (namestring) +# -- http://www.iana.org/assignments/character-sets +#6:Alias list (space separated namestring list) +#7:Human readable name (any string) +#8:Charset flags (| joined C identifiers) +# -- see enca.h or API docs for flag list +#9:Natural surface (C identifier) +# -- see enca.h or API docs for surface list + +enca:ASCII +rfc:ANSI_X3.4-1968 +cstocs:ascii +iconv:@ICONV_NAME_ASCII@ +mime:US-ASCII +aliases:ASCII ANSI_X3.4-1986 367 CP367 IBM367 CSPC367 7bit ISO-646-US iso-ir-6 ISO_646.irv:1991 us US-ASCII csASCII +human:7bit ASCII characters +flags:ENCA_CHARSET_7BIT | ENCA_CHARSET_FIXED +nsurface:ENCA_SURFACE_EOL_LF + +enca:ISO-8859-2 +rfc:ISO_8859-2:1987 +cstocs:il2 +iconv:@ICONV_NAME_ISO88592@ +mime:ISO-8859-2 +aliases:ISO-8859-2 8859-2 912 CP912 IBM912 ISO_8859-2:1987 il2 l2 Latin2 iso-ir-101 csISOLatin2 ISOLatin2 csLatin2 +human:ISO 8859-2 standard; ISO Latin 2 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_LF + +enca:ISO-8859-4 +rfc:ISO_8859-4:1988 +cstocs: +iconv:@ICONV_NAME_ISO88594@ +mime:ISO-8859-4 +aliases:ISO-8859-4 8859-4 ISO_8859-4:1988 iso-ir-110 l4 Latin4 csLatin4 ISOLatin4 +human:ISO 8859-4 standard; Latin 4 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_LF + +enca:ISO-8859-5 +rfc:ISO_8859-5:1988 +cstocs: +iconv:@ICONV_NAME_ISO88595@ +mime:ISO-8859-5 +aliases:ISO-8859-5 8859-5 Cyrillic ISO_8859-5:1988 iso-ir-144 csISOLatinCyrillic csLatin5 ISOLatin5 +human:ISO 8859-5 standard; ISO Cyrillic +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_LF + +enca:ISO-8859-13 +rfc:ISO_8859-13:1998 +cstocs: +iconv:@ICONV_NAME_ISO885913@ +mime:ISO-8859-13 +aliases:ISO-8859-13 ISO8859-13 iso-baltic iso-ir-179a ISO_8859-13 ISO_8859-13:1998 l7 Latin7 csLatin7 +human:ISO 8859-13 standard; ISO Baltic; Latin 7 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_LF + +enca:ISO-8859-16 +rfc:ISO_8859-16:2000 +cstocs: +iconv:@ICONV_NAME_ISO885916@ +mime:ISO-8859-16 +aliases:ISO-8859-16 ISO-IR-226 ISO_8859-16 ISO_8859-16:2000 latin10 l10 csLatin10 +human:ISO 8859-16 standard +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_LF + +enca:CP1125 +rfc:CP1125 +cstocs: +iconv:@ICONV_NAME_CP1125@ +mime:windows-1125 +aliases:CP1125 1125 MS-1125 Win-1125 Windows-1125 +human:MS-Windows code page 1125 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:CP1250 +rfc:CP1250 +cstocs:1250 +iconv:@ICONV_NAME_CP1250@ +mime:windows-1250 +aliases:CP1250 1250 ms-ee MS-1250 Win-1250 Windows-1250 +human:MS-Windows code page 1250 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:CP1251 +rfc:CP1251 +cstocs: +iconv:@ICONV_NAME_CP1251@ +mime:windows-1251 +aliases:CP1251 1251 ms-cyrl MS-1251 Win-1251 Windows-1251 +human:MS-Windows code page 1251 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:CP1257 +rfc:CP1257 +cstocs: +iconv:@ICONV_NAME_CP1257@ +mime:windows-1257 +aliases:CP1257 1257 ms-balt MS-1257 Win-1257 Windows-1257 WinBaltRim +human:MS-Windows code page 1257; WinBaltRim +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:IBM852 +rfc:IBM852 +cstocs:pc2 +iconv:@ICONV_NAME_IBM852@ +mime:IBM852 +aliases:IBM852 852 CP852 pc2 pcl2 pclatin2 pl2 PC852 csPC852 csIBM852 +human:IBM/MS code page 852; PC (DOS) Latin 2 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:IBM855 +rfc:IBM855 +cstocs: +iconv:@ICONV_NAME_IBM855@ +mime:IBM855 +aliases:IBM855 855 CP855 PC855 csPC855 csIBM855 +human:IBM/MS code page 855 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:IBM775 +rfc:IBM775 +cstocs: +iconv:@ICONV_NAME_IBM775@ +mime:IBM775 +aliases:IBM775 775 CP775 PC775 csPC775 csIBM775 +human:IBM/MS code page 775 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:IBM866 +rfc:IBM866 +cstocs: +iconv:@ICONV_NAME_IBM866@ +mime:IBM866 +aliases:IBM866 866 CP866 PC866 csPC866 csIBM866 +human:IBM/MS code page 866 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:baltic +rfc:iso-ir-179 +cstocs: +iconv:@ICONV_NAME_BALTIC@ +mime: +aliases:ISO-IR-179 baltic +human:ISO-IR-179; Baltic +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_LF + +enca:KEYBCS2 +rfc:KEYBCS2 +cstocs:kam +iconv:@ICONV_NAME_KEYBCS2@ +mime: +aliases:KEYBCS2 Kamenicky kam 895 CP895 PC895 csPC895 +human:Kamenicky encoding; KEYBCS2 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:macce +rfc:macintosh_ce +cstocs:macce +iconv:@ICONV_NAME_MACCE@ +mime: +aliases:macce macintoshce macee macintoshee +human:Macintosh Central European +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CR + +enca:maccyr +rfc:mac_cyrillic +cstocs: +iconv:@ICONV_NAME_MACCYR@ +mime: +aliases:maccyr maccyrillic macintoshcyr macintoshcyrillic +human:Macintosh Cyrillic +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CR + +enca:ECMA-113 +rfc:ECMA-113:1986 +cstocs: +iconv:@ICONV_NAME_ECMA113@ +mime:ECMA-cyrillic +aliases:ecma-cyrillic ECMA-113:1986 iso-ir-111 +human:ECMA Cyrillic; ECMA-113 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_LF + +enca:KOI-8_CS_2 +rfc:KOI-8_CS_2 +cstocs:koi8 +iconv:@ICONV_NAME_KOI8CS2@ +mime:KOI8-CS2 +aliases:KOI-8_CS2 koi8cs koi8cz T602 +human:KOI8-CS2 code (`T602') +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:KOI8-R +rfc:KOI8-R +cstocs: +iconv:@ICONV_NAME_KOI8R@ +mime:KOI8-R +aliases:KOI8-R csKOI8R +human:KOI8-R Cyrillic +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:KOI8-U +rfc:KOI8-U +cstocs: +iconv:@ICONV_NAME_KOI8U@ +mime:KOI8-U +aliases:KOI8-U +human:KOI8-U Cyrillic +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:KOI8-UNI +rfc:KOI8-UNI +cstocs: +iconv:@ICONV_NAME_KOI8UNI@ +mime: +aliases:KOI8-UNI +human:KOI8-Unified Cyrillic +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:TeX +rfc:LaTeX +cstocs: tex +iconv:@ICONV_NAME_LATEX@ +mime: +aliases:TeX latex ltex +human:(La)TeX control sequences +flags:ENCA_CHARSET_7BIT | ENCA_CHARSET_VARIABLE | ENCA_CHARSET_MULTIBYTE +nsurface:ENCA_SURFACE_EOL_LF + +enca:UCS-2 +rfc:ISO-10646-UCS-2 +cstocs: +iconv:@ICONV_NAME_UCS2@ +mime:ISO-10646-UCS-2 +aliases:UCS-2 ISO-10646-UCS-2 BMP u2 UNICODE-1-1 csUnicode11 csUnicode rune csUCS2 +human:Universal character set 2 bytes; UCS-2; BMP +flags:ENCA_CHARSET_16BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_BINARY | ENCA_CHARSET_MULTIBYTE +nsurface: + +enca:UCS-4 +rfc:ISO-10646-UCS-4 +cstocs: +iconv:@ICONV_NAME_UCS4@ +mime:ISO-10646-UCS-4 +aliases:UCS-4 ISO-10646-UCS-4 10646 u4 UCS ISO-10646 csUCS4 +human:Universal character set 4 bytes; UCS-4; ISO-10646 +flags:ENCA_CHARSET_32BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_BINARY | ENCA_CHARSET_MULTIBYTE +nsurface: + +enca:UTF-7 +rfc:UNICODE-1-1-UTF-7 +cstocs: +iconv:@ICONV_NAME_UTF7@ +mime:UNICODE-1-1-UTF-7 +aliases:UTF-7 UNICODE-1-1-UTF-7 TF-7 u7 csUnicode11UTF7 csUTF7 ISO-10646-UTF7 +human:Universal transformation format 7 bits; UTF-7 +flags:ENCA_CHARSET_7BIT | ENCA_CHARSET_VARIABLE | ENCA_CHARSET_MULTIBYTE +nsurface:ENCA_SURFACE_EOL_CRLF + +enca:UTF-8 +rfc:UTF-8 +cstocs: utf8 +iconv:@ICONV_NAME_UTF8@ +mime:UTF-8 +aliases:UTF-8 FSS_UTF TF-8 u8 UTF-2 UTF-FSS ISO-10646-UTF8 csUTF8 +human:Universal transformation format 8 bits; UTF-8 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_VARIABLE | ENCA_CHARSET_MULTIBYTE +nsurface:ENCA_SURFACE_EOL_LF + +enca:CORK +rfc:CORK +cstocs: +iconv:@ICONV_NAME_CORK@ +mime: +aliases:Cork T1 +human:Cork encoding; T1 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR +nsurface: + +enca:GBK +rfc:GB_2312-80 +cstocs: +iconv:@ICONV_NAME_GBK@ +mime:GB2312 +aliases:GB_2312-80 GB2312.1980-0 ISO-IR-58 GB2312 GBK GB18030 CP936 +human:Simplified Chinese National Standard; GB2312 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_VARIABLE | ENCA_CHARSET_MULTIBYTE +nsurface:ENCA_SURFACE_EOL_LF + +enca:BIG5 +rfc:Big5 +cstocs: +iconv:@ICONV_NAME_BIG5@ +mime:BIG5 +aliases:BIG5 BIGFIVE BIG-5 BIG-FIVE CN-BIG5 CP950 +human:Traditional Chinese Industrial Standard; Big5 +flags:ENCA_CHARSET_8BIT | ENCA_CHARSET_VARIABLE | ENCA_CHARSET_MULTIBYTE +nsurface:ENCA_SURFACE_EOL_LF + +enca:HZ +rfc:HZ +cstocs: +iconv:@ICONV_NAME_HZ@ +mime:HZ-GB-2312 +aliases:HZ HZ-GB-2312 +human:HZ encoded GB2312 +flags:ENCA_CHARSET_7BIT | ENCA_CHARSET_VARIABLE | ENCA_CHARSET_MULTIBYTE +nsurface:ENCA_SURFACE_EOL_LF diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/encodings.h b/wlx/wayland_qt_base/build/enca-1.19/tools/encodings.h new file mode 100644 index 0000000..80e1d14 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/encodings.h @@ -0,0 +1,429 @@ +/**** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/ +/* THIS IS A GENERATED TABLE, see tools/make_hash.c. */ +static const EncaCharsetInfo CHARSET_INFO[] = { + { + 18, 16, 19, 18, 191, + "7bit ASCII characters", + ENCA_CHARSET_7BIT | ENCA_CHARSET_FIXED, + ENCA_SURFACE_EOL_LF + }, + { + 104, 105, 89, 104, 104, + "ISO 8859-2 standard; ISO Latin 2", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_LF + }, + { + 106, 107, -1, 106, 106, + "ISO 8859-4 standard; Latin 4", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_LF + }, + { + 108, 109, -1, 108, 108, + "ISO 8859-5 standard; ISO Cyrillic", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_LF + }, + { + 97, 100, -1, 97, 97, + "ISO 8859-13 standard; ISO Baltic; Latin 7", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_LF + }, + { + 101, 103, -1, 101, 101, + "ISO 8859-16 standard", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_LF + }, + { + 31, 31, -1, 31, 203, + "MS-Windows code page 1125", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CRLF + }, + { + 32, 32, 2, 32, 205, + "MS-Windows code page 1250", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CRLF + }, + { + 33, 33, -1, 33, 207, + "MS-Windows code page 1251", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CRLF + }, + { + 34, 34, -1, 34, 209, + "MS-Windows code page 1257; WinBaltRim", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CRLF + }, + { + 85, 85, 165, 85, 85, + "IBM/MS code page 852; PC (DOS) Latin 2", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CRLF + }, + { + 86, 86, -1, 86, 86, + "IBM/MS code page 855", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CRLF + }, + { + 84, 84, -1, 84, 84, + "IBM/MS code page 775", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CRLF + }, + { + 87, 87, -1, 87, 87, + "IBM/MS code page 866", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CRLF + }, + { + 21, 116, -1, 20, -1, + "ISO-IR-179; Baltic", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_LF + }, + { + 126, 126, 124, -1, -1, + "Kamenicky encoding; KEYBCS2", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CRLF + }, + { + 147, 153, 147, -1, -1, + "Macintosh Central European", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CR + }, + { + 148, 150, -1, 149, -1, + "Macintosh Cyrillic", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CR + }, + { + 71, 72, -1, 73, 73, + "ECMA Cyrillic; ECMA-113", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_LF + }, + { + 130, 130, 127, -1, 131, + "KOI8-CS2 code (`T602')", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CRLF + }, + { + 133, 133, -1, 133, 133, + "KOI8-R Cyrillic", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CRLF + }, + { + 134, 134, -1, 134, 134, + "KOI8-U Cyrillic", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CRLF + }, + { + 135, 135, -1, -1, -1, + "KOI8-Unified Cyrillic", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + ENCA_SURFACE_EOL_CRLF + }, + { + 177, 140, 178, -1, -1, + "(La)TeX control sequences", + ENCA_CHARSET_7BIT | ENCA_CHARSET_VARIABLE | ENCA_CHARSET_MULTIBYTE, + ENCA_SURFACE_EOL_LF + }, + { + 186, 91, -1, 186, 91, + "Universal character set 2 bytes; UCS-2; BMP", + ENCA_CHARSET_16BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_BINARY | ENCA_CHARSET_MULTIBYTE, + 0 + }, + { + 187, 92, -1, 187, 92, + "Universal character set 4 bytes; UCS-4; ISO-10646", + ENCA_CHARSET_32BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_BINARY | ENCA_CHARSET_MULTIBYTE, + 0 + }, + { + 193, 189, -1, 193, 189, + "Universal transformation format 7 bits; UTF-7", + ENCA_CHARSET_7BIT | ENCA_CHARSET_VARIABLE | ENCA_CHARSET_MULTIBYTE, + ENCA_SURFACE_EOL_CRLF + }, + { + 194, 194, 195, 194, 194, + "Universal transformation format 8 bits; UTF-8", + ENCA_CHARSET_8BIT | ENCA_CHARSET_VARIABLE | ENCA_CHARSET_MULTIBYTE, + ENCA_SURFACE_EOL_LF + }, + { + 29, 29, -1, -1, -1, + "Cork encoding; T1", + ENCA_CHARSET_8BIT | ENCA_CHARSET_FIXED | ENCA_CHARSET_REGULAR, + 0 + }, + { + 80, 79, -1, 80, 77, + "Simplified Chinese National Standard; GB2312", + ENCA_CHARSET_8BIT | ENCA_CHARSET_VARIABLE | ENCA_CHARSET_MULTIBYTE, + ENCA_SURFACE_EOL_LF + }, + { + 23, 24, -1, 23, 23, + "Traditional Chinese Industrial Standard; Big5", + ENCA_CHARSET_8BIT | ENCA_CHARSET_VARIABLE | ENCA_CHARSET_MULTIBYTE, + ENCA_SURFACE_EOL_LF + }, + { + 81, 81, -1, 76, 82, + "HZ encoded GB2312", + ENCA_CHARSET_7BIT | ENCA_CHARSET_VARIABLE | ENCA_CHARSET_MULTIBYTE, + ENCA_SURFACE_EOL_LF + }, +}; + +/* THIS IS A GENERATED TABLE, see tools/make_hash.c. */ +static const char *ALIAS_LIST[] = { + "10646", + "1125", + "1250", + "1251", + "1257", + "367", + "775", + "7bit", + "852", + "855", + "866", + "8859-2", + "8859-4", + "8859-5", + "895", + "912", + "ANSI_X3.4-1968", + "ANSI_X3.4-1986", + "ASCII", + "ascii", + "BALTIC", + "baltic", + "BIG-5", + "BIG5", + "Big5", + "BIG-FIVE", + "BIGFIVE", + "BMP", + "CN-BIG5", + "CORK", + "Cork", + "CP1125", + "CP1250", + "CP1251", + "CP1257", + "CP367", + "CP775", + "CP852", + "CP855", + "CP866", + "CP895", + "CP912", + "CP936", + "CP950", + "csASCII", + "csIBM775", + "csIBM852", + "csIBM855", + "csIBM866", + "csISOLatin2", + "csISOLatinCyrillic", + "csKOI8R", + "csLatin10", + "csLatin2", + "csLatin4", + "csLatin5", + "csLatin7", + "CSPC367", + "csPC775", + "csPC852", + "csPC855", + "csPC866", + "csPC895", + "csUCS2", + "csUCS4", + "csUnicode", + "csUnicode11", + "csUnicode11UTF7", + "csUTF7", + "csUTF8", + "Cyrillic", + "ECMA-113", + "ECMA-113:1986", + "ECMA-cyrillic", + "ecma-cyrillic", + "FSS_UTF", + "GB18030", + "GB2312", + "GB2312.1980-0", + "GB_2312-80", + "GBK", + "HZ", + "HZ-GB-2312", + "IBM367", + "IBM775", + "IBM852", + "IBM855", + "IBM866", + "IBM912", + "il2", + "ISO-10646", + "ISO-10646-UCS-2", + "ISO-10646-UCS-4", + "ISO-10646-UTF7", + "ISO-10646-UTF8", + "ISO_646.irv:1991", + "ISO-646-US", + "ISO-8859-13", + "ISO8859-13", + "ISO_8859-13", + "ISO_8859-13:1998", + "ISO-8859-16", + "ISO_8859-16", + "ISO_8859-16:2000", + "ISO-8859-2", + "ISO_8859-2:1987", + "ISO-8859-4", + "ISO_8859-4:1988", + "ISO-8859-5", + "ISO_8859-5:1988", + "iso-baltic", + "iso-ir-101", + "iso-ir-110", + "iso-ir-111", + "iso-ir-144", + "ISO-IR-179", + "iso-ir-179", + "iso-ir-179a", + "ISO-IR-226", + "ISO-IR-58", + "iso-ir-6", + "ISOLatin2", + "ISOLatin4", + "ISOLatin5", + "kam", + "Kamenicky", + "KEYBCS2", + "koi8", + "koi8cs", + "KOI-8_CS2", + "KOI-8_CS_2", + "KOI8-CS2", + "koi8cz", + "KOI8-R", + "KOI8-U", + "KOI8-UNI", + "l10", + "l2", + "l4", + "l7", + "LaTeX", + "latex", + "latin10", + "Latin2", + "Latin4", + "Latin7", + "ltex", + "macce", + "maccyr", + "MACCYRILLIC", + "mac_cyrillic", + "maccyrillic", + "macee", + "macintosh_ce", + "macintoshce", + "macintoshcyr", + "macintoshcyrillic", + "macintoshee", + "MS-1125", + "MS-1250", + "MS-1251", + "MS-1257", + "ms-balt", + "ms-cyrl", + "ms-ee", + "pc2", + "PC775", + "PC852", + "PC855", + "PC866", + "PC895", + "pcl2", + "pclatin2", + "pl2", + "rune", + "T1", + "T602", + "TeX", + "tex", + "TF-7", + "TF-8", + "u2", + "u4", + "u7", + "u8", + "UCS", + "UCS-2", + "UCS-4", + "UNICODE-1-1", + "UNICODE-1-1-UTF-7", + "us", + "US-ASCII", + "UTF-2", + "UTF-7", + "UTF-8", + "utf8", + "UTF-FSS", + "Win-1125", + "Win-1250", + "Win-1251", + "Win-1257", + "WinBaltRim", + "Windows-1125", + "windows-1125", + "Windows-1250", + "windows-1250", + "Windows-1251", + "windows-1251", + "Windows-1257", + "windows-1257", +}; + +/* THIS IS A GENERATED TABLE, see tools/make_hash.c. */ +static const int INDEX_LIST[] = { + 25, 6, 7, 8, 9, 0, 12, 0, 10, 11, 13, 1, 2, 3, 15, 1, + 0, 0, 0, 0, 14, 14, 30, 30, 30, 30, 30, 24, 30, 28, 28, 6, + 7, 8, 9, 0, 12, 10, 11, 13, 15, 1, 29, 30, 0, 12, 10, 11, + 13, 1, 3, 20, 5, 1, 2, 3, 4, 0, 12, 10, 11, 13, 15, 24, + 25, 24, 24, 26, 26, 27, 3, 18, 18, 18, 18, 27, 31, 29, 29, 29, + 29, 31, 31, 0, 12, 10, 11, 13, 1, 1, 25, 24, 25, 26, 27, 0, + 0, 4, 4, 4, 4, 5, 5, 5, 1, 1, 2, 2, 3, 3, 4, 1, + 2, 18, 3, 14, 14, 4, 5, 29, 0, 1, 2, 3, 15, 15, 15, 19, + 19, 19, 19, 19, 19, 20, 21, 22, 5, 1, 2, 4, 23, 23, 5, 1, + 2, 4, 23, 16, 17, 17, 17, 17, 16, 16, 16, 17, 17, 16, 6, 7, + 8, 9, 9, 8, 7, 10, 12, 10, 11, 13, 15, 10, 10, 10, 24, 28, + 19, 23, 23, 26, 27, 24, 25, 26, 27, 25, 24, 25, 24, 26, 0, 0, + 27, 26, 27, 27, 27, 6, 7, 8, 9, 9, 6, 6, 7, 7, 8, 8, + 9, 9, +}; + diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/encodings.sed b/wlx/wayland_qt_base/build/enca-1.19/tools/encodings.sed new file mode 100644 index 0000000..37185ae --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/encodings.sed @@ -0,0 +1,33 @@ +s/@ICONV_NAME_UNICODE@/UCS2/ +s/@ICONV_NAME_ASCII@/ASCII/ +s/@ICONV_NAME_BALTIC@/BALTIC/ +s/@ICONV_NAME_CP1125@/CP1125/ +s/@ICONV_NAME_CP1250@/CP1250/ +s/@ICONV_NAME_CP1251@/CP1251/ +s/@ICONV_NAME_CP1257@/CP1257/ +s/@ICONV_NAME_ECMA113@/ECMA-cyrillic/ +s/@ICONV_NAME_IBM852@/IBM852/ +s/@ICONV_NAME_IBM855@/IBM855/ +s/@ICONV_NAME_IBM775@/IBM775/ +s/@ICONV_NAME_IBM866@/IBM866/ +s/@ICONV_NAME_ISO88592@/ISO-8859-2/ +s/@ICONV_NAME_ISO88594@/ISO-8859-4/ +s/@ICONV_NAME_ISO88595@/ISO-8859-5/ +s/@ICONV_NAME_ISO885913@/ISO-8859-13/ +s/@ICONV_NAME_ISO885916@/ISO-8859-16/ +s/@ICONV_NAME_KEYBCS2@// +s/@ICONV_NAME_KOI8CS2@// +s/@ICONV_NAME_KOI8R@/KOI8-R/ +s/@ICONV_NAME_KOI8U@/KOI8-U/ +s/@ICONV_NAME_KOI8UNI@// +s/@ICONV_NAME_MACCE@// +s/@ICONV_NAME_MACCYR@/MACCYRILLIC/ +s/@ICONV_NAME_LATEX@// +s/@ICONV_NAME_UCS2@/UCS-2/ +s/@ICONV_NAME_UCS4@/UCS-4/ +s/@ICONV_NAME_UTF7@/UTF-7/ +s/@ICONV_NAME_UTF8@/UTF-8/ +s/@ICONV_NAME_CORK@// +s/@ICONV_NAME_GBK@/GBK/ +s/@ICONV_NAME_BIG5@/BIG5/ +s/@ICONV_NAME_HZ@/GB18030/ diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/expand_table.pl b/wlx/wayland_qt_base/build/enca-1.19/tools/expand_table.pl new file mode 100755 index 0000000..1759c43 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/expand_table.pl @@ -0,0 +1,55 @@ +#!/usr/bin/perl +# Generate a C flag-table from a list of bytes for which the flag should be on. +# Accepts either +# - a quoted string, character ordinal values are then used +# - a (reasonably separated) list of decimal or hexadecimal numbers +# Arguments: +# 1st -- name of the flag file, table name is its basename with .t or .ti +# removed, when the extension is .ti, the table is incremental +use strict; +use warnings; + +my $sep = "[[:space:][:punct:]]"; +my $dig = "([[:digit:]]{1,3}|0x[[:xdigit:]]{1,2})"; +my @a = (0) x 0x100; +die "Need a filename" if not defined $ARGV[0]; +my $incr = ($ARGV[0] =~ /\.ti$/) ? 1 : undef; +my $name = $ARGV[0]; +$name =~ s/.*\///; +$name =~ s/\.ti?$//; + +undef $/; +open FH, '<', $ARGV[0] or die "Cannot open $ARGV[0]\n"; +$_ = ; +close FH; +s/^[[:space:]]+//; +s/[[:space:]]+$//; +if (/"[^"]+"/) { + s/"//g; + foreach my $x (split / */) { + $a[ord $x] = (defined $incr ? $incr++ : 1); + } +} +elsif (/^($dig$sep+)+$dig?/s) { + foreach my $x (split /$sep+/) { + $a[$x] = (defined $incr ? $incr++ : 1); + } +} +else { + die "Cannot parse input string\n"; +} + +print "/* THIS IS A GENERATED TABLE, see tools/expand_table.pl */\n"; +if ($incr) { + print "static const short int $name\[\] = {\n"; +} +else { + print "static const unsigned char $name\[\] = {\n"; +} +for (my $i = 0x00; $i < 0x100; $i++) { + if ($i % 0x10 == 0x00) { print " "; } + if (defined $incr) { printf "%2d, ", $a[$i]; } + else { print $a[$i] . ", "; } + if ($i % 0x10 == 0x0f) { print "\n"; } +} +print "};\n"; diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/iconvenc.null b/wlx/wayland_qt_base/build/enca-1.19/tools/iconvenc.null new file mode 100644 index 0000000..577d827 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/iconvenc.null @@ -0,0 +1,33 @@ +#define ICONV_NAME_UNICODE NULL +#define ICONV_NAME_ASCII NULL +#define ICONV_NAME_BALTIC NULL +#define ICONV_NAME_CP1125 NULL +#define ICONV_NAME_CP1250 NULL +#define ICONV_NAME_CP1251 NULL +#define ICONV_NAME_CP1257 NULL +#define ICONV_NAME_ECMA113 NULL +#define ICONV_NAME_IBM775 NULL +#define ICONV_NAME_IBM852 NULL +#define ICONV_NAME_IBM855 NULL +#define ICONV_NAME_IBM866 NULL +#define ICONV_NAME_ISO88592 NULL +#define ICONV_NAME_ISO88594 NULL +#define ICONV_NAME_ISO88595 NULL +#define ICONV_NAME_ISO885913 NULL +#define ICONV_NAME_ISO885916 NULL +#define ICONV_NAME_KEYBCS2 NULL +#define ICONV_NAME_KOI8CS2 NULL +#define ICONV_NAME_KOI8R NULL +#define ICONV_NAME_KOI8U NULL +#define ICONV_NAME_KOI8UNI NULL +#define ICONV_NAME_MACCE NULL +#define ICONV_NAME_MACCYR NULL +#define ICONV_NAME_LATEX NULL +#define ICONV_NAME_UCS2 NULL +#define ICONV_NAME_UCS4 NULL +#define ICONV_NAME_UTF7 NULL +#define ICONV_NAME_UTF8 NULL +#define ICONV_NAME_CORK NULL +#define ICONV_NAME_GBK NULL +#define ICONV_NAME_BIG5 NULL +#define ICONV_NAME_HZ NULL diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/make_hash b/wlx/wayland_qt_base/build/enca-1.19/tools/make_hash new file mode 100755 index 0000000..a576f07 Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/tools/make_hash differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/make_hash.c b/wlx/wayland_qt_base/build/enca-1.19/tools/make_hash.c new file mode 100644 index 0000000..bcc1dc8 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/tools/make_hash.c @@ -0,0 +1,416 @@ +/* + make_hash.c v2003-01-24 + make encodings.c from encodings.dat + + Copyright (C) 2000-2003 David Necas (Yeti) + + This program is free software; you can redistribute it and/or modify it + under the terms of version 2 of the GNU General Public License as published + by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +*/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include +#include + +#ifdef HAVE_STRING_H +# include +#else /* HAVE_STRING_H */ +# ifdef HAVE_STRINGS_H +# include +# endif /* HAVE_STRINGS_H */ +#endif /* HAVE_STRING_H */ + +#ifdef HAVE_MEMORY_H +# include +#endif /* HAVE_MEMORY_H */ + +#include +#include + +/* PARR {{{ */ +#ifdef __GNUC__ +# define PVAR(f, v) fprintf(stderr, "%s:%u %s(): " \ + #v " == %" #f "\n", __FILE__, __LINE__, __FUNCTION__, v) +# define PARR(f, v, n) ( { int _i; \ + fprintf(stderr, "%s:%u %s(): " #v " == { ", __FILE__, __LINE__, __FUNCTION__); \ + for (_i = 0; _i < n; _i++) fprintf(stderr, "%" #f ", ", (v)[_i]); \ + fputs("}\n", stderr); \ +} ) +#else /* __GNUC__ */ +/* FIXME */ +#endif /* __GNUC__ */ +/* }}} */ + +#define LEN 4096 + +typedef struct { + char *enca; + char *rfc1345; + char *cstocs; + char *iconv; + char *mime; + int naliases; + char **aliases; + char *human; + char *flags; + char *nsurface; +} EncaCharsetRaw; + +typedef struct { + int enca; + int rfc1345; + int cstocs; + int iconv; + int mime; + char *human; + char *flags; + char *nsurface; +} EncaCharsetFine; + +static EncaCharsetRaw RawNULL = { + NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL +}; + +static char* +fixspaces(char *line) +{ + char *p, *q; + int qs = 0; + + for (p = line; isspace(*p); p++) + ; + for (q = line; *p != '\0'; p++) { + if (isspace(*p)) { + *q = ' '; + qs = 1; + } + else { + if (qs) q++; + *q++ = *p; + qs = 0; + } + } + *q = '\0'; + + return line; +} + +static int +add_item(const char *line, + const char *name, + char **item) +{ + const int len = strlen(name); + + if (*item != NULL) return 0; + if (strncmp(line, name, len) != 0) return 0; + *item = fixspaces(strdup(line + len)); + + return 1; +} + +static char** +check_alias(char **aliases, + int *n, + char *string) +{ + int i; + + if (string == NULL || string[0] == '\0') return aliases; + for (i = 0; i < *n; i++) + if (strcmp(aliases[i], string) == 0) return aliases; + (*n)++; + aliases = (char**)realloc(aliases, (*n)*sizeof(char*)); + aliases[*n - 1] = strdup(string); + + return aliases; +} + +static EncaCharsetRaw* +read_raw_charset_data(FILE *stream, + int *rsize) +{ + char *line; + EncaCharsetRaw *r, *raw; + int rs; + char *gl; + + line = (char*)malloc(LEN); + r = raw = (EncaCharsetRaw*)malloc(sizeof(EncaCharsetRaw)); + *r = RawNULL; + rs = 1; + while (1) { + gl = fgets(line, LEN, stream); + if (r->enca && r->rfc1345 && r->cstocs && r->human && r->iconv && r->mime + && r->flags && r->nsurface && r->aliases) { + if (r->enca[0] == '\0') { + fprintf(stderr, "Enca's charset name #%d empty\n", (int)(r - raw + 1)); + exit(1); + } + if (r->rfc1345[0] == '\0') { + fprintf(stderr, "RFC-1345 charset name #%d empty\n", (int)(r - raw + 1)); + exit(1); + } + if (r->iconv[0] == '\0') r->iconv = NULL; + if (r->cstocs[0] == '\0') r->cstocs = NULL; + if (r->mime[0] == '\0') r->mime = NULL; + if (r->nsurface[0] == '\0') r->nsurface = strdup("0"); + r->aliases = check_alias(r->aliases, &r->naliases, r->enca); + r->aliases = check_alias(r->aliases, &r->naliases, r->iconv); + r->aliases = check_alias(r->aliases, &r->naliases, r->rfc1345); + r->aliases = check_alias(r->aliases, &r->naliases, r->mime); + r->aliases = check_alias(r->aliases, &r->naliases, r->cstocs); + if (!gl) break; + rs++; + { + int d = r - raw; + raw = (EncaCharsetRaw*)realloc(raw, rs*sizeof(EncaCharsetRaw)); + r = raw + d + 1; + } + *r = RawNULL; + } + line[LEN-1] = '\0'; + fixspaces(line); + if (line[0] == '\0' || line[0] == '#') continue; + if (add_item(line, "enca:", &r->enca)) continue; + if (add_item(line, "rfc:", &r->rfc1345)) continue; + if (add_item(line, "iconv:", &r->iconv)) continue; + if (add_item(line, "mime:", &r->mime)) continue; + if (add_item(line, "cstocs:", &r->cstocs)) continue; + if (add_item(line, "human:", &r->human)) continue; + if (add_item(line, "flags:", &r->flags)) continue; + if (add_item(line, "nsurface:", &r->nsurface)) continue; + if (strncmp(line, "aliases:", 8) == 0 && !r->aliases) { + int i; + char *next, *l = fixspaces(line+8); + r->naliases = 1; + while ((l = strchr(l, ' ')) != NULL) { + r->naliases++; + l++; + } + r->aliases = (char**)malloc((r->naliases)*sizeof(char*)); + l = line+8; + for (i = 0; i < r->naliases; i++) { + next = strchr(l, ' '); + if (next) *next = '\0'; + r->aliases[i] = strdup(l); + l = next+1; + } + continue; + } + fprintf(stderr, "Unexpected `%s'\n", line); + exit(1); + } + + *rsize = rs; + return raw; +} + +static int +squeeze_compare(const char *x, const char *y) +{ + while (*x != '\0' || *y != '\0') { + while (*x != '\0' && !isalnum(*x)) x++; + while (*y != '\0' && !isalnum(*y)) y++; + if (tolower(*x) != tolower(*y)) + return (int)tolower(*x) - (int)tolower(*y); + if (*x != '\0') x++; + if (*y != '\0') y++; + } + return 0; +} + +static int +stable_compare(const void *p, const void *q) +{ + char *x = *(char**)p; + char *y = *(char**)q; + int i; + + i = squeeze_compare(x, y); + /* to stabilize the sort */ + if (i == 0) return strcmp(x, y); + return i; +} + +static int +bin_search(char **alist, const int n, const char *s) +{ + int i1 = 0; + int i2 = n-1; + int i; + + i = stable_compare(&s, &alist[i1]); + if (i < 0) { + fprintf(stderr, "Out of search range: `%s'\n", s); + exit(0); + } + if (i == 0) return i1; + + i = stable_compare(&s, &alist[i2]); + if (i > 0) { + fprintf(stderr, "Out of search range: `%s'\n", s); + exit(0); + } + if (i == 0) return i2; + + while (i1+1 < i2) { + int im = (i1 + i2)/2; + i = stable_compare(&s, &alist[im]); + if (i == 0) return im; + if (i > 0) i1 = im; else i2 = im; + } + if (stable_compare(&s, &alist[i1+1]) == 0) return i1+1; + + fprintf(stderr, "Not found: `%s'\n", s); + exit(0); +} + +static char** +build_alias_list(EncaCharsetRaw *raw, const int ncs, int *total) +{ + char **alist; + int nn, i, j, k; + + for (i = nn = 0; i < ncs; i++) nn += raw[i].naliases; + alist = (char**)malloc(nn*sizeof(char*)); + for (i = j = 0; i < ncs; i++) { + for (k = 0; k < raw[i].naliases; k++) + alist[j++] = raw[i].aliases[k]; + } + qsort(alist, nn, sizeof(char*), &stable_compare); + for (i = 1; i < nn; ) { + if (squeeze_compare(alist[i], alist[i-1]) == 0) { + if (strcmp(alist[i], alist[i-1]) == 0) { + fprintf(stderr, "Removing duplicate `%s'\n", alist[i]); + memmove(alist+i-1, alist+i, (nn-i)*sizeof(char*)); + nn--; + } + else { + fprintf(stderr, "Keeping equvialent `%s' and `%s'\n", + alist[i], alist[i-1]); + i++; + } + } + else i++; + } + + *total = nn; + return alist; +} + +static EncaCharsetFine* +refine_data(EncaCharsetRaw *raw, const int ncs, char **alist, const int nn) +{ + int i; + EncaCharsetFine *fine; + + fine = (EncaCharsetFine*)malloc(ncs*sizeof(EncaCharsetFine)); + + for (i = 0; i < ncs; i++) { + fine[i].enca = bin_search(alist, nn, raw[i].enca); + fine[i].rfc1345 = bin_search(alist, nn, raw[i].rfc1345); + fine[i].iconv = raw[i].iconv ? bin_search(alist, nn, raw[i].iconv) : -1; + fine[i].cstocs = raw[i].cstocs ? bin_search(alist, nn, raw[i].cstocs) : -1; + fine[i].mime = raw[i].mime ? bin_search(alist, nn, raw[i].mime) : -1; + fine[i].human = raw[i].human; + fine[i].flags = raw[i].flags; + fine[i].nsurface = raw[i].nsurface; + } + + return fine; +} + +static int* +create_index_list(EncaCharsetRaw *raw, const int ncs, + char **alist, const int nn) +{ + int i, k; + int *ilist; + + ilist = (int*)malloc(nn*sizeof(int)); + + for (i = 0; i < ncs; i++) { + for (k = 0; k < raw[i].naliases; k++) { + ilist[bin_search(alist, nn, raw[i].aliases[k])] = i; + } + } + + return ilist; +} + +static void +print_fine_data(EncaCharsetFine *fine, const int ncs, + int *ilist, char **alist, const int nn) +{ + int i; + + puts("/**** THIS IS A GENERATED FILE. DO NOT TOUCH! *****/"); + + puts("/* THIS IS A GENERATED TABLE, see tools/make_hash.c. */"); + puts("static const EncaCharsetInfo CHARSET_INFO[] = {"); + for (i = 0; i < ncs; i++) { + printf(" {\n" + " %d, %d, %d, %d, %d,\n" + " \"%s\",\n" + " %s,\n" + " %s\n" + " },\n", + fine[i].enca, + fine[i].rfc1345, + fine[i].cstocs, + fine[i].iconv, + fine[i].mime, + fine[i].human, + fine[i].flags, + fine[i].nsurface); + } + puts("};\n"); + + puts("/* THIS IS A GENERATED TABLE, see tools/make_hash.c. */"); + puts("static const char *ALIAS_LIST[] = {"); + for (i = 0; i < nn; i++) printf(" \"%s\",\n", alist[i]); + puts("};\n"); + + puts("/* THIS IS A GENERATED TABLE, see tools/make_hash.c. */"); + puts("static const int INDEX_LIST[] = {"); + for (i = 0; i < nn; i++) { + if (i%16 == 0) printf(" "); + printf("%2d, ", ilist[i]); + if (i%16 == 15 || i == nn-1) printf("\n"); + } + puts("};\n"); +} + +int +main(void) +{ + EncaCharsetRaw *raw; + EncaCharsetFine *fine; + char **alist; + int *ilist; + int ncs, nn; + + raw = read_raw_charset_data(stdin, &ncs); + alist = build_alias_list(raw, ncs, &nn); + fine = refine_data(raw, ncs, alist, nn); + ilist = create_index_list(raw, ncs, alist, nn); + print_fine_data(fine, ncs, ilist, alist, nn); + + free(fine); + free(ilist); + + return 0; +} diff --git a/wlx/wayland_qt_base/build/enca-1.19/tools/make_hash.o b/wlx/wayland_qt_base/build/enca-1.19/tools/make_hash.o new file mode 100644 index 0000000..fe0788e Binary files /dev/null and b/wlx/wayland_qt_base/build/enca-1.19/tools/make_hash.o differ diff --git a/wlx/wayland_qt_base/build/enca-1.19/topline.sh b/wlx/wayland_qt_base/build/enca-1.19/topline.sh new file mode 100755 index 0000000..40eeac2 --- /dev/null +++ b/wlx/wayland_qt_base/build/enca-1.19/topline.sh @@ -0,0 +1,32 @@ +#! /bin/sh +# topline.sh. +# update top lines in docs. + +# get version number and current date +ver=$(grep PACKAGE_VERSION config.h | sed 's/.*VERSION *"\(.*\)".*/\1/') +if test -z "$ver"; then + echo "Cannot get version from config.h" 1>&2 + exit 1 +fi +date=$(date +"%Y-%m-%d") +# update +if test -z "$@"; then + files=$(grep -l '^#=====' * 2>/dev/null) +else + files=$@ +fi +for fnm in $files; do + if [ "$fnm" = "NEWS" ] ; then + continue + fi + echo "Updating $fnm..." 1>&2 + { echo "#============================================================================" + echo "# Enca v$ver ($date) guess and convert encoding of text files" + echo "# Copyright (C) 2000-2003 David Necas (Yeti) " + echo "# Copyright (C) 2009-2016 Michal Cihar " + echo "#============================================================================" + sed -e '1,5 d' "$fnm" + } > tmp$$ + mv -f tmp$$ $fnm +done +rm -f tmp$$ diff --git a/wlx/wayland_qt_base/build/libwayland_qt_base.a b/wlx/wayland_qt_base/build/libwayland_qt_base.a new file mode 100644 index 0000000..be18d9b Binary files /dev/null and b/wlx/wayland_qt_base/build/libwayland_qt_base.a differ diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_EditableGridWidget.cpp b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_EditableGridWidget.cpp new file mode 100644 index 0000000..533dd60 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_EditableGridWidget.cpp @@ -0,0 +1,121 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'EditableGridWidget.h' +** +** Created by: The Qt Meta Object Compiler version 69 (Qt 6.11.1) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../include/wayland_qt_base/EditableGridWidget.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'EditableGridWidget.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 69 +#error "This file was generated using the moc from 6.11.1. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { +struct qt_meta_tag_ZN10QtWlPlugin18EditableGridWidgetE_t {}; +} // unnamed namespace + +template <> constexpr inline auto QtWlPlugin::EditableGridWidget::qt_create_metaobjectdata() +{ + namespace QMC = QtMocConstants; + QtMocHelpers::StringRefStorage qt_stringData { + "QtWlPlugin::EditableGridWidget", + "dirtyChanged", + "", + "dirty" + }; + + QtMocHelpers::UintData qt_methods { + // Signal 'dirtyChanged' + QtMocHelpers::SignalData(1, 2, QMC::AccessPublic, QMetaType::Void, {{ + { QMetaType::Bool, 3 }, + }}), + }; + QtMocHelpers::UintData qt_properties { + }; + QtMocHelpers::UintData qt_enums { + }; + return QtMocHelpers::metaObjectData(QMC::MetaObjectFlag{}, qt_stringData, + qt_methods, qt_properties, qt_enums); +} +Q_CONSTINIT const QMetaObject QtWlPlugin::EditableGridWidget::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_staticMetaObjectStaticContent.stringdata, + qt_staticMetaObjectStaticContent.data, + qt_static_metacall, + nullptr, + qt_staticMetaObjectRelocatingContent.metaTypes, + nullptr +} }; + +void QtWlPlugin::EditableGridWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + auto *_t = static_cast(_o); + if (_c == QMetaObject::InvokeMetaMethod) { + switch (_id) { + case 0: _t->dirtyChanged((*reinterpret_cast>(_a[1]))); break; + default: ; + } + } + if (_c == QMetaObject::IndexOfMethod) { + if (QtMocHelpers::indexOfMethod(_a, &EditableGridWidget::dirtyChanged, 0)) + return; + } +} + +const QMetaObject *QtWlPlugin::EditableGridWidget::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *QtWlPlugin::EditableGridWidget::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_staticMetaObjectStaticContent.strings)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int QtWlPlugin::EditableGridWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 1) + qt_static_metacall(this, _c, _id, _a); + _id -= 1; + } + if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 1) + *reinterpret_cast(_a[0]) = QMetaType(); + _id -= 1; + } + return _id; +} + +// SIGNAL 0 +void QtWlPlugin::EditableGridWidget::dirtyChanged(bool _t1) +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr, _t1); +} +QT_WARNING_POP diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_EditableGridWidget.cpp.d b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_EditableGridWidget.cpp.d new file mode 100644 index 0000000..f8d176f --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_EditableGridWidget.cpp.d @@ -0,0 +1,513 @@ +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_EditableGridWidget.cpp: /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EditableGridWidget.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h \ + /usr/include/alloca.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/asm/bitsperlong.h \ + /usr/include/asm/errno.h \ + /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h \ + /usr/include/asm/types.h \ + /usr/include/assert.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/cpu-set.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/errno.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/local_lim.h \ + /usr/include/bits/locale.h \ + /usr/include/bits/long-double.h \ + /usr/include/bits/posix1_lim.h \ + /usr/include/bits/posix2_lim.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/sched.h \ + /usr/include/bits/select.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/bits/stdint-least.h \ + /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/time.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/timesize.h \ + /usr/include/bits/timex.h \ + /usr/include/bits/types.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__locale_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/types/wint_t.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/bits/uio_lim.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/wchar.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/bits/wordsize.h \ + /usr/include/bits/xopen_lim.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/backward/binders.h \ + /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/chrono.h \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/list.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/ostream.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/c++/16.1.1/bits/postypes.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/requires_hosted.h \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/bits/utility.h \ + /usr/include/c++/16.1.1/bits/vector.tcc \ + /usr/include/c++/16.1.1/bits/version.h \ + /usr/include/c++/16.1.1/cassert \ + /usr/include/c++/16.1.1/cctype \ + /usr/include/c++/16.1.1/cerrno \ + /usr/include/c++/16.1.1/charconv \ + /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/climits \ + /usr/include/c++/16.1.1/clocale \ + /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/cstddef \ + /usr/include/c++/16.1.1/cstdint \ + /usr/include/c++/16.1.1/cstdio \ + /usr/include/c++/16.1.1/cstdlib \ + /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/cwchar \ + /usr/include/c++/16.1.1/cwctype \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd \ + /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/limits \ + /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/set \ + /usr/include/c++/16.1.1/sstream \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/variant \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/version \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/ctype.h \ + /usr/include/endian.h \ + /usr/include/errno.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/gnu/stubs.h \ + /usr/include/limits.h \ + /usr/include/linux/errno.h \ + /usr/include/linux/limits.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/sched/types.h \ + /usr/include/linux/stddef.h \ + /usr/include/linux/types.h \ + /usr/include/locale.h \ + /usr/include/pthread.h \ + /usr/include/qt6/QtCore/QPointer \ + /usr/include/qt6/QtCore/QSet \ + /usr/include/qt6/QtCore/QTimer \ + /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/q20memory.h \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/q20utility.h \ + /usr/include/qt6/QtCore/q23type_traits.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/qabstracteventdispatcher.h \ + /usr/include/qt6/QtCore/qabstractitemmodel.h \ + /usr/include/qt6/QtCore/qalgorithms.h \ + /usr/include/qt6/QtCore/qalloc.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qarraydata.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qassert.h \ + /usr/include/qt6/QtCore/qatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qbasictimer.h \ + /usr/include/qt6/QtCore/qbindingstorage.h \ + /usr/include/qt6/QtCore/qbytearray.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qchar.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qdeadlinetimer.h \ + /usr/include/qt6/QtCore/qdebug.h \ + /usr/include/qt6/QtCore/qendian.h \ + /usr/include/qt6/QtCore/qeventloop.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qflags.h \ + /usr/include/qt6/QtCore/qfloat16.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qitemselectionmodel.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qiterator.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qline.h \ + /usr/include/qt6/QtCore/qlist.h \ + /usr/include/qt6/QtCore/qlocale.h \ + /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qmalloc.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnamespace.h \ + /usr/include/qt6/QtCore/qnumeric.h \ + /usr/include/qt6/QtCore/qobject.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qoverload.h \ + /usr/include/qt6/QtCore/qpair.h \ + /usr/include/qt6/QtCore/qpoint.h \ + /usr/include/qt6/QtCore/qpointer.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qregularexpression.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qscopeguard.h \ + /usr/include/qt6/QtCore/qset.h \ + /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/qt6/QtCore/qsize.h \ + /usr/include/qt6/QtCore/qspan.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qstringfwd.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qsysinfo.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qtformat_impl.h \ + /usr/include/qt6/QtCore/qtimer.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qttypetraits.h \ + /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qtypes.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/qyieldcpu.h \ + /usr/include/qt6/QtGui/QUndoStack \ + /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtGui/qbrush.h \ + /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qcursor.h \ + /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtGui/qimage.h \ + /usr/include/qt6/QtGui/qkeysequence.h \ + /usr/include/qt6/QtGui/qpaintdevice.h \ + /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h \ + /usr/include/qt6/QtGui/qrgb.h \ + /usr/include/qt6/QtGui/qrgba64.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtGui/qtguiglobal.h \ + /usr/include/qt6/QtGui/qtransform.h \ + /usr/include/qt6/QtGui/qundostack.h \ + /usr/include/qt6/QtGui/qvalidator.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtWidgets/QHeaderView \ + /usr/include/qt6/QtWidgets/QStyledItemDelegate \ + /usr/include/qt6/QtWidgets/QTableView \ + /usr/include/qt6/QtWidgets/QWidget \ + /usr/include/qt6/QtWidgets/qabstractitemdelegate.h \ + /usr/include/qt6/QtWidgets/qabstractitemview.h \ + /usr/include/qt6/QtWidgets/qabstractscrollarea.h \ + /usr/include/qt6/QtWidgets/qabstractslider.h \ + /usr/include/qt6/QtWidgets/qabstractspinbox.h \ + /usr/include/qt6/QtWidgets/qframe.h \ + /usr/include/qt6/QtWidgets/qheaderview.h \ + /usr/include/qt6/QtWidgets/qrubberband.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtWidgets/qslider.h \ + /usr/include/qt6/QtWidgets/qstyle.h \ + /usr/include/qt6/QtWidgets/qstyleditemdelegate.h \ + /usr/include/qt6/QtWidgets/qstyleoption.h \ + /usr/include/qt6/QtWidgets/qtabbar.h \ + /usr/include/qt6/QtWidgets/qtableview.h \ + /usr/include/qt6/QtWidgets/qtabwidget.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/sched.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdint.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/sys/cdefs.h \ + /usr/include/sys/select.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/sys/types.h \ + /usr/include/time.h \ + /usr/include/wchar.h \ + /usr/include/wctype.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterRowWidget.cpp b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterRowWidget.cpp new file mode 100644 index 0000000..a4aff55 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterRowWidget.cpp @@ -0,0 +1,122 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'FilterRowWidget.h' +** +** Created by: The Qt Meta Object Compiler version 69 (Qt 6.11.1) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../include/wayland_qt_base/FilterRowWidget.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'FilterRowWidget.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 69 +#error "This file was generated using the moc from 6.11.1. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { +struct qt_meta_tag_ZN10QtWlPlugin15FilterRowWidgetE_t {}; +} // unnamed namespace + +template <> constexpr inline auto QtWlPlugin::FilterRowWidget::qt_create_metaobjectdata() +{ + namespace QMC = QtMocConstants; + QtMocHelpers::StringRefStorage qt_stringData { + "QtWlPlugin::FilterRowWidget", + "filterChanged", + "", + "column", + "text" + }; + + QtMocHelpers::UintData qt_methods { + // Signal 'filterChanged' + QtMocHelpers::SignalData(1, 2, QMC::AccessPublic, QMetaType::Void, {{ + { QMetaType::Int, 3 }, { QMetaType::QString, 4 }, + }}), + }; + QtMocHelpers::UintData qt_properties { + }; + QtMocHelpers::UintData qt_enums { + }; + return QtMocHelpers::metaObjectData(QMC::MetaObjectFlag{}, qt_stringData, + qt_methods, qt_properties, qt_enums); +} +Q_CONSTINIT const QMetaObject QtWlPlugin::FilterRowWidget::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_staticMetaObjectStaticContent.stringdata, + qt_staticMetaObjectStaticContent.data, + qt_static_metacall, + nullptr, + qt_staticMetaObjectRelocatingContent.metaTypes, + nullptr +} }; + +void QtWlPlugin::FilterRowWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + auto *_t = static_cast(_o); + if (_c == QMetaObject::InvokeMetaMethod) { + switch (_id) { + case 0: _t->filterChanged((*reinterpret_cast>(_a[1])),(*reinterpret_cast>(_a[2]))); break; + default: ; + } + } + if (_c == QMetaObject::IndexOfMethod) { + if (QtMocHelpers::indexOfMethod(_a, &FilterRowWidget::filterChanged, 0)) + return; + } +} + +const QMetaObject *QtWlPlugin::FilterRowWidget::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *QtWlPlugin::FilterRowWidget::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_staticMetaObjectStaticContent.strings)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int QtWlPlugin::FilterRowWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 1) + qt_static_metacall(this, _c, _id, _a); + _id -= 1; + } + if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 1) + *reinterpret_cast(_a[0]) = QMetaType(); + _id -= 1; + } + return _id; +} + +// SIGNAL 0 +void QtWlPlugin::FilterRowWidget::filterChanged(int _t1, const QString & _t2) +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr, _t1, _t2); +} +QT_WARNING_POP diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterRowWidget.cpp.d b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterRowWidget.cpp.d new file mode 100644 index 0000000..74e04c8 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterRowWidget.cpp.d @@ -0,0 +1,481 @@ +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterRowWidget.cpp: /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterRowWidget.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h \ + /usr/include/alloca.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/asm/bitsperlong.h \ + /usr/include/asm/errno.h \ + /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h \ + /usr/include/asm/types.h \ + /usr/include/assert.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/cpu-set.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/errno.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/local_lim.h \ + /usr/include/bits/locale.h \ + /usr/include/bits/long-double.h \ + /usr/include/bits/posix1_lim.h \ + /usr/include/bits/posix2_lim.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/sched.h \ + /usr/include/bits/select.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/bits/stdint-least.h \ + /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/time.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/timesize.h \ + /usr/include/bits/timex.h \ + /usr/include/bits/types.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__locale_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/types/wint_t.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/bits/uio_lim.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/wchar.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/bits/wordsize.h \ + /usr/include/bits/xopen_lim.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/backward/binders.h \ + /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/chrono.h \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/list.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/ostream.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/c++/16.1.1/bits/postypes.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/requires_hosted.h \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/bits/utility.h \ + /usr/include/c++/16.1.1/bits/vector.tcc \ + /usr/include/c++/16.1.1/bits/version.h \ + /usr/include/c++/16.1.1/cassert \ + /usr/include/c++/16.1.1/cctype \ + /usr/include/c++/16.1.1/cerrno \ + /usr/include/c++/16.1.1/charconv \ + /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/climits \ + /usr/include/c++/16.1.1/clocale \ + /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/cstddef \ + /usr/include/c++/16.1.1/cstdint \ + /usr/include/c++/16.1.1/cstdio \ + /usr/include/c++/16.1.1/cstdlib \ + /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/cwchar \ + /usr/include/c++/16.1.1/cwctype \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd \ + /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/limits \ + /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/set \ + /usr/include/c++/16.1.1/sstream \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/variant \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/version \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/ctype.h \ + /usr/include/endian.h \ + /usr/include/errno.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/gnu/stubs.h \ + /usr/include/limits.h \ + /usr/include/linux/errno.h \ + /usr/include/linux/limits.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/sched/types.h \ + /usr/include/linux/stddef.h \ + /usr/include/linux/types.h \ + /usr/include/locale.h \ + /usr/include/pthread.h \ + /usr/include/qt6/QtCore/QVector \ + /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/q20memory.h \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/q20utility.h \ + /usr/include/qt6/QtCore/q23type_traits.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/qalgorithms.h \ + /usr/include/qt6/QtCore/qalloc.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qarraydata.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qassert.h \ + /usr/include/qt6/QtCore/qatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qbindingstorage.h \ + /usr/include/qt6/QtCore/qbytearray.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qchar.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qdebug.h \ + /usr/include/qt6/QtCore/qendian.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qflags.h \ + /usr/include/qt6/QtCore/qfloat16.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qiterator.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qline.h \ + /usr/include/qt6/QtCore/qlist.h \ + /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qmalloc.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnamespace.h \ + /usr/include/qt6/QtCore/qnumeric.h \ + /usr/include/qt6/QtCore/qobject.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qoverload.h \ + /usr/include/qt6/QtCore/qpair.h \ + /usr/include/qt6/QtCore/qpoint.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qscopeguard.h \ + /usr/include/qt6/QtCore/qset.h \ + /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/qt6/QtCore/qsize.h \ + /usr/include/qt6/QtCore/qspan.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qstringfwd.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qsysinfo.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qtformat_impl.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qttypetraits.h \ + /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qtypes.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qvector.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/qyieldcpu.h \ + /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtGui/qbrush.h \ + /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qcursor.h \ + /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtGui/qimage.h \ + /usr/include/qt6/QtGui/qkeysequence.h \ + /usr/include/qt6/QtGui/qpaintdevice.h \ + /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h \ + /usr/include/qt6/QtGui/qrgb.h \ + /usr/include/qt6/QtGui/qrgba64.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtGui/qtguiglobal.h \ + /usr/include/qt6/QtGui/qtransform.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtWidgets/QWidget \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/sched.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdint.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/sys/cdefs.h \ + /usr/include/sys/select.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/sys/types.h \ + /usr/include/time.h \ + /usr/include/wchar.h \ + /usr/include/wctype.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterableHeaderView.cpp b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterableHeaderView.cpp new file mode 100644 index 0000000..1c0cb8a --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterableHeaderView.cpp @@ -0,0 +1,126 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'FilterableHeaderView.h' +** +** Created by: The Qt Meta Object Compiler version 69 (Qt 6.11.1) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../include/wayland_qt_base/FilterableHeaderView.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'FilterableHeaderView.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 69 +#error "This file was generated using the moc from 6.11.1. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { +struct qt_meta_tag_ZN10QtWlPlugin20FilterableHeaderViewE_t {}; +} // unnamed namespace + +template <> constexpr inline auto QtWlPlugin::FilterableHeaderView::qt_create_metaobjectdata() +{ + namespace QMC = QtMocConstants; + QtMocHelpers::StringRefStorage qt_stringData { + "QtWlPlugin::FilterableHeaderView", + "filterChanged", + "", + "column", + "text", + "adjustInputPositions" + }; + + QtMocHelpers::UintData qt_methods { + // Signal 'filterChanged' + QtMocHelpers::SignalData(1, 2, QMC::AccessPublic, QMetaType::Void, {{ + { QMetaType::Int, 3 }, { QMetaType::QString, 4 }, + }}), + // Slot 'adjustInputPositions' + QtMocHelpers::SlotData(5, 2, QMC::AccessPrivate, QMetaType::Void), + }; + QtMocHelpers::UintData qt_properties { + }; + QtMocHelpers::UintData qt_enums { + }; + return QtMocHelpers::metaObjectData(QMC::MetaObjectFlag{}, qt_stringData, + qt_methods, qt_properties, qt_enums); +} +Q_CONSTINIT const QMetaObject QtWlPlugin::FilterableHeaderView::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_staticMetaObjectStaticContent.stringdata, + qt_staticMetaObjectStaticContent.data, + qt_static_metacall, + nullptr, + qt_staticMetaObjectRelocatingContent.metaTypes, + nullptr +} }; + +void QtWlPlugin::FilterableHeaderView::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + auto *_t = static_cast(_o); + if (_c == QMetaObject::InvokeMetaMethod) { + switch (_id) { + case 0: _t->filterChanged((*reinterpret_cast>(_a[1])),(*reinterpret_cast>(_a[2]))); break; + case 1: _t->adjustInputPositions(); break; + default: ; + } + } + if (_c == QMetaObject::IndexOfMethod) { + if (QtMocHelpers::indexOfMethod(_a, &FilterableHeaderView::filterChanged, 0)) + return; + } +} + +const QMetaObject *QtWlPlugin::FilterableHeaderView::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *QtWlPlugin::FilterableHeaderView::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_staticMetaObjectStaticContent.strings)) + return static_cast(this); + return QHeaderView::qt_metacast(_clname); +} + +int QtWlPlugin::FilterableHeaderView::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QHeaderView::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 2) + qt_static_metacall(this, _c, _id, _a); + _id -= 2; + } + if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 2) + *reinterpret_cast(_a[0]) = QMetaType(); + _id -= 2; + } + return _id; +} + +// SIGNAL 0 +void QtWlPlugin::FilterableHeaderView::filterChanged(int _t1, const QString & _t2) +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr, _t1, _t2); +} +QT_WARNING_POP diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterableHeaderView.cpp.d b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterableHeaderView.cpp.d new file mode 100644 index 0000000..c6f1924 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterableHeaderView.cpp.d @@ -0,0 +1,499 @@ +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FilterableHeaderView.cpp: /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterableHeaderView.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h \ + /usr/include/alloca.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/asm/bitsperlong.h \ + /usr/include/asm/errno.h \ + /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h \ + /usr/include/asm/types.h \ + /usr/include/assert.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/cpu-set.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/errno.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/local_lim.h \ + /usr/include/bits/locale.h \ + /usr/include/bits/long-double.h \ + /usr/include/bits/posix1_lim.h \ + /usr/include/bits/posix2_lim.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/sched.h \ + /usr/include/bits/select.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/bits/stdint-least.h \ + /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/time.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/timesize.h \ + /usr/include/bits/timex.h \ + /usr/include/bits/types.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__locale_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/types/wint_t.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/bits/uio_lim.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/wchar.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/bits/wordsize.h \ + /usr/include/bits/xopen_lim.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/backward/binders.h \ + /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/chrono.h \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/list.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/ostream.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/c++/16.1.1/bits/postypes.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/requires_hosted.h \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/bits/utility.h \ + /usr/include/c++/16.1.1/bits/vector.tcc \ + /usr/include/c++/16.1.1/bits/version.h \ + /usr/include/c++/16.1.1/cassert \ + /usr/include/c++/16.1.1/cctype \ + /usr/include/c++/16.1.1/cerrno \ + /usr/include/c++/16.1.1/charconv \ + /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/climits \ + /usr/include/c++/16.1.1/clocale \ + /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/cstddef \ + /usr/include/c++/16.1.1/cstdint \ + /usr/include/c++/16.1.1/cstdio \ + /usr/include/c++/16.1.1/cstdlib \ + /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/cwchar \ + /usr/include/c++/16.1.1/cwctype \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd \ + /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/limits \ + /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/set \ + /usr/include/c++/16.1.1/sstream \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/variant \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/version \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/ctype.h \ + /usr/include/endian.h \ + /usr/include/errno.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/gnu/stubs.h \ + /usr/include/limits.h \ + /usr/include/linux/errno.h \ + /usr/include/linux/limits.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/sched/types.h \ + /usr/include/linux/stddef.h \ + /usr/include/linux/types.h \ + /usr/include/locale.h \ + /usr/include/pthread.h \ + /usr/include/qt6/QtCore/QVector \ + /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/q20memory.h \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/q20utility.h \ + /usr/include/qt6/QtCore/q23type_traits.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/qabstractitemmodel.h \ + /usr/include/qt6/QtCore/qalgorithms.h \ + /usr/include/qt6/QtCore/qalloc.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qarraydata.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qassert.h \ + /usr/include/qt6/QtCore/qatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qbindingstorage.h \ + /usr/include/qt6/QtCore/qbytearray.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qchar.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qdebug.h \ + /usr/include/qt6/QtCore/qendian.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qflags.h \ + /usr/include/qt6/QtCore/qfloat16.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qitemselectionmodel.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qiterator.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qline.h \ + /usr/include/qt6/QtCore/qlist.h \ + /usr/include/qt6/QtCore/qlocale.h \ + /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qmalloc.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnamespace.h \ + /usr/include/qt6/QtCore/qnumeric.h \ + /usr/include/qt6/QtCore/qobject.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qoverload.h \ + /usr/include/qt6/QtCore/qpair.h \ + /usr/include/qt6/QtCore/qpoint.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qregularexpression.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qscopeguard.h \ + /usr/include/qt6/QtCore/qset.h \ + /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/qt6/QtCore/qsize.h \ + /usr/include/qt6/QtCore/qspan.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qstringfwd.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qsysinfo.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qtformat_impl.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qttypetraits.h \ + /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qtypes.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qvector.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/qyieldcpu.h \ + /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtGui/qbrush.h \ + /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qcursor.h \ + /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtGui/qimage.h \ + /usr/include/qt6/QtGui/qkeysequence.h \ + /usr/include/qt6/QtGui/qpaintdevice.h \ + /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h \ + /usr/include/qt6/QtGui/qrgb.h \ + /usr/include/qt6/QtGui/qrgba64.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtGui/qtguiglobal.h \ + /usr/include/qt6/QtGui/qtransform.h \ + /usr/include/qt6/QtGui/qvalidator.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtWidgets/QHeaderView \ + /usr/include/qt6/QtWidgets/qabstractitemdelegate.h \ + /usr/include/qt6/QtWidgets/qabstractitemview.h \ + /usr/include/qt6/QtWidgets/qabstractscrollarea.h \ + /usr/include/qt6/QtWidgets/qabstractslider.h \ + /usr/include/qt6/QtWidgets/qabstractspinbox.h \ + /usr/include/qt6/QtWidgets/qframe.h \ + /usr/include/qt6/QtWidgets/qheaderview.h \ + /usr/include/qt6/QtWidgets/qrubberband.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtWidgets/qslider.h \ + /usr/include/qt6/QtWidgets/qstyle.h \ + /usr/include/qt6/QtWidgets/qstyleoption.h \ + /usr/include/qt6/QtWidgets/qtabbar.h \ + /usr/include/qt6/QtWidgets/qtabwidget.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/sched.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdint.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/sys/cdefs.h \ + /usr/include/sys/select.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/sys/types.h \ + /usr/include/time.h \ + /usr/include/wchar.h \ + /usr/include/wctype.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FindReplacePanel.cpp b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FindReplacePanel.cpp new file mode 100644 index 0000000..254c210 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FindReplacePanel.cpp @@ -0,0 +1,157 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'FindReplacePanel.h' +** +** Created by: The Qt Meta Object Compiler version 69 (Qt 6.11.1) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../include/wayland_qt_base/FindReplacePanel.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'FindReplacePanel.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 69 +#error "This file was generated using the moc from 6.11.1. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { +struct qt_meta_tag_ZN10QtWlPlugin16FindReplacePanelE_t {}; +} // unnamed namespace + +template <> constexpr inline auto QtWlPlugin::FindReplacePanel::qt_create_metaobjectdata() +{ + namespace QMC = QtMocConstants; + QtMocHelpers::StringRefStorage qt_stringData { + "QtWlPlugin::FindReplacePanel", + "findRequested", + "", + "forward", + "replaceRequested", + "replaceAllRequested", + "panelClosed" + }; + + QtMocHelpers::UintData qt_methods { + // Signal 'findRequested' + QtMocHelpers::SignalData(1, 2, QMC::AccessPublic, QMetaType::Void, {{ + { QMetaType::Bool, 3 }, + }}), + // Signal 'replaceRequested' + QtMocHelpers::SignalData(4, 2, QMC::AccessPublic, QMetaType::Void), + // Signal 'replaceAllRequested' + QtMocHelpers::SignalData(5, 2, QMC::AccessPublic, QMetaType::Void), + // Signal 'panelClosed' + QtMocHelpers::SignalData(6, 2, QMC::AccessPublic, QMetaType::Void), + }; + QtMocHelpers::UintData qt_properties { + }; + QtMocHelpers::UintData qt_enums { + }; + return QtMocHelpers::metaObjectData(QMC::MetaObjectFlag{}, qt_stringData, + qt_methods, qt_properties, qt_enums); +} +Q_CONSTINIT const QMetaObject QtWlPlugin::FindReplacePanel::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_staticMetaObjectStaticContent.stringdata, + qt_staticMetaObjectStaticContent.data, + qt_static_metacall, + nullptr, + qt_staticMetaObjectRelocatingContent.metaTypes, + nullptr +} }; + +void QtWlPlugin::FindReplacePanel::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + auto *_t = static_cast(_o); + if (_c == QMetaObject::InvokeMetaMethod) { + switch (_id) { + case 0: _t->findRequested((*reinterpret_cast>(_a[1]))); break; + case 1: _t->replaceRequested(); break; + case 2: _t->replaceAllRequested(); break; + case 3: _t->panelClosed(); break; + default: ; + } + } + if (_c == QMetaObject::IndexOfMethod) { + if (QtMocHelpers::indexOfMethod(_a, &FindReplacePanel::findRequested, 0)) + return; + if (QtMocHelpers::indexOfMethod(_a, &FindReplacePanel::replaceRequested, 1)) + return; + if (QtMocHelpers::indexOfMethod(_a, &FindReplacePanel::replaceAllRequested, 2)) + return; + if (QtMocHelpers::indexOfMethod(_a, &FindReplacePanel::panelClosed, 3)) + return; + } +} + +const QMetaObject *QtWlPlugin::FindReplacePanel::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *QtWlPlugin::FindReplacePanel::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_staticMetaObjectStaticContent.strings)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int QtWlPlugin::FindReplacePanel::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 4) + qt_static_metacall(this, _c, _id, _a); + _id -= 4; + } + if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 4) + *reinterpret_cast(_a[0]) = QMetaType(); + _id -= 4; + } + return _id; +} + +// SIGNAL 0 +void QtWlPlugin::FindReplacePanel::findRequested(bool _t1) +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr, _t1); +} + +// SIGNAL 1 +void QtWlPlugin::FindReplacePanel::replaceRequested() +{ + QMetaObject::activate(this, &staticMetaObject, 1, nullptr); +} + +// SIGNAL 2 +void QtWlPlugin::FindReplacePanel::replaceAllRequested() +{ + QMetaObject::activate(this, &staticMetaObject, 2, nullptr); +} + +// SIGNAL 3 +void QtWlPlugin::FindReplacePanel::panelClosed() +{ + QMetaObject::activate(this, &staticMetaObject, 3, nullptr); +} +QT_WARNING_POP diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FindReplacePanel.cpp.d b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FindReplacePanel.cpp.d new file mode 100644 index 0000000..c034a37 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FindReplacePanel.cpp.d @@ -0,0 +1,479 @@ +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FindReplacePanel.cpp: /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FindReplacePanel.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h \ + /usr/include/alloca.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/asm/bitsperlong.h \ + /usr/include/asm/errno.h \ + /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h \ + /usr/include/asm/types.h \ + /usr/include/assert.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/cpu-set.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/errno.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/local_lim.h \ + /usr/include/bits/locale.h \ + /usr/include/bits/long-double.h \ + /usr/include/bits/posix1_lim.h \ + /usr/include/bits/posix2_lim.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/sched.h \ + /usr/include/bits/select.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/bits/stdint-least.h \ + /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/time.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/timesize.h \ + /usr/include/bits/timex.h \ + /usr/include/bits/types.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__locale_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/types/wint_t.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/bits/uio_lim.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/wchar.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/bits/wordsize.h \ + /usr/include/bits/xopen_lim.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/backward/binders.h \ + /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/chrono.h \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/list.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/ostream.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/c++/16.1.1/bits/postypes.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/requires_hosted.h \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/bits/utility.h \ + /usr/include/c++/16.1.1/bits/vector.tcc \ + /usr/include/c++/16.1.1/bits/version.h \ + /usr/include/c++/16.1.1/cassert \ + /usr/include/c++/16.1.1/cctype \ + /usr/include/c++/16.1.1/cerrno \ + /usr/include/c++/16.1.1/charconv \ + /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/climits \ + /usr/include/c++/16.1.1/clocale \ + /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/cstddef \ + /usr/include/c++/16.1.1/cstdint \ + /usr/include/c++/16.1.1/cstdio \ + /usr/include/c++/16.1.1/cstdlib \ + /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/cwchar \ + /usr/include/c++/16.1.1/cwctype \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd \ + /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/limits \ + /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/set \ + /usr/include/c++/16.1.1/sstream \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/variant \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/version \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/ctype.h \ + /usr/include/endian.h \ + /usr/include/errno.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/gnu/stubs.h \ + /usr/include/limits.h \ + /usr/include/linux/errno.h \ + /usr/include/linux/limits.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/sched/types.h \ + /usr/include/linux/stddef.h \ + /usr/include/linux/types.h \ + /usr/include/locale.h \ + /usr/include/pthread.h \ + /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/q20memory.h \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/q20utility.h \ + /usr/include/qt6/QtCore/q23type_traits.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/qalgorithms.h \ + /usr/include/qt6/QtCore/qalloc.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qarraydata.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qassert.h \ + /usr/include/qt6/QtCore/qatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qbindingstorage.h \ + /usr/include/qt6/QtCore/qbytearray.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qchar.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qdebug.h \ + /usr/include/qt6/QtCore/qendian.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qflags.h \ + /usr/include/qt6/QtCore/qfloat16.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qiterator.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qline.h \ + /usr/include/qt6/QtCore/qlist.h \ + /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qmalloc.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnamespace.h \ + /usr/include/qt6/QtCore/qnumeric.h \ + /usr/include/qt6/QtCore/qobject.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qoverload.h \ + /usr/include/qt6/QtCore/qpair.h \ + /usr/include/qt6/QtCore/qpoint.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qscopeguard.h \ + /usr/include/qt6/QtCore/qset.h \ + /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/qt6/QtCore/qsize.h \ + /usr/include/qt6/QtCore/qspan.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qstringfwd.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qsysinfo.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qtformat_impl.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qttypetraits.h \ + /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qtypes.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/qyieldcpu.h \ + /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtGui/qbrush.h \ + /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qcursor.h \ + /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtGui/qimage.h \ + /usr/include/qt6/QtGui/qkeysequence.h \ + /usr/include/qt6/QtGui/qpaintdevice.h \ + /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h \ + /usr/include/qt6/QtGui/qrgb.h \ + /usr/include/qt6/QtGui/qrgba64.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtGui/qtguiglobal.h \ + /usr/include/qt6/QtGui/qtransform.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtWidgets/QWidget \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/sched.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdint.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/sys/cdefs.h \ + /usr/include/sys/select.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/sys/types.h \ + /usr/include/time.h \ + /usr/include/wchar.h \ + /usr/include/wctype.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FocusManager.cpp b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FocusManager.cpp new file mode 100644 index 0000000..fee00d4 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FocusManager.cpp @@ -0,0 +1,170 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'FocusManager.h' +** +** Created by: The Qt Meta Object Compiler version 69 (Qt 6.11.1) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../include/wayland_qt_base/FocusManager.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'FocusManager.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 69 +#error "This file was generated using the moc from 6.11.1. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { +struct qt_meta_tag_ZN10QtWlPlugin12FocusManagerE_t {}; +} // unnamed namespace + +template <> constexpr inline auto QtWlPlugin::FocusManager::qt_create_metaobjectdata() +{ + namespace QMC = QtMocConstants; + QtMocHelpers::StringRefStorage qt_stringData { + "QtWlPlugin::FocusManager", + "activated", + "", + "deactivated", + "inputWidgetEntered", + "QWidget*", + "w", + "inputWidgetExited" + }; + + QtMocHelpers::UintData qt_methods { + // Signal 'activated' + QtMocHelpers::SignalData(1, 2, QMC::AccessPublic, QMetaType::Void), + // Signal 'deactivated' + QtMocHelpers::SignalData(3, 2, QMC::AccessPublic, QMetaType::Void), + // Signal 'inputWidgetEntered' + QtMocHelpers::SignalData(4, 2, QMC::AccessPublic, QMetaType::Void, {{ + { 0x80000000 | 5, 6 }, + }}), + // Signal 'inputWidgetExited' + QtMocHelpers::SignalData(7, 2, QMC::AccessPublic, QMetaType::Void), + }; + QtMocHelpers::UintData qt_properties { + }; + QtMocHelpers::UintData qt_enums { + }; + return QtMocHelpers::metaObjectData(QMC::MetaObjectFlag{}, qt_stringData, + qt_methods, qt_properties, qt_enums); +} +Q_CONSTINIT const QMetaObject QtWlPlugin::FocusManager::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_staticMetaObjectStaticContent.stringdata, + qt_staticMetaObjectStaticContent.data, + qt_static_metacall, + nullptr, + qt_staticMetaObjectRelocatingContent.metaTypes, + nullptr +} }; + +void QtWlPlugin::FocusManager::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + auto *_t = static_cast(_o); + if (_c == QMetaObject::InvokeMetaMethod) { + switch (_id) { + case 0: _t->activated(); break; + case 1: _t->deactivated(); break; + case 2: _t->inputWidgetEntered((*reinterpret_cast>(_a[1]))); break; + case 3: _t->inputWidgetExited(); break; + default: ; + } + } + if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + switch (_id) { + default: *reinterpret_cast(_a[0]) = QMetaType(); break; + case 2: + switch (*reinterpret_cast(_a[1])) { + default: *reinterpret_cast(_a[0]) = QMetaType(); break; + case 0: + *reinterpret_cast(_a[0]) = QMetaType::fromType< QWidget* >(); break; + } + break; + } + } + if (_c == QMetaObject::IndexOfMethod) { + if (QtMocHelpers::indexOfMethod(_a, &FocusManager::activated, 0)) + return; + if (QtMocHelpers::indexOfMethod(_a, &FocusManager::deactivated, 1)) + return; + if (QtMocHelpers::indexOfMethod(_a, &FocusManager::inputWidgetEntered, 2)) + return; + if (QtMocHelpers::indexOfMethod(_a, &FocusManager::inputWidgetExited, 3)) + return; + } +} + +const QMetaObject *QtWlPlugin::FocusManager::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *QtWlPlugin::FocusManager::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_staticMetaObjectStaticContent.strings)) + return static_cast(this); + return QObject::qt_metacast(_clname); +} + +int QtWlPlugin::FocusManager::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QObject::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 4) + qt_static_metacall(this, _c, _id, _a); + _id -= 4; + } + if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 4) + qt_static_metacall(this, _c, _id, _a); + _id -= 4; + } + return _id; +} + +// SIGNAL 0 +void QtWlPlugin::FocusManager::activated() +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr); +} + +// SIGNAL 1 +void QtWlPlugin::FocusManager::deactivated() +{ + QMetaObject::activate(this, &staticMetaObject, 1, nullptr); +} + +// SIGNAL 2 +void QtWlPlugin::FocusManager::inputWidgetEntered(QWidget * _t1) +{ + QMetaObject::activate(this, &staticMetaObject, 2, nullptr, _t1); +} + +// SIGNAL 3 +void QtWlPlugin::FocusManager::inputWidgetExited() +{ + QMetaObject::activate(this, &staticMetaObject, 3, nullptr); +} +QT_WARNING_POP diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FocusManager.cpp.d b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FocusManager.cpp.d new file mode 100644 index 0000000..51ccca0 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FocusManager.cpp.d @@ -0,0 +1,486 @@ +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_FocusManager.cpp: /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FocusManager.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h \ + /usr/include/alloca.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/asm/bitsperlong.h \ + /usr/include/asm/errno.h \ + /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h \ + /usr/include/asm/types.h \ + /usr/include/assert.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/cpu-set.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/errno.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/local_lim.h \ + /usr/include/bits/locale.h \ + /usr/include/bits/long-double.h \ + /usr/include/bits/posix1_lim.h \ + /usr/include/bits/posix2_lim.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/sched.h \ + /usr/include/bits/select.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/bits/stdint-least.h \ + /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/time.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/timesize.h \ + /usr/include/bits/timex.h \ + /usr/include/bits/types.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__locale_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/types/wint_t.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/bits/uio_lim.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/wchar.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/bits/wordsize.h \ + /usr/include/bits/xopen_lim.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/backward/binders.h \ + /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/chrono.h \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/list.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/ostream.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/c++/16.1.1/bits/postypes.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/requires_hosted.h \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/bits/utility.h \ + /usr/include/c++/16.1.1/bits/vector.tcc \ + /usr/include/c++/16.1.1/bits/version.h \ + /usr/include/c++/16.1.1/cassert \ + /usr/include/c++/16.1.1/cctype \ + /usr/include/c++/16.1.1/cerrno \ + /usr/include/c++/16.1.1/charconv \ + /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/climits \ + /usr/include/c++/16.1.1/clocale \ + /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/cstddef \ + /usr/include/c++/16.1.1/cstdint \ + /usr/include/c++/16.1.1/cstdio \ + /usr/include/c++/16.1.1/cstdlib \ + /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/cwchar \ + /usr/include/c++/16.1.1/cwctype \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd \ + /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/limits \ + /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/set \ + /usr/include/c++/16.1.1/sstream \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/variant \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/version \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/ctype.h \ + /usr/include/endian.h \ + /usr/include/errno.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/gnu/stubs.h \ + /usr/include/limits.h \ + /usr/include/linux/errno.h \ + /usr/include/linux/limits.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/sched/types.h \ + /usr/include/linux/stddef.h \ + /usr/include/linux/types.h \ + /usr/include/locale.h \ + /usr/include/pthread.h \ + /usr/include/qt6/QtCore/QObject \ + /usr/include/qt6/QtCore/QPointer \ + /usr/include/qt6/QtCore/QSet \ + /usr/include/qt6/QtCore/QVector \ + /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/q20memory.h \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/q20utility.h \ + /usr/include/qt6/QtCore/q23type_traits.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/qalgorithms.h \ + /usr/include/qt6/QtCore/qalloc.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qarraydata.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qassert.h \ + /usr/include/qt6/QtCore/qatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qbindingstorage.h \ + /usr/include/qt6/QtCore/qbytearray.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qchar.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qdebug.h \ + /usr/include/qt6/QtCore/qendian.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qflags.h \ + /usr/include/qt6/QtCore/qfloat16.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qiterator.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qline.h \ + /usr/include/qt6/QtCore/qlist.h \ + /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qmalloc.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnamespace.h \ + /usr/include/qt6/QtCore/qnumeric.h \ + /usr/include/qt6/QtCore/qobject.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qoverload.h \ + /usr/include/qt6/QtCore/qpair.h \ + /usr/include/qt6/QtCore/qpoint.h \ + /usr/include/qt6/QtCore/qpointer.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qscopeguard.h \ + /usr/include/qt6/QtCore/qset.h \ + /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/qt6/QtCore/qsize.h \ + /usr/include/qt6/QtCore/qspan.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qstringfwd.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qsysinfo.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qtformat_impl.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qttypetraits.h \ + /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qtypes.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qvector.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/qyieldcpu.h \ + /usr/include/qt6/QtGui/QKeySequence \ + /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtGui/qbrush.h \ + /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qcursor.h \ + /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtGui/qimage.h \ + /usr/include/qt6/QtGui/qkeysequence.h \ + /usr/include/qt6/QtGui/qpaintdevice.h \ + /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h \ + /usr/include/qt6/QtGui/qrgb.h \ + /usr/include/qt6/QtGui/qrgba64.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtGui/qtguiglobal.h \ + /usr/include/qt6/QtGui/qtransform.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtWidgets/QWidget \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/sched.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdint.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/sys/cdefs.h \ + /usr/include/sys/select.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/sys/types.h \ + /usr/include/time.h \ + /usr/include/wchar.h \ + /usr/include/wctype.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginSplitView.cpp b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginSplitView.cpp new file mode 100644 index 0000000..78527f3 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginSplitView.cpp @@ -0,0 +1,90 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'PluginSplitView.h' +** +** Created by: The Qt Meta Object Compiler version 69 (Qt 6.11.1) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../include/wayland_qt_base/PluginSplitView.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'PluginSplitView.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 69 +#error "This file was generated using the moc from 6.11.1. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { +struct qt_meta_tag_ZN10QtWlPlugin15PluginSplitViewE_t {}; +} // unnamed namespace + +template <> constexpr inline auto QtWlPlugin::PluginSplitView::qt_create_metaobjectdata() +{ + namespace QMC = QtMocConstants; + QtMocHelpers::StringRefStorage qt_stringData { + "QtWlPlugin::PluginSplitView" + }; + + QtMocHelpers::UintData qt_methods { + }; + QtMocHelpers::UintData qt_properties { + }; + QtMocHelpers::UintData qt_enums { + }; + return QtMocHelpers::metaObjectData(QMC::MetaObjectFlag{}, qt_stringData, + qt_methods, qt_properties, qt_enums); +} +Q_CONSTINIT const QMetaObject QtWlPlugin::PluginSplitView::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_staticMetaObjectStaticContent.stringdata, + qt_staticMetaObjectStaticContent.data, + qt_static_metacall, + nullptr, + qt_staticMetaObjectRelocatingContent.metaTypes, + nullptr +} }; + +void QtWlPlugin::PluginSplitView::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + auto *_t = static_cast(_o); + (void)_t; + (void)_c; + (void)_id; + (void)_a; +} + +const QMetaObject *QtWlPlugin::PluginSplitView::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *QtWlPlugin::PluginSplitView::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_staticMetaObjectStaticContent.strings)) + return static_cast(this); + return QSplitter::qt_metacast(_clname); +} + +int QtWlPlugin::PluginSplitView::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QSplitter::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginSplitView.cpp.d b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginSplitView.cpp.d new file mode 100644 index 0000000..cbe01a2 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginSplitView.cpp.d @@ -0,0 +1,481 @@ +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginSplitView.cpp: /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginSplitView.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h \ + /usr/include/alloca.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/asm/bitsperlong.h \ + /usr/include/asm/errno.h \ + /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h \ + /usr/include/asm/types.h \ + /usr/include/assert.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/cpu-set.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/errno.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/local_lim.h \ + /usr/include/bits/locale.h \ + /usr/include/bits/long-double.h \ + /usr/include/bits/posix1_lim.h \ + /usr/include/bits/posix2_lim.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/sched.h \ + /usr/include/bits/select.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/bits/stdint-least.h \ + /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/time.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/timesize.h \ + /usr/include/bits/timex.h \ + /usr/include/bits/types.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__locale_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/types/wint_t.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/bits/uio_lim.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/wchar.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/bits/wordsize.h \ + /usr/include/bits/xopen_lim.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/backward/binders.h \ + /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/chrono.h \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/list.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/ostream.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/c++/16.1.1/bits/postypes.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/requires_hosted.h \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/bits/utility.h \ + /usr/include/c++/16.1.1/bits/vector.tcc \ + /usr/include/c++/16.1.1/bits/version.h \ + /usr/include/c++/16.1.1/cassert \ + /usr/include/c++/16.1.1/cctype \ + /usr/include/c++/16.1.1/cerrno \ + /usr/include/c++/16.1.1/charconv \ + /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/climits \ + /usr/include/c++/16.1.1/clocale \ + /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/cstddef \ + /usr/include/c++/16.1.1/cstdint \ + /usr/include/c++/16.1.1/cstdio \ + /usr/include/c++/16.1.1/cstdlib \ + /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/cwchar \ + /usr/include/c++/16.1.1/cwctype \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd \ + /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/limits \ + /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/set \ + /usr/include/c++/16.1.1/sstream \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/variant \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/version \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/ctype.h \ + /usr/include/endian.h \ + /usr/include/errno.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/gnu/stubs.h \ + /usr/include/limits.h \ + /usr/include/linux/errno.h \ + /usr/include/linux/limits.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/sched/types.h \ + /usr/include/linux/stddef.h \ + /usr/include/linux/types.h \ + /usr/include/locale.h \ + /usr/include/pthread.h \ + /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/q20memory.h \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/q20utility.h \ + /usr/include/qt6/QtCore/q23type_traits.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/qalgorithms.h \ + /usr/include/qt6/QtCore/qalloc.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qarraydata.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qassert.h \ + /usr/include/qt6/QtCore/qatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qbindingstorage.h \ + /usr/include/qt6/QtCore/qbytearray.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qchar.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qdebug.h \ + /usr/include/qt6/QtCore/qendian.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qflags.h \ + /usr/include/qt6/QtCore/qfloat16.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qiterator.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qline.h \ + /usr/include/qt6/QtCore/qlist.h \ + /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qmalloc.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnamespace.h \ + /usr/include/qt6/QtCore/qnumeric.h \ + /usr/include/qt6/QtCore/qobject.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qoverload.h \ + /usr/include/qt6/QtCore/qpair.h \ + /usr/include/qt6/QtCore/qpoint.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qscopeguard.h \ + /usr/include/qt6/QtCore/qset.h \ + /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/qt6/QtCore/qsize.h \ + /usr/include/qt6/QtCore/qspan.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qstringfwd.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qsysinfo.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qtformat_impl.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qttypetraits.h \ + /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qtypes.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/qyieldcpu.h \ + /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtGui/qbrush.h \ + /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qcursor.h \ + /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtGui/qimage.h \ + /usr/include/qt6/QtGui/qkeysequence.h \ + /usr/include/qt6/QtGui/qpaintdevice.h \ + /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h \ + /usr/include/qt6/QtGui/qrgb.h \ + /usr/include/qt6/QtGui/qrgba64.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtGui/qtguiglobal.h \ + /usr/include/qt6/QtGui/qtransform.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtWidgets/QSplitter \ + /usr/include/qt6/QtWidgets/qframe.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtWidgets/qsplitter.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/sched.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdint.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/sys/cdefs.h \ + /usr/include/sys/select.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/sys/types.h \ + /usr/include/time.h \ + /usr/include/wchar.h \ + /usr/include/wctype.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginStatusBar.cpp b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginStatusBar.cpp new file mode 100644 index 0000000..ac611db --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginStatusBar.cpp @@ -0,0 +1,91 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'PluginStatusBar.h' +** +** Created by: The Qt Meta Object Compiler version 69 (Qt 6.11.1) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../include/wayland_qt_base/PluginStatusBar.h" +#include +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'PluginStatusBar.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 69 +#error "This file was generated using the moc from 6.11.1. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { +struct qt_meta_tag_ZN10QtWlPlugin15PluginStatusBarE_t {}; +} // unnamed namespace + +template <> constexpr inline auto QtWlPlugin::PluginStatusBar::qt_create_metaobjectdata() +{ + namespace QMC = QtMocConstants; + QtMocHelpers::StringRefStorage qt_stringData { + "QtWlPlugin::PluginStatusBar" + }; + + QtMocHelpers::UintData qt_methods { + }; + QtMocHelpers::UintData qt_properties { + }; + QtMocHelpers::UintData qt_enums { + }; + return QtMocHelpers::metaObjectData(QMC::MetaObjectFlag{}, qt_stringData, + qt_methods, qt_properties, qt_enums); +} +Q_CONSTINIT const QMetaObject QtWlPlugin::PluginStatusBar::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_staticMetaObjectStaticContent.stringdata, + qt_staticMetaObjectStaticContent.data, + qt_static_metacall, + nullptr, + qt_staticMetaObjectRelocatingContent.metaTypes, + nullptr +} }; + +void QtWlPlugin::PluginStatusBar::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + auto *_t = static_cast(_o); + (void)_t; + (void)_c; + (void)_id; + (void)_a; +} + +const QMetaObject *QtWlPlugin::PluginStatusBar::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *QtWlPlugin::PluginStatusBar::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_staticMetaObjectStaticContent.strings)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int QtWlPlugin::PluginStatusBar::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginStatusBar.cpp.d b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginStatusBar.cpp.d new file mode 100644 index 0000000..a84c7e8 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginStatusBar.cpp.d @@ -0,0 +1,487 @@ +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginStatusBar.cpp: /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginStatusBar.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h \ + /usr/include/alloca.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/asm/bitsperlong.h \ + /usr/include/asm/errno.h \ + /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h \ + /usr/include/asm/types.h \ + /usr/include/assert.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/cpu-set.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/errno.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/local_lim.h \ + /usr/include/bits/locale.h \ + /usr/include/bits/long-double.h \ + /usr/include/bits/posix1_lim.h \ + /usr/include/bits/posix2_lim.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/sched.h \ + /usr/include/bits/select.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/bits/stdint-least.h \ + /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/time.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/timesize.h \ + /usr/include/bits/timex.h \ + /usr/include/bits/types.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__locale_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/types/wint_t.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/bits/uio_lim.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/wchar.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/bits/wordsize.h \ + /usr/include/bits/xopen_lim.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/backward/binders.h \ + /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/chrono.h \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/list.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/ostream.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/c++/16.1.1/bits/postypes.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/requires_hosted.h \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/bits/utility.h \ + /usr/include/c++/16.1.1/bits/vector.tcc \ + /usr/include/c++/16.1.1/bits/version.h \ + /usr/include/c++/16.1.1/cassert \ + /usr/include/c++/16.1.1/cctype \ + /usr/include/c++/16.1.1/cerrno \ + /usr/include/c++/16.1.1/charconv \ + /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/climits \ + /usr/include/c++/16.1.1/clocale \ + /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/cstddef \ + /usr/include/c++/16.1.1/cstdint \ + /usr/include/c++/16.1.1/cstdio \ + /usr/include/c++/16.1.1/cstdlib \ + /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/cwchar \ + /usr/include/c++/16.1.1/cwctype \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd \ + /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/limits \ + /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/set \ + /usr/include/c++/16.1.1/sstream \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/variant \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/version \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/ctype.h \ + /usr/include/endian.h \ + /usr/include/errno.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/gnu/stubs.h \ + /usr/include/limits.h \ + /usr/include/linux/errno.h \ + /usr/include/linux/limits.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/sched/types.h \ + /usr/include/linux/stddef.h \ + /usr/include/linux/types.h \ + /usr/include/locale.h \ + /usr/include/pthread.h \ + /usr/include/qt6/QtCore/QMap \ + /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/q20memory.h \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/q20utility.h \ + /usr/include/qt6/QtCore/q23type_traits.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/qalgorithms.h \ + /usr/include/qt6/QtCore/qalloc.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qarraydata.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qassert.h \ + /usr/include/qt6/QtCore/qatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qbindingstorage.h \ + /usr/include/qt6/QtCore/qbytearray.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qchar.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qdebug.h \ + /usr/include/qt6/QtCore/qendian.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qflags.h \ + /usr/include/qt6/QtCore/qfloat16.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/qt6/QtCore/qiodevice.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qiterator.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qline.h \ + /usr/include/qt6/QtCore/qlist.h \ + /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qmalloc.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnamespace.h \ + /usr/include/qt6/QtCore/qnumeric.h \ + /usr/include/qt6/QtCore/qobject.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qoverload.h \ + /usr/include/qt6/QtCore/qpair.h \ + /usr/include/qt6/QtCore/qpoint.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qscopeguard.h \ + /usr/include/qt6/QtCore/qset.h \ + /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/qt6/QtCore/qsize.h \ + /usr/include/qt6/QtCore/qspan.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qstringfwd.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qsysinfo.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qtformat_impl.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qttypetraits.h \ + /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qtypes.h \ + /usr/include/qt6/QtCore/qurl.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/qyieldcpu.h \ + /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtGui/qbrush.h \ + /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qcursor.h \ + /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtGui/qimage.h \ + /usr/include/qt6/QtGui/qkeysequence.h \ + /usr/include/qt6/QtGui/qpaintdevice.h \ + /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qpicture.h \ + /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h \ + /usr/include/qt6/QtGui/qrgb.h \ + /usr/include/qt6/QtGui/qrgba64.h \ + /usr/include/qt6/QtGui/qtextdocument.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtGui/qtguiglobal.h \ + /usr/include/qt6/QtGui/qtransform.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtWidgets/QLabel \ + /usr/include/qt6/QtWidgets/QWidget \ + /usr/include/qt6/QtWidgets/qframe.h \ + /usr/include/qt6/QtWidgets/qlabel.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/sched.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdint.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/sys/cdefs.h \ + /usr/include/sys/select.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/sys/types.h \ + /usr/include/time.h \ + /usr/include/wchar.h \ + /usr/include/wctype.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginToolBar.cpp b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginToolBar.cpp new file mode 100644 index 0000000..2c33ea8 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginToolBar.cpp @@ -0,0 +1,90 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'PluginToolBar.h' +** +** Created by: The Qt Meta Object Compiler version 69 (Qt 6.11.1) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../include/wayland_qt_base/PluginToolBar.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'PluginToolBar.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 69 +#error "This file was generated using the moc from 6.11.1. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { +struct qt_meta_tag_ZN10QtWlPlugin13PluginToolBarE_t {}; +} // unnamed namespace + +template <> constexpr inline auto QtWlPlugin::PluginToolBar::qt_create_metaobjectdata() +{ + namespace QMC = QtMocConstants; + QtMocHelpers::StringRefStorage qt_stringData { + "QtWlPlugin::PluginToolBar" + }; + + QtMocHelpers::UintData qt_methods { + }; + QtMocHelpers::UintData qt_properties { + }; + QtMocHelpers::UintData qt_enums { + }; + return QtMocHelpers::metaObjectData(QMC::MetaObjectFlag{}, qt_stringData, + qt_methods, qt_properties, qt_enums); +} +Q_CONSTINIT const QMetaObject QtWlPlugin::PluginToolBar::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_staticMetaObjectStaticContent.stringdata, + qt_staticMetaObjectStaticContent.data, + qt_static_metacall, + nullptr, + qt_staticMetaObjectRelocatingContent.metaTypes, + nullptr +} }; + +void QtWlPlugin::PluginToolBar::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + auto *_t = static_cast(_o); + (void)_t; + (void)_c; + (void)_id; + (void)_a; +} + +const QMetaObject *QtWlPlugin::PluginToolBar::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *QtWlPlugin::PluginToolBar::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_staticMetaObjectStaticContent.strings)) + return static_cast(this); + return QToolBar::qt_metacast(_clname); +} + +int QtWlPlugin::PluginToolBar::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QToolBar::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginToolBar.cpp.d b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginToolBar.cpp.d new file mode 100644 index 0000000..26c675d --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginToolBar.cpp.d @@ -0,0 +1,481 @@ +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_PluginToolBar.cpp: /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginToolBar.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h \ + /usr/include/alloca.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/asm/bitsperlong.h \ + /usr/include/asm/errno.h \ + /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h \ + /usr/include/asm/types.h \ + /usr/include/assert.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/cpu-set.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/errno.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/local_lim.h \ + /usr/include/bits/locale.h \ + /usr/include/bits/long-double.h \ + /usr/include/bits/posix1_lim.h \ + /usr/include/bits/posix2_lim.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/sched.h \ + /usr/include/bits/select.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/bits/stdint-least.h \ + /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/time.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/timesize.h \ + /usr/include/bits/timex.h \ + /usr/include/bits/types.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__locale_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/types/wint_t.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/bits/uio_lim.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/wchar.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/bits/wordsize.h \ + /usr/include/bits/xopen_lim.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/backward/binders.h \ + /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/chrono.h \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/list.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/ostream.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/c++/16.1.1/bits/postypes.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/requires_hosted.h \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/bits/utility.h \ + /usr/include/c++/16.1.1/bits/vector.tcc \ + /usr/include/c++/16.1.1/bits/version.h \ + /usr/include/c++/16.1.1/cassert \ + /usr/include/c++/16.1.1/cctype \ + /usr/include/c++/16.1.1/cerrno \ + /usr/include/c++/16.1.1/charconv \ + /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/climits \ + /usr/include/c++/16.1.1/clocale \ + /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/cstddef \ + /usr/include/c++/16.1.1/cstdint \ + /usr/include/c++/16.1.1/cstdio \ + /usr/include/c++/16.1.1/cstdlib \ + /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/cwchar \ + /usr/include/c++/16.1.1/cwctype \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd \ + /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/limits \ + /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/set \ + /usr/include/c++/16.1.1/sstream \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/variant \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/version \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/ctype.h \ + /usr/include/endian.h \ + /usr/include/errno.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/gnu/stubs.h \ + /usr/include/limits.h \ + /usr/include/linux/errno.h \ + /usr/include/linux/limits.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/sched/types.h \ + /usr/include/linux/stddef.h \ + /usr/include/linux/types.h \ + /usr/include/locale.h \ + /usr/include/pthread.h \ + /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/q20memory.h \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/q20utility.h \ + /usr/include/qt6/QtCore/q23type_traits.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/qalgorithms.h \ + /usr/include/qt6/QtCore/qalloc.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qarraydata.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qassert.h \ + /usr/include/qt6/QtCore/qatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qbindingstorage.h \ + /usr/include/qt6/QtCore/qbytearray.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qchar.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qdebug.h \ + /usr/include/qt6/QtCore/qendian.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qflags.h \ + /usr/include/qt6/QtCore/qfloat16.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qiterator.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qline.h \ + /usr/include/qt6/QtCore/qlist.h \ + /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qmalloc.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnamespace.h \ + /usr/include/qt6/QtCore/qnumeric.h \ + /usr/include/qt6/QtCore/qobject.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qoverload.h \ + /usr/include/qt6/QtCore/qpair.h \ + /usr/include/qt6/QtCore/qpoint.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qscopeguard.h \ + /usr/include/qt6/QtCore/qset.h \ + /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/qt6/QtCore/qsize.h \ + /usr/include/qt6/QtCore/qspan.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qstringfwd.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qsysinfo.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qtformat_impl.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qttypetraits.h \ + /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qtypes.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/qyieldcpu.h \ + /usr/include/qt6/QtGui/QKeySequence \ + /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtGui/qbrush.h \ + /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qcursor.h \ + /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtGui/qimage.h \ + /usr/include/qt6/QtGui/qkeysequence.h \ + /usr/include/qt6/QtGui/qpaintdevice.h \ + /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h \ + /usr/include/qt6/QtGui/qrgb.h \ + /usr/include/qt6/QtGui/qrgba64.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtGui/qtguiglobal.h \ + /usr/include/qt6/QtGui/qtransform.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtWidgets/QToolBar \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtWidgets/qtoolbar.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/sched.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdint.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/sys/cdefs.h \ + /usr/include/sys/select.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/sys/types.h \ + /usr/include/time.h \ + /usr/include/wchar.h \ + /usr/include/wctype.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_ScopedFindReplacePanel.cpp b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_ScopedFindReplacePanel.cpp new file mode 100644 index 0000000..f2b3dc3 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_ScopedFindReplacePanel.cpp @@ -0,0 +1,90 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'ScopedFindReplacePanel.h' +** +** Created by: The Qt Meta Object Compiler version 69 (Qt 6.11.1) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../../include/wayland_qt_base/ScopedFindReplacePanel.h" +#include + +#include + +#include + + +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'ScopedFindReplacePanel.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 69 +#error "This file was generated using the moc from 6.11.1. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +#ifndef Q_CONSTINIT +#define Q_CONSTINIT +#endif + +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +QT_WARNING_DISABLE_GCC("-Wuseless-cast") +namespace { +struct qt_meta_tag_ZN10QtWlPlugin22ScopedFindReplacePanelE_t {}; +} // unnamed namespace + +template <> constexpr inline auto QtWlPlugin::ScopedFindReplacePanel::qt_create_metaobjectdata() +{ + namespace QMC = QtMocConstants; + QtMocHelpers::StringRefStorage qt_stringData { + "QtWlPlugin::ScopedFindReplacePanel" + }; + + QtMocHelpers::UintData qt_methods { + }; + QtMocHelpers::UintData qt_properties { + }; + QtMocHelpers::UintData qt_enums { + }; + return QtMocHelpers::metaObjectData(QMC::MetaObjectFlag{}, qt_stringData, + qt_methods, qt_properties, qt_enums); +} +Q_CONSTINIT const QMetaObject QtWlPlugin::ScopedFindReplacePanel::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_staticMetaObjectStaticContent.stringdata, + qt_staticMetaObjectStaticContent.data, + qt_static_metacall, + nullptr, + qt_staticMetaObjectRelocatingContent.metaTypes, + nullptr +} }; + +void QtWlPlugin::ScopedFindReplacePanel::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + auto *_t = static_cast(_o); + (void)_t; + (void)_c; + (void)_id; + (void)_a; +} + +const QMetaObject *QtWlPlugin::ScopedFindReplacePanel::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *QtWlPlugin::ScopedFindReplacePanel::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_staticMetaObjectStaticContent.strings)) + return static_cast(this); + return FindReplacePanel::qt_metacast(_clname); +} + +int QtWlPlugin::ScopedFindReplacePanel::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = FindReplacePanel::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_ScopedFindReplacePanel.cpp.d b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_ScopedFindReplacePanel.cpp.d new file mode 100644 index 0000000..d8760bf --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_ScopedFindReplacePanel.cpp.d @@ -0,0 +1,480 @@ +/home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/NFJ6QANG5N/moc_ScopedFindReplacePanel.cpp: /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ScopedFindReplacePanel.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FindReplacePanel.h \ + /usr/include/alloca.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/asm/bitsperlong.h \ + /usr/include/asm/errno.h \ + /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h \ + /usr/include/asm/types.h \ + /usr/include/assert.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/cpu-set.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/errno.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/local_lim.h \ + /usr/include/bits/locale.h \ + /usr/include/bits/long-double.h \ + /usr/include/bits/posix1_lim.h \ + /usr/include/bits/posix2_lim.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/sched.h \ + /usr/include/bits/select.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/bits/stdint-least.h \ + /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/time.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/timesize.h \ + /usr/include/bits/timex.h \ + /usr/include/bits/types.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__locale_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/types/wint_t.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/bits/uio_lim.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/wchar.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/bits/wordsize.h \ + /usr/include/bits/xopen_lim.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/backward/binders.h \ + /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/chrono.h \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/list.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/ostream.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/c++/16.1.1/bits/postypes.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/requires_hosted.h \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/bits/utility.h \ + /usr/include/c++/16.1.1/bits/vector.tcc \ + /usr/include/c++/16.1.1/bits/version.h \ + /usr/include/c++/16.1.1/cassert \ + /usr/include/c++/16.1.1/cctype \ + /usr/include/c++/16.1.1/cerrno \ + /usr/include/c++/16.1.1/charconv \ + /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/climits \ + /usr/include/c++/16.1.1/clocale \ + /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/cstddef \ + /usr/include/c++/16.1.1/cstdint \ + /usr/include/c++/16.1.1/cstdio \ + /usr/include/c++/16.1.1/cstdlib \ + /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/cwchar \ + /usr/include/c++/16.1.1/cwctype \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd \ + /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/limits \ + /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/set \ + /usr/include/c++/16.1.1/sstream \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/variant \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/version \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/ctype.h \ + /usr/include/endian.h \ + /usr/include/errno.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/gnu/stubs.h \ + /usr/include/limits.h \ + /usr/include/linux/errno.h \ + /usr/include/linux/limits.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/sched/types.h \ + /usr/include/linux/stddef.h \ + /usr/include/linux/types.h \ + /usr/include/locale.h \ + /usr/include/pthread.h \ + /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/q20memory.h \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/q20utility.h \ + /usr/include/qt6/QtCore/q23type_traits.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/qalgorithms.h \ + /usr/include/qt6/QtCore/qalloc.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qarraydata.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qassert.h \ + /usr/include/qt6/QtCore/qatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qbindingstorage.h \ + /usr/include/qt6/QtCore/qbytearray.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qchar.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qdebug.h \ + /usr/include/qt6/QtCore/qendian.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qflags.h \ + /usr/include/qt6/QtCore/qfloat16.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qiterator.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qline.h \ + /usr/include/qt6/QtCore/qlist.h \ + /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qmalloc.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnamespace.h \ + /usr/include/qt6/QtCore/qnumeric.h \ + /usr/include/qt6/QtCore/qobject.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qoverload.h \ + /usr/include/qt6/QtCore/qpair.h \ + /usr/include/qt6/QtCore/qpoint.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qscopeguard.h \ + /usr/include/qt6/QtCore/qset.h \ + /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/qt6/QtCore/qsize.h \ + /usr/include/qt6/QtCore/qspan.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qstringfwd.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qsysinfo.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qtformat_impl.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qttypetraits.h \ + /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qtypes.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/qyieldcpu.h \ + /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtGui/qbrush.h \ + /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qcursor.h \ + /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtGui/qimage.h \ + /usr/include/qt6/QtGui/qkeysequence.h \ + /usr/include/qt6/QtGui/qpaintdevice.h \ + /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h \ + /usr/include/qt6/QtGui/qrgb.h \ + /usr/include/qt6/QtGui/qrgba64.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtGui/qtguiglobal.h \ + /usr/include/qt6/QtGui/qtransform.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtWidgets/QWidget \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/sched.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdint.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/sys/cdefs.h \ + /usr/include/sys/select.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/sys/types.h \ + /usr/include/time.h \ + /usr/include/wchar.h \ + /usr/include/wctype.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/deps b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/deps new file mode 100644 index 0000000..7504a5a --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/deps @@ -0,0 +1,1058 @@ +wayland_qt_base_autogen/timestamp: \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/CMakeLists.txt \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCCompiler.cmake \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeCXXCompiler.cmake \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/CMakeFiles/4.3.3/CMakeSystem.cmake \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/CrashLogger.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EditableGridWidget.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/EncodingUtils.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterRowWidget.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FilterableHeaderView.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FindReplacePanel.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/FocusManager.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginSplitView.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginStatusBar.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/PluginToolBar.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ScopedFindReplacePanel.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/include/wayland_qt_base/ThemeManager.h \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/CrashLogger.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EditableGridWidget.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/EncodingUtils.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterRowWidget.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FilterableHeaderView.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FindReplacePanel.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/FocusManager.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginSplitView.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginStatusBar.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/PluginToolBar.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ScopedFindReplacePanel.cpp \ + /home/pplupo/repos/plugins/wlx/wayland_qt_base/src/ThemeManager.cpp \ + /usr/include/alloca.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/asm/bitsperlong.h \ + /usr/include/asm/errno.h \ + /usr/include/asm/posix_types.h \ + /usr/include/asm/posix_types_64.h \ + /usr/include/asm/types.h \ + /usr/include/assert.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/byteswap.h \ + /usr/include/bits/cpu-set.h \ + /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h \ + /usr/include/bits/errno.h \ + /usr/include/bits/floatn-common.h \ + /usr/include/bits/floatn.h \ + /usr/include/bits/libc-header-start.h \ + /usr/include/bits/local_lim.h \ + /usr/include/bits/locale.h \ + /usr/include/bits/long-double.h \ + /usr/include/bits/posix1_lim.h \ + /usr/include/bits/posix2_lim.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/sched.h \ + /usr/include/bits/select.h \ + /usr/include/bits/setjmp.h \ + /usr/include/bits/stdint-intn.h \ + /usr/include/bits/stdint-least.h \ + /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdio_lim.h \ + /usr/include/bits/stdlib-float.h \ + /usr/include/bits/struct_mutex.h \ + /usr/include/bits/struct_rwlock.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/time.h \ + /usr/include/bits/time64.h \ + /usr/include/bits/timesize.h \ + /usr/include/bits/timex.h \ + /usr/include/bits/types.h \ + /usr/include/bits/types/FILE.h \ + /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__locale_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/types/error_t.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h \ + /usr/include/bits/types/wint_t.h \ + /usr/include/bits/typesizes.h \ + /usr/include/bits/uintn-identity.h \ + /usr/include/bits/uio_lim.h \ + /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h \ + /usr/include/bits/wchar.h \ + /usr/include/bits/wctype-wchar.h \ + /usr/include/bits/wordsize.h \ + /usr/include/bits/xopen_lim.h \ + /usr/include/c++/16.1.1/algorithm \ + /usr/include/c++/16.1.1/array \ + /usr/include/c++/16.1.1/atomic \ + /usr/include/c++/16.1.1/backward/auto_ptr.h \ + /usr/include/c++/16.1.1/backward/binders.h \ + /usr/include/c++/16.1.1/bit \ + /usr/include/c++/16.1.1/bits/algorithmfwd.h \ + /usr/include/c++/16.1.1/bits/align.h \ + /usr/include/c++/16.1.1/bits/alloc_traits.h \ + /usr/include/c++/16.1.1/bits/allocated_ptr.h \ + /usr/include/c++/16.1.1/bits/allocator.h \ + /usr/include/c++/16.1.1/bits/atomic_base.h \ + /usr/include/c++/16.1.1/bits/atomic_lockfree_defines.h \ + /usr/include/c++/16.1.1/bits/atomic_wait.h \ + /usr/include/c++/16.1.1/bits/basic_ios.h \ + /usr/include/c++/16.1.1/bits/basic_ios.tcc \ + /usr/include/c++/16.1.1/bits/basic_string.h \ + /usr/include/c++/16.1.1/bits/basic_string.tcc \ + /usr/include/c++/16.1.1/bits/binders.h \ + /usr/include/c++/16.1.1/bits/char_traits.h \ + /usr/include/c++/16.1.1/bits/charconv.h \ + /usr/include/c++/16.1.1/bits/chrono.h \ + /usr/include/c++/16.1.1/bits/chrono_io.h \ + /usr/include/c++/16.1.1/bits/concept_check.h \ + /usr/include/c++/16.1.1/bits/cpp_type_traits.h \ + /usr/include/c++/16.1.1/bits/cxxabi_forced.h \ + /usr/include/c++/16.1.1/bits/cxxabi_init_exception.h \ + /usr/include/c++/16.1.1/bits/enable_special_members.h \ + /usr/include/c++/16.1.1/bits/erase_if.h \ + /usr/include/c++/16.1.1/bits/exception.h \ + /usr/include/c++/16.1.1/bits/exception_defines.h \ + /usr/include/c++/16.1.1/bits/exception_ptr.h \ + /usr/include/c++/16.1.1/bits/functexcept.h \ + /usr/include/c++/16.1.1/bits/functional_hash.h \ + /usr/include/c++/16.1.1/bits/hash_bytes.h \ + /usr/include/c++/16.1.1/bits/hashtable.h \ + /usr/include/c++/16.1.1/bits/hashtable_policy.h \ + /usr/include/c++/16.1.1/bits/intcmp.h \ + /usr/include/c++/16.1.1/bits/invoke.h \ + /usr/include/c++/16.1.1/bits/ios_base.h \ + /usr/include/c++/16.1.1/bits/istream.tcc \ + /usr/include/c++/16.1.1/bits/iterator_concepts.h \ + /usr/include/c++/16.1.1/bits/list.tcc \ + /usr/include/c++/16.1.1/bits/locale_classes.h \ + /usr/include/c++/16.1.1/bits/locale_classes.tcc \ + /usr/include/c++/16.1.1/bits/locale_facets.h \ + /usr/include/c++/16.1.1/bits/locale_facets.tcc \ + /usr/include/c++/16.1.1/bits/localefwd.h \ + /usr/include/c++/16.1.1/bits/max_size_type.h \ + /usr/include/c++/16.1.1/bits/memory_resource.h \ + /usr/include/c++/16.1.1/bits/memoryfwd.h \ + /usr/include/c++/16.1.1/bits/move.h \ + /usr/include/c++/16.1.1/bits/nested_exception.h \ + /usr/include/c++/16.1.1/bits/new_allocator.h \ + /usr/include/c++/16.1.1/bits/new_except.h \ + /usr/include/c++/16.1.1/bits/new_throw.h \ + /usr/include/c++/16.1.1/bits/node_handle.h \ + /usr/include/c++/16.1.1/bits/ostream.h \ + /usr/include/c++/16.1.1/bits/ostream.tcc \ + /usr/include/c++/16.1.1/bits/ostream_insert.h \ + /usr/include/c++/16.1.1/bits/ostream_print.h \ + /usr/include/c++/16.1.1/bits/parse_numbers.h \ + /usr/include/c++/16.1.1/bits/postypes.h \ + /usr/include/c++/16.1.1/bits/predefined_ops.h \ + /usr/include/c++/16.1.1/bits/ptr_traits.h \ + /usr/include/c++/16.1.1/bits/range_access.h \ + /usr/include/c++/16.1.1/bits/ranges_algo.h \ + /usr/include/c++/16.1.1/bits/ranges_algobase.h \ + /usr/include/c++/16.1.1/bits/ranges_base.h \ + /usr/include/c++/16.1.1/bits/ranges_cmp.h \ + /usr/include/c++/16.1.1/bits/ranges_uninitialized.h \ + /usr/include/c++/16.1.1/bits/ranges_util.h \ + /usr/include/c++/16.1.1/bits/refwrap.h \ + /usr/include/c++/16.1.1/bits/requires_hosted.h \ + /usr/include/c++/16.1.1/bits/shared_ptr.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_atomic.h \ + /usr/include/c++/16.1.1/bits/shared_ptr_base.h \ + /usr/include/c++/16.1.1/bits/specfun.h \ + /usr/include/c++/16.1.1/bits/sstream.tcc \ + /usr/include/c++/16.1.1/bits/std_abs.h \ + /usr/include/c++/16.1.1/bits/std_function.h \ + /usr/include/c++/16.1.1/bits/stdexcept_except.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throw.h \ + /usr/include/c++/16.1.1/bits/stdexcept_throwfwd.h \ + /usr/include/c++/16.1.1/bits/stl_algo.h \ + /usr/include/c++/16.1.1/bits/stl_algobase.h \ + /usr/include/c++/16.1.1/bits/stl_bvector.h \ + /usr/include/c++/16.1.1/bits/stl_construct.h \ + /usr/include/c++/16.1.1/bits/stl_function.h \ + /usr/include/c++/16.1.1/bits/stl_heap.h \ + /usr/include/c++/16.1.1/bits/stl_iterator.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/16.1.1/bits/stl_iterator_base_types.h \ + /usr/include/c++/16.1.1/bits/stl_list.h \ + /usr/include/c++/16.1.1/bits/stl_map.h \ + /usr/include/c++/16.1.1/bits/stl_multimap.h \ + /usr/include/c++/16.1.1/bits/stl_multiset.h \ + /usr/include/c++/16.1.1/bits/stl_numeric.h \ + /usr/include/c++/16.1.1/bits/stl_pair.h \ + /usr/include/c++/16.1.1/bits/stl_raw_storage_iter.h \ + /usr/include/c++/16.1.1/bits/stl_relops.h \ + /usr/include/c++/16.1.1/bits/stl_set.h \ + /usr/include/c++/16.1.1/bits/stl_tempbuf.h \ + /usr/include/c++/16.1.1/bits/stl_tree.h \ + /usr/include/c++/16.1.1/bits/stl_uninitialized.h \ + /usr/include/c++/16.1.1/bits/stl_vector.h \ + /usr/include/c++/16.1.1/bits/stream_iterator.h \ + /usr/include/c++/16.1.1/bits/streambuf.tcc \ + /usr/include/c++/16.1.1/bits/streambuf_iterator.h \ + /usr/include/c++/16.1.1/bits/string_view.tcc \ + /usr/include/c++/16.1.1/bits/stringfwd.h \ + /usr/include/c++/16.1.1/bits/uniform_int_dist.h \ + /usr/include/c++/16.1.1/bits/unique_ptr.h \ + /usr/include/c++/16.1.1/bits/unordered_map.h \ + /usr/include/c++/16.1.1/bits/unordered_set.h \ + /usr/include/c++/16.1.1/bits/uses_allocator.h \ + /usr/include/c++/16.1.1/bits/uses_allocator_args.h \ + /usr/include/c++/16.1.1/bits/utility.h \ + /usr/include/c++/16.1.1/bits/vector.tcc \ + /usr/include/c++/16.1.1/bits/version.h \ + /usr/include/c++/16.1.1/cassert \ + /usr/include/c++/16.1.1/cctype \ + /usr/include/c++/16.1.1/cerrno \ + /usr/include/c++/16.1.1/charconv \ + /usr/include/c++/16.1.1/chrono \ + /usr/include/c++/16.1.1/climits \ + /usr/include/c++/16.1.1/clocale \ + /usr/include/c++/16.1.1/cmath \ + /usr/include/c++/16.1.1/compare \ + /usr/include/c++/16.1.1/concepts \ + /usr/include/c++/16.1.1/cstddef \ + /usr/include/c++/16.1.1/cstdint \ + /usr/include/c++/16.1.1/cstdio \ + /usr/include/c++/16.1.1/cstdlib \ + /usr/include/c++/16.1.1/cstring \ + /usr/include/c++/16.1.1/ctime \ + /usr/include/c++/16.1.1/cwchar \ + /usr/include/c++/16.1.1/cwctype \ + /usr/include/c++/16.1.1/debug/assertions.h \ + /usr/include/c++/16.1.1/debug/debug.h \ + /usr/include/c++/16.1.1/exception \ + /usr/include/c++/16.1.1/ext/aligned_buffer.h \ + /usr/include/c++/16.1.1/ext/alloc_traits.h \ + /usr/include/c++/16.1.1/ext/atomicity.h \ + /usr/include/c++/16.1.1/ext/concurrence.h \ + /usr/include/c++/16.1.1/ext/numeric_traits.h \ + /usr/include/c++/16.1.1/ext/string_conversions.h \ + /usr/include/c++/16.1.1/ext/type_traits.h \ + /usr/include/c++/16.1.1/format \ + /usr/include/c++/16.1.1/functional \ + /usr/include/c++/16.1.1/initializer_list \ + /usr/include/c++/16.1.1/ios \ + /usr/include/c++/16.1.1/iosfwd \ + /usr/include/c++/16.1.1/istream \ + /usr/include/c++/16.1.1/iterator \ + /usr/include/c++/16.1.1/limits \ + /usr/include/c++/16.1.1/list \ + /usr/include/c++/16.1.1/map \ + /usr/include/c++/16.1.1/memory \ + /usr/include/c++/16.1.1/new \ + /usr/include/c++/16.1.1/numeric \ + /usr/include/c++/16.1.1/optional \ + /usr/include/c++/16.1.1/ostream \ + /usr/include/c++/16.1.1/pstl/execution_defs.h \ + /usr/include/c++/16.1.1/pstl/glue_numeric_defs.h \ + /usr/include/c++/16.1.1/pstl/pstl_config.h \ + /usr/include/c++/16.1.1/ratio \ + /usr/include/c++/16.1.1/set \ + /usr/include/c++/16.1.1/sstream \ + /usr/include/c++/16.1.1/stdexcept \ + /usr/include/c++/16.1.1/streambuf \ + /usr/include/c++/16.1.1/string \ + /usr/include/c++/16.1.1/string_view \ + /usr/include/c++/16.1.1/system_error \ + /usr/include/c++/16.1.1/tr1/bessel_function.tcc \ + /usr/include/c++/16.1.1/tr1/beta_function.tcc \ + /usr/include/c++/16.1.1/tr1/ell_integral.tcc \ + /usr/include/c++/16.1.1/tr1/exp_integral.tcc \ + /usr/include/c++/16.1.1/tr1/gamma.tcc \ + /usr/include/c++/16.1.1/tr1/hypergeometric.tcc \ + /usr/include/c++/16.1.1/tr1/legendre_function.tcc \ + /usr/include/c++/16.1.1/tr1/modified_bessel_func.tcc \ + /usr/include/c++/16.1.1/tr1/poly_hermite.tcc \ + /usr/include/c++/16.1.1/tr1/poly_laguerre.tcc \ + /usr/include/c++/16.1.1/tr1/riemann_zeta.tcc \ + /usr/include/c++/16.1.1/tr1/special_function_util.h \ + /usr/include/c++/16.1.1/tuple \ + /usr/include/c++/16.1.1/type_traits \ + /usr/include/c++/16.1.1/typeinfo \ + /usr/include/c++/16.1.1/unordered_map \ + /usr/include/c++/16.1.1/unordered_set \ + /usr/include/c++/16.1.1/utility \ + /usr/include/c++/16.1.1/variant \ + /usr/include/c++/16.1.1/vector \ + /usr/include/c++/16.1.1/version \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/include/c++/16.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/ctype.h \ + /usr/include/endian.h \ + /usr/include/errno.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/gnu/stubs-64.h \ + /usr/include/gnu/stubs.h \ + /usr/include/limits.h \ + /usr/include/linux/errno.h \ + /usr/include/linux/limits.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/sched/types.h \ + /usr/include/linux/stddef.h \ + /usr/include/linux/types.h \ + /usr/include/locale.h \ + /usr/include/pthread.h \ + /usr/include/qt6/QtCore/QMap \ + /usr/include/qt6/QtCore/QObject \ + /usr/include/qt6/QtCore/QPointer \ + /usr/include/qt6/QtCore/QSet \ + /usr/include/qt6/QtCore/QTimer \ + /usr/include/qt6/QtCore/QVector \ + /usr/include/qt6/QtCore/q17memory.h \ + /usr/include/qt6/QtCore/q20bit.h \ + /usr/include/qt6/QtCore/q20functional.h \ + /usr/include/qt6/QtCore/q20iterator.h \ + /usr/include/qt6/QtCore/q20memory.h \ + /usr/include/qt6/QtCore/q20type_traits.h \ + /usr/include/qt6/QtCore/q20utility.h \ + /usr/include/qt6/QtCore/q23type_traits.h \ + /usr/include/qt6/QtCore/q23utility.h \ + /usr/include/qt6/QtCore/qabstracteventdispatcher.h \ + /usr/include/qt6/QtCore/qabstractitemmodel.h \ + /usr/include/qt6/QtCore/qalgorithms.h \ + /usr/include/qt6/QtCore/qalloc.h \ + /usr/include/qt6/QtCore/qanystringview.h \ + /usr/include/qt6/QtCore/qarraydata.h \ + /usr/include/qt6/QtCore/qarraydataops.h \ + /usr/include/qt6/QtCore/qarraydatapointer.h \ + /usr/include/qt6/QtCore/qassert.h \ + /usr/include/qt6/QtCore/qatomic.h \ + /usr/include/qt6/QtCore/qatomic_cxx11.h \ + /usr/include/qt6/QtCore/qbasicatomic.h \ + /usr/include/qt6/QtCore/qbasictimer.h \ + /usr/include/qt6/QtCore/qbindingstorage.h \ + /usr/include/qt6/QtCore/qbytearray.h \ + /usr/include/qt6/QtCore/qbytearrayalgorithms.h \ + /usr/include/qt6/QtCore/qbytearraylist.h \ + /usr/include/qt6/QtCore/qbytearrayview.h \ + /usr/include/qt6/QtCore/qchar.h \ + /usr/include/qt6/QtCore/qcheckedint_impl.h \ + /usr/include/qt6/QtCore/qcompare.h \ + /usr/include/qt6/QtCore/qcompare_impl.h \ + /usr/include/qt6/QtCore/qcomparehelpers.h \ + /usr/include/qt6/QtCore/qcompilerdetection.h \ + /usr/include/qt6/QtCore/qconfig.h \ + /usr/include/qt6/QtCore/qconstructormacros.h \ + /usr/include/qt6/QtCore/qcontainerfwd.h \ + /usr/include/qt6/QtCore/qcontainerinfo.h \ + /usr/include/qt6/QtCore/qcontainertools_impl.h \ + /usr/include/qt6/QtCore/qcontiguouscache.h \ + /usr/include/qt6/QtCore/qdarwinhelpers.h \ + /usr/include/qt6/QtCore/qdatastream.h \ + /usr/include/qt6/QtCore/qdeadlinetimer.h \ + /usr/include/qt6/QtCore/qdebug.h \ + /usr/include/qt6/QtCore/qendian.h \ + /usr/include/qt6/QtCore/qeventloop.h \ + /usr/include/qt6/QtCore/qexceptionhandling.h \ + /usr/include/qt6/QtCore/qflags.h \ + /usr/include/qt6/QtCore/qfloat16.h \ + /usr/include/qt6/QtCore/qforeach.h \ + /usr/include/qt6/QtCore/qfunctionaltools_impl.h \ + /usr/include/qt6/QtCore/qfunctionpointer.h \ + /usr/include/qt6/QtCore/qgenericatomic.h \ + /usr/include/qt6/QtCore/qglobal.h \ + /usr/include/qt6/QtCore/qglobalstatic.h \ + /usr/include/qt6/QtCore/qhash.h \ + /usr/include/qt6/QtCore/qhashfunctions.h \ + /usr/include/qt6/QtCore/qiodevice.h \ + /usr/include/qt6/QtCore/qiodevicebase.h \ + /usr/include/qt6/QtCore/qitemselectionmodel.h \ + /usr/include/qt6/QtCore/qiterable.h \ + /usr/include/qt6/QtCore/qiterator.h \ + /usr/include/qt6/QtCore/qlatin1stringview.h \ + /usr/include/qt6/QtCore/qline.h \ + /usr/include/qt6/QtCore/qlist.h \ + /usr/include/qt6/QtCore/qlocale.h \ + /usr/include/qt6/QtCore/qlogging.h \ + /usr/include/qt6/QtCore/qmalloc.h \ + /usr/include/qt6/QtCore/qmap.h \ + /usr/include/qt6/QtCore/qmargins.h \ + /usr/include/qt6/QtCore/qmath.h \ + /usr/include/qt6/QtCore/qmetacontainer.h \ + /usr/include/qt6/QtCore/qmetatype.h \ + /usr/include/qt6/QtCore/qminmax.h \ + /usr/include/qt6/QtCore/qnamespace.h \ + /usr/include/qt6/QtCore/qnumeric.h \ + /usr/include/qt6/QtCore/qobject.h \ + /usr/include/qt6/QtCore/qobject_impl.h \ + /usr/include/qt6/QtCore/qobjectdefs.h \ + /usr/include/qt6/QtCore/qobjectdefs_impl.h \ + /usr/include/qt6/QtCore/qoverload.h \ + /usr/include/qt6/QtCore/qpair.h \ + /usr/include/qt6/QtCore/qpoint.h \ + /usr/include/qt6/QtCore/qpointer.h \ + /usr/include/qt6/QtCore/qprocessordetection.h \ + /usr/include/qt6/QtCore/qrect.h \ + /usr/include/qt6/QtCore/qrefcount.h \ + /usr/include/qt6/QtCore/qregularexpression.h \ + /usr/include/qt6/QtCore/qscopedpointer.h \ + /usr/include/qt6/QtCore/qscopeguard.h \ + /usr/include/qt6/QtCore/qset.h \ + /usr/include/qt6/QtCore/qshareddata.h \ + /usr/include/qt6/QtCore/qshareddata_impl.h \ + /usr/include/qt6/QtCore/qsharedpointer.h \ + /usr/include/qt6/QtCore/qsharedpointer_impl.h \ + /usr/include/qt6/QtCore/qsize.h \ + /usr/include/qt6/QtCore/qspan.h \ + /usr/include/qt6/QtCore/qstdlibdetection.h \ + /usr/include/qt6/QtCore/qstring.h \ + /usr/include/qt6/QtCore/qstringalgorithms.h \ + /usr/include/qt6/QtCore/qstringbuilder.h \ + /usr/include/qt6/QtCore/qstringconverter.h \ + /usr/include/qt6/QtCore/qstringconverter_base.h \ + /usr/include/qt6/QtCore/qstringfwd.h \ + /usr/include/qt6/QtCore/qstringlist.h \ + /usr/include/qt6/QtCore/qstringmatcher.h \ + /usr/include/qt6/QtCore/qstringtokenizer.h \ + /usr/include/qt6/QtCore/qstringview.h \ + /usr/include/qt6/QtCore/qswap.h \ + /usr/include/qt6/QtCore/qsysinfo.h \ + /usr/include/qt6/QtCore/qsystemdetection.h \ + /usr/include/qt6/QtCore/qtaggedpointer.h \ + /usr/include/qt6/QtCore/qtclasshelpermacros.h \ + /usr/include/qt6/QtCore/qtconfiginclude.h \ + /usr/include/qt6/QtCore/qtconfigmacros.h \ + /usr/include/qt6/QtCore/qtcore-config.h \ + /usr/include/qt6/QtCore/qtcoreexports.h \ + /usr/include/qt6/QtCore/qtcoreglobal.h \ + /usr/include/qt6/QtCore/qtdeprecationdefinitions.h \ + /usr/include/qt6/QtCore/qtdeprecationmarkers.h \ + /usr/include/qt6/QtCore/qtenvironmentvariables.h \ + /usr/include/qt6/QtCore/qtextstream.h \ + /usr/include/qt6/QtCore/qtformat_impl.h \ + /usr/include/qt6/QtCore/qtimer.h \ + /usr/include/qt6/QtCore/qtmetamacros.h \ + /usr/include/qt6/QtCore/qtnoop.h \ + /usr/include/qt6/QtCore/qtpreprocessorsupport.h \ + /usr/include/qt6/QtCore/qtresource.h \ + /usr/include/qt6/QtCore/qttranslation.h \ + /usr/include/qt6/QtCore/qttypetraits.h \ + /usr/include/qt6/QtCore/qtversion.h \ + /usr/include/qt6/QtCore/qtversionchecks.h \ + /usr/include/qt6/QtCore/qtypeinfo.h \ + /usr/include/qt6/QtCore/qtypes.h \ + /usr/include/qt6/QtCore/qurl.h \ + /usr/include/qt6/QtCore/qutf8stringview.h \ + /usr/include/qt6/QtCore/qvariant.h \ + /usr/include/qt6/QtCore/qvarlengtharray.h \ + /usr/include/qt6/QtCore/qvector.h \ + /usr/include/qt6/QtCore/qversiontagging.h \ + /usr/include/qt6/QtCore/qxptype_traits.h \ + /usr/include/qt6/QtCore/qyieldcpu.h \ + /usr/include/qt6/QtGui/QKeySequence \ + /usr/include/qt6/QtGui/QUndoStack \ + /usr/include/qt6/QtGui/qaction.h \ + /usr/include/qt6/QtGui/qbitmap.h \ + /usr/include/qt6/QtGui/qbrush.h \ + /usr/include/qt6/QtGui/qcolor.h \ + /usr/include/qt6/QtGui/qcursor.h \ + /usr/include/qt6/QtGui/qfont.h \ + /usr/include/qt6/QtGui/qfontinfo.h \ + /usr/include/qt6/QtGui/qfontmetrics.h \ + /usr/include/qt6/QtGui/qfontvariableaxis.h \ + /usr/include/qt6/QtGui/qicon.h \ + /usr/include/qt6/QtGui/qimage.h \ + /usr/include/qt6/QtGui/qkeysequence.h \ + /usr/include/qt6/QtGui/qpaintdevice.h \ + /usr/include/qt6/QtGui/qpalette.h \ + /usr/include/qt6/QtGui/qpicture.h \ + /usr/include/qt6/QtGui/qpixelformat.h \ + /usr/include/qt6/QtGui/qpixmap.h \ + /usr/include/qt6/QtGui/qpolygon.h \ + /usr/include/qt6/QtGui/qregion.h \ + /usr/include/qt6/QtGui/qrgb.h \ + /usr/include/qt6/QtGui/qrgba64.h \ + /usr/include/qt6/QtGui/qtextdocument.h \ + /usr/include/qt6/QtGui/qtgui-config.h \ + /usr/include/qt6/QtGui/qtguiexports.h \ + /usr/include/qt6/QtGui/qtguiglobal.h \ + /usr/include/qt6/QtGui/qtransform.h \ + /usr/include/qt6/QtGui/qundostack.h \ + /usr/include/qt6/QtGui/qvalidator.h \ + /usr/include/qt6/QtGui/qwindowdefs.h \ + /usr/include/qt6/QtWidgets/QHeaderView \ + /usr/include/qt6/QtWidgets/QLabel \ + /usr/include/qt6/QtWidgets/QSplitter \ + /usr/include/qt6/QtWidgets/QStyledItemDelegate \ + /usr/include/qt6/QtWidgets/QTableView \ + /usr/include/qt6/QtWidgets/QToolBar \ + /usr/include/qt6/QtWidgets/QWidget \ + /usr/include/qt6/QtWidgets/qabstractitemdelegate.h \ + /usr/include/qt6/QtWidgets/qabstractitemview.h \ + /usr/include/qt6/QtWidgets/qabstractscrollarea.h \ + /usr/include/qt6/QtWidgets/qabstractslider.h \ + /usr/include/qt6/QtWidgets/qabstractspinbox.h \ + /usr/include/qt6/QtWidgets/qframe.h \ + /usr/include/qt6/QtWidgets/qheaderview.h \ + /usr/include/qt6/QtWidgets/qlabel.h \ + /usr/include/qt6/QtWidgets/qrubberband.h \ + /usr/include/qt6/QtWidgets/qsizepolicy.h \ + /usr/include/qt6/QtWidgets/qslider.h \ + /usr/include/qt6/QtWidgets/qsplitter.h \ + /usr/include/qt6/QtWidgets/qstyle.h \ + /usr/include/qt6/QtWidgets/qstyleditemdelegate.h \ + /usr/include/qt6/QtWidgets/qstyleoption.h \ + /usr/include/qt6/QtWidgets/qtabbar.h \ + /usr/include/qt6/QtWidgets/qtableview.h \ + /usr/include/qt6/QtWidgets/qtabwidget.h \ + /usr/include/qt6/QtWidgets/qtoolbar.h \ + /usr/include/qt6/QtWidgets/qtwidgets-config.h \ + /usr/include/qt6/QtWidgets/qtwidgetsexports.h \ + /usr/include/qt6/QtWidgets/qtwidgetsglobal.h \ + /usr/include/qt6/QtWidgets/qwidget.h \ + /usr/include/sched.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdint.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/sys/cdefs.h \ + /usr/include/sys/select.h \ + /usr/include/sys/single_threaded.h \ + /usr/include/sys/types.h \ + /usr/include/time.h \ + /usr/include/wchar.h \ + /usr/include/wctype.h \ + /usr/lib/cmake/Qt6/FindWrapAtomic.cmake \ + /usr/lib/cmake/Qt6/FindWrapOpenGL.cmake \ + /usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake \ + /usr/lib/cmake/Qt6/Qt6Config.cmake \ + /usr/lib/cmake/Qt6/Qt6ConfigExtras.cmake \ + /usr/lib/cmake/Qt6/Qt6ConfigVersion.cmake \ + /usr/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6/Qt6Dependencies.cmake \ + /usr/lib/cmake/Qt6/Qt6Targets.cmake \ + /usr/lib/cmake/Qt6/Qt6TargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake \ + /usr/lib/cmake/Qt6/QtFeature.cmake \ + /usr/lib/cmake/Qt6/QtFeatureCommon.cmake \ + /usr/lib/cmake/Qt6/QtInstallPaths.cmake \ + /usr/lib/cmake/Qt6/QtPublicAndroidHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicAppleHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicCMakeEarlyPolicyHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicGitHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicPluginHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicPluginHelpers_v2.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomAttributionHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomBuildToolHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomCommonGenerationHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomCpeHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomCycloneDXHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomDepHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomDocumentNamespaceHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomExternalReferenceHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomFileHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomGenerationCycloneDXHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomLicenseHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomOpsHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomPurlHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomPythonHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomQtEntityHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomRelationshipHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicSbomSystemDepHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicTargetHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicTestHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicToolHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake \ + /usr/lib/cmake/Qt6/QtPublicWindowsHelpers.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreConfig.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreMacros.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreTargets.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6DBus/Qt6DBusVersionlessAliasTargets.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DmaBufServerBufferPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6DrmEglServerBufferPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandBradientDecorationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandEglClientBufferPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandFullScreenShellV1IntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandWlShellIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWaylandXdgShellIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6ShmServerBufferPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginConfig.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargets.cmake \ + /usr/lib/cmake/Qt6Gui/Qt6VulkanServerBufferPluginTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargetsPrecheck.cmake \ + /usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdarg.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stdbool.h \ + /usr/lib/gcc/x86_64-pc-linux-gnu/16.1.1/include/stddef.h \ + /usr/share/cmake/Modules/CMakeCCompiler.cmake.in \ + /usr/share/cmake/Modules/CMakeCCompilerABI.c \ + /usr/share/cmake/Modules/CMakeCInformation.cmake \ + /usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in \ + /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp \ + /usr/share/cmake/Modules/CMakeCXXInformation.cmake \ + /usr/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake \ + /usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake \ + /usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake \ + /usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake \ + /usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake \ + /usr/share/cmake/Modules/CMakeDetermineCompiler.cmake \ + /usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake \ + /usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake \ + /usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake \ + /usr/share/cmake/Modules/CMakeDetermineSystem.cmake \ + /usr/share/cmake/Modules/CMakeFindBinUtils.cmake \ + /usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake \ + /usr/share/cmake/Modules/CMakeGenericSystem.cmake \ + /usr/share/cmake/Modules/CMakeInitializeConfigs.cmake \ + /usr/share/cmake/Modules/CMakeLanguageInformation.cmake \ + /usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake \ + /usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake \ + /usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake \ + /usr/share/cmake/Modules/CMakeSystem.cmake.in \ + /usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake \ + /usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake \ + /usr/share/cmake/Modules/CMakeTestCCompiler.cmake \ + /usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake \ + /usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake \ + /usr/share/cmake/Modules/CMakeUnixFindMake.cmake \ + /usr/share/cmake/Modules/CheckCSourceCompiles.cmake \ + /usr/share/cmake/Modules/CheckCXXCompilerFlag.cmake \ + /usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake \ + /usr/share/cmake/Modules/CheckIncludeFile.cmake \ + /usr/share/cmake/Modules/CheckLibraryExists.cmake \ + /usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake \ + /usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake \ + /usr/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/GNU-C.cmake \ + /usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/GNU-CXX.cmake \ + /usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake \ + /usr/share/cmake/Modules/Compiler/GNU.cmake \ + /usr/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake \ + /usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake \ + /usr/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake \ + /usr/share/cmake/Modules/FindOpenGL.cmake \ + /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake \ + /usr/share/cmake/Modules/FindPackageMessage.cmake \ + /usr/share/cmake/Modules/FindPkgConfig.cmake \ + /usr/share/cmake/Modules/FindThreads.cmake \ + /usr/share/cmake/Modules/FindVulkan.cmake \ + /usr/share/cmake/Modules/GNUInstallDirs.cmake \ + /usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake \ + /usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake \ + /usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake \ + /usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake \ + /usr/share/cmake/Modules/Internal/CMakeInspectCLinker.cmake \ + /usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake \ + /usr/share/cmake/Modules/Internal/CheckCompilerFlag.cmake \ + /usr/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake \ + /usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake \ + /usr/share/cmake/Modules/Internal/FeatureTesting.cmake \ + /usr/share/cmake/Modules/Linker/GNU-C.cmake \ + /usr/share/cmake/Modules/Linker/GNU-CXX.cmake \ + /usr/share/cmake/Modules/Linker/GNU.cmake \ + /usr/share/cmake/Modules/MacroAddFileDependencies.cmake \ + /usr/share/cmake/Modules/Platform/Linker/GNU.cmake \ + /usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake \ + /usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake \ + /usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake \ + /usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake \ + /usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake \ + /usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake \ + /usr/share/cmake/Modules/Platform/Linux-GNU.cmake \ + /usr/share/cmake/Modules/Platform/Linux-Initialize.cmake \ + /usr/share/cmake/Modules/Platform/Linux.cmake \ + /usr/share/cmake/Modules/Platform/UnixPaths.cmake \ + /usr/bin/cmake diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h new file mode 100644 index 0000000..ebec31e --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/moc_predefs.h @@ -0,0 +1,496 @@ +#define __DBL_MIN_EXP__ (-1021) +#define __LDBL_MANT_DIG__ 64 +#define __cpp_nontype_template_parameter_auto 201606L +#define __UINT_LEAST16_MAX__ 0xffff +#define __FLT16_HAS_QUIET_NAN__ 1 +#define __ATOMIC_ACQUIRE 2 +#define __FLT128_MAX_10_EXP__ 4932 +#define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F +#define __GCC_IEC_559_COMPLEX 2 +#define __cpp_aggregate_nsdmi 201304L +#define __UINT_LEAST8_TYPE__ unsigned char +#define __SIZEOF_FLOAT80__ 16 +#define __BFLT16_DENORM_MIN__ 9.18354961579912115600575419704879436e-41BF16 +#define __cpp_impl_three_way_comparison 201907L +#define __INTMAX_C(c) c ## L +#define __CHAR_BIT__ 8 +#define __cpp_designated_initializers 201707L +#define __UINT8_MAX__ 0xff +#define __SCHAR_WIDTH__ 8 +#define __WINT_MAX__ 0xffffffffU +#define __FLT32_MIN_EXP__ (-125) +#define __cpp_static_assert 201411L +#define __BFLT16_MIN_10_EXP__ (-37) +#define __cpp_inheriting_constructors 201511L +#define QT_GUI_LIB 1 +#define __ORDER_LITTLE_ENDIAN__ 1234 +#define __WCHAR_MAX__ 0x7fffffff +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 +#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 +#define __GCC_IEC_559 2 +#define __FLT32X_DECIMAL_DIG__ 17 +#define __FLT_EVAL_METHOD__ 0 +#define __cpp_binary_literals 201304L +#define __FLT64_DECIMAL_DIG__ 17 +#define __cpp_noexcept_function_type 201510L +#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 +#define __cpp_variadic_templates 200704L +#define __UINT_FAST64_MAX__ 0xffffffffffffffffUL +#define __SIG_ATOMIC_TYPE__ int +#define __DBL_MIN_10_EXP__ (-307) +#define __FINITE_MATH_ONLY__ 0 +#define __cpp_variable_templates 201304L +#define __FLT32X_MAX_EXP__ 1024 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 +#define __FLT32_HAS_DENORM__ 1 +#define __UINT_FAST8_MAX__ 0xff +#define __cpp_rvalue_reference 200610L +#define __cpp_nested_namespace_definitions 201411L +#define __DEC64_MAX_EXP__ 385 +#define __INT8_C(c) c +#define __LDBL_HAS_INFINITY__ 1 +#define __INT_LEAST8_WIDTH__ 8 +#define __cpp_variadic_using 201611L +#define __UINT_LEAST64_MAX__ 0xffffffffffffffffUL +#define __INT_LEAST8_MAX__ 0x7f +#define __cpp_attributes 200809L +#define __cpp_capture_star_this 201603L +#define __SHRT_MAX__ 0x7fff +#define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __cpp_impl_coroutine 201902L +#define __FLT64X_MAX_10_EXP__ 4932 +#define __cpp_if_constexpr 201606L +#define __BFLT16_MAX_10_EXP__ 38 +#define __BFLT16_MAX_EXP__ 128 +#define __LDBL_IS_IEC_60559__ 1 +#define QT_NO_DEBUG 1 +#define __FLT64X_HAS_QUIET_NAN__ 1 +#define __UINT_LEAST8_MAX__ 0xff +#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 +#define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128 +#define __UINTMAX_TYPE__ long unsigned int +#define __cpp_nsdmi 200809L +#define __BFLT16_DECIMAL_DIG__ 4 +#define __linux 1 +#define __DEC32_EPSILON__ 1E-6DF +#define __FLT_EVAL_METHOD_TS_18661_3__ 0 +#define __UINT32_MAX__ 0xffffffffU +#define __GXX_EXPERIMENTAL_CXX0X__ 1 +#define __DBL_DENORM_MIN__ double(4.94065645841246544176568792868221372e-324L) +#define __FLT128_MIN_EXP__ (-16381) +#define __DEC64X_MAX_EXP__ 6145 +#define __WINT_MIN__ 0U +#define __FLT128_MIN_10_EXP__ (-4931) +#define __FLT32X_IS_IEC_60559__ 1 +#define __INT_LEAST16_WIDTH__ 16 +#define __SCHAR_MAX__ 0x7f +#define __FLT128_MANT_DIG__ 113 +#define __WCHAR_MIN__ (-__WCHAR_MAX__ - 1) +#define __INT64_C(c) c ## L +#define __SSP_STRONG__ 3 +#define __cpp_impl_destroying_delete 201806L +#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 +#define __ATOMIC_SEQ_CST 5 +#define __unix 1 +#define __INT_LEAST64_MAX__ 0x7fffffffffffffffL +#define __FLT32X_MANT_DIG__ 53 +#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 +#define __cpp_aligned_new 201606L +#define __FLT32_MAX_10_EXP__ 38 +#define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x +#define __STDC_HOSTED__ 1 +#define __DEC64_MIN_EXP__ (-382) +#define __cpp_decltype_auto 201304L +#define __DBL_DIG__ 15 +#define __STDC_EMBED_EMPTY__ 2 +#define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F +#define __cpp_char8_t 202207L +#define __GXX_WEAK__ 1 +#define __SHRT_WIDTH__ 16 +#define __FLT32_IS_IEC_60559__ 1 +#define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L +#define __DBL_IS_IEC_60559__ 1 +#define __DEC32_MAX__ 9.999999E96DF +#define __CHAR8_TYPE__ unsigned char +#define __cpp_threadsafe_static_init 200806L +#define __cpp_enumerator_attributes 201411L +#define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x +#define __FLT32X_HAS_INFINITY__ 1 +#define __unix__ 1 +#define __INT_WIDTH__ 32 +#define __STDC_IEC_559__ 1 +#define __STDC_ISO_10646__ 201706L +#define __GCC_ATOMIC_CHAR8_T_LOCK_FREE 2 +#define __DECIMAL_DIG__ 21 +#define __STDC_IEC_559_COMPLEX__ 1 +#define __gnu_linux__ 1 +#define __INT16_MAX__ 0x7fff +#define __FLT64_MIN_EXP__ (-1021) +#define __cpp_using_enum 201907L +#define __DEC64X_EPSILON__ 1E-33D64x +#define __FLT64X_MIN_10_EXP__ (-4931) +#define __LDBL_HAS_QUIET_NAN__ 1 +#define __cpp_consteval 202211L +#define __FLT16_MIN_EXP__ (-13) +#define __FLT64_MANT_DIG__ 53 +#define __FLT64X_MANT_DIG__ 64 +#define __BFLT16_DIG__ 2 +#define __GNUC__ 16 +#define __GXX_RTTI 1 +#define __pie__ 2 +#define __MMX__ 1 +#define __FLT_HAS_DENORM__ 1 +#define __SIZEOF_LONG_DOUBLE__ 16 +#define __BIGGEST_ALIGNMENT__ 16 +#define __STDC_UTF_16__ 1 +#define __FLT64_MAX_10_EXP__ 308 +#define __BFLT16_IS_IEC_60559__ 0 +#define __FLT16_MAX_10_EXP__ 4 +#define __cpp_delegating_constructors 200604L +#define __DBL_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define __cpp_raw_strings 200710L +#define __INT_FAST32_MAX__ 0x7fffffffffffffffL +#define __DBL_HAS_INFINITY__ 1 +#define __INT64_MAX__ 0x7fffffffffffffffL +#define __SIZEOF_FLOAT__ 4 +#define __HAVE_SPECULATION_SAFE_VALUE 1 +#define __cpp_fold_expressions 201603L +#define __DEC32_MIN_EXP__ (-94) +#define __INTPTR_WIDTH__ 64 +#define __UINT_LEAST32_MAX__ 0xffffffffU +#define __FLT32X_HAS_DENORM__ 1 +#define __INT_FAST16_TYPE__ long int +#define __MMX_WITH_SSE__ 1 +#define __LDBL_HAS_DENORM__ 1 +#define QT_WIDGETS_LIB 1 +#define __SEG_GS 1 +#define __BFLT16_EPSILON__ 7.81250000000000000000000000000000000e-3BF16 +#define __cplusplus 202002L +#define __cpp_ref_qualifiers 200710L +#define __DEC32_MIN__ 1E-95DF +#define __DEPRECATED 1 +#define __cpp_rvalue_references 200610L +#define __DBL_MAX_EXP__ 1024 +#define __WCHAR_WIDTH__ 32 +#define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __DEC128_EPSILON__ 1E-33DL +#define __FLT16_DECIMAL_DIG__ 5 +#define __SSE2_MATH__ 1 +#define __ATOMIC_HLE_RELEASE 131072 +#define __PTRDIFF_MAX__ 0x7fffffffffffffffL +#define __amd64 1 +#define __DEC64X_MAX__ 9.999999999999999999999999999999999E6144D64x +#define __ATOMIC_HLE_ACQUIRE 65536 +#define __GNUG__ 16 +#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL +#define __SIZEOF_SIZE_T__ 8 +#define __BFLT16_HAS_INFINITY__ 1 +#define __FLT64X_MIN_EXP__ (-16381) +#define __SIZEOF_WINT_T__ 4 +#define __FLT32X_DIG__ 15 +#define __LONG_LONG_WIDTH__ 64 +#define __cpp_initializer_lists 200806L +#define __FLT32_MAX_EXP__ 128 +#define ABI_ID "ELF" +#define __cpp_hex_float 201603L +#define __GXX_ABI_VERSION 1021 +#define __FLT_MIN_EXP__ (-125) +#define __GCC_HAVE_DWARF2_CFI_ASM 1 +#define __x86_64 1 +#define __cpp_lambdas 200907L +#define __INT_FAST64_TYPE__ long int +#define __BFLT16_MAX__ 3.38953138925153547590470800371487867e+38BF16 +#define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64 +#define __cpp_template_auto 201606L +#define __FLT16_DENORM_MIN__ 5.96046447753906250000000000000000000e-8F16 +#define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128 +#define __FLT64X_NORM_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __SIZEOF_POINTER__ 8 +#define __SIZE_TYPE__ long unsigned int +#define __LP64__ 1 +#define __DBL_HAS_QUIET_NAN__ 1 +#define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x +#define __LDBL_MAX_EXP__ 16384 +#define __DECIMAL_BID_FORMAT__ 1 +#define __FLT64_MIN_10_EXP__ (-307) +#define __FLT16_MIN_10_EXP__ (-4) +#define __FLT64X_DECIMAL_DIG__ 21 +#define __DEC128_MIN__ 1E-6143DL +#define __REGISTER_PREFIX__ +#define __UINT16_MAX__ 0xffff +#define __FLT128_HAS_INFINITY__ 1 +#define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32 +#define __UINT8_TYPE__ unsigned char +#define __FLT_DIG__ 6 +#define __NO_INLINE__ 1 +#define __DEC_EVAL_METHOD__ 2 +#define __FLT_MANT_DIG__ 24 +#define __LDBL_DECIMAL_DIG__ 21 +#define __VERSION__ "16.1.1 20260430" +#define __UINT64_C(c) c ## UL +#define __cpp_unicode_characters 201411L +#define __DEC64X_MIN__ 1E-6143D64x +#define _STDC_PREDEF_H 1 +#define __INT_LEAST32_MAX__ 0x7fffffff +#define __GCC_ATOMIC_INT_LOCK_FREE 2 +#define __FLT128_MAX_EXP__ 16384 +#define __cpp_conditional_explicit 201806L +#define __FLT32_MANT_DIG__ 24 +#define __cpp_decltype 200707L +#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define SIZEOF_DPTR (sizeof(void*)) +#define __FLT32X_MIN_EXP__ (-1021) +#define __cpp_inline_variables 201606L +#define __cpp_aggregate_paren_init 201902L +#define __STDC_IEC_60559_COMPLEX__ 201404L +#define __cpp_aggregate_bases 201603L +#define __BFLT16_MIN__ 1.17549435082228750796873653722224568e-38BF16 +#define __FLT128_HAS_DENORM__ 1 +#define __FLT32_DECIMAL_DIG__ 9 +#define __FLT128_DIG__ 33 +#define __INT32_C(c) c +#define __DEC64_EPSILON__ 1E-15DD +#define __ORDER_PDP_ENDIAN__ 3412 +#define __DEC128_MIN_EXP__ (-6142) +#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL +#define __cpp_constinit 201907L +#define __INT_FAST32_TYPE__ long int +#define __UINT_LEAST16_TYPE__ short unsigned int +#define __DEC64X_MANT_DIG__ 34 +#define __DEC128_MAX_EXP__ 6145 +#define unix 1 +#define __DBL_HAS_DENORM__ 1 +#define __cpp_rtti 199711L +#define __UINT64_MAX__ 0xffffffffffffffffUL +#define __FLT_IS_IEC_60559__ 1 +#define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-32LE" +#define __FLT64X_DIG__ 18 +#define __INT8_TYPE__ signed char +#define __cpp_digit_separators 201309L +#define __ELF__ 1 +#define __GCC_ASM_FLAG_OUTPUTS__ 1 +#define __UINT32_TYPE__ unsigned int +#define __BFLT16_HAS_QUIET_NAN__ 1 +#define __FLT_RADIX__ 2 +#define __INT_LEAST16_TYPE__ short int +#define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L +#define __UINTMAX_C(c) c ## UL +#define __FLT16_DIG__ 3 +#define __k8 1 +#define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x +#define __SIG_ATOMIC_MAX__ 0x7fffffff +#define __cpp_constexpr 202002L +#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 +#define __USER_LABEL_PREFIX__ +#define __STDC_IEC_60559_BFP__ 201404L +#define __SIZEOF_PTRDIFF_T__ 8 +#define __FLT64X_HAS_INFINITY__ 1 +#define __SIZEOF_LONG__ 8 +#define __LDBL_DIG__ 18 +#define __FLT64_IS_IEC_60559__ 1 +#define __x86_64__ 1 +#define __FLT16_IS_IEC_60559__ 1 +#define __FLT16_MAX_EXP__ 16 +#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF +#define __STDC_EMBED_FOUND__ 1 +#define __INT_FAST16_MAX__ 0x7fffffffffffffffL +#define __GCC_CONSTRUCTIVE_SIZE 64 +#define __FLT64_DIG__ 15 +#define __UINT_FAST32_MAX__ 0xffffffffffffffffUL +#define __UINT_LEAST64_TYPE__ long unsigned int +#define __FLT16_EPSILON__ 9.76562500000000000000000000000000000e-4F16 +#define __FLT_HAS_QUIET_NAN__ 1 +#define __FLT_MAX_10_EXP__ 38 +#define __FLT64X_HAS_DENORM__ 1 +#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL +#define __FLT_HAS_INFINITY__ 1 +#define __GNUC_EXECUTION_CHARSET_NAME "UTF-8" +#define __cpp_unicode_literals 200710L +#define __UINT_FAST16_TYPE__ long unsigned int +#define __DEC64_MAX__ 9.999999999999999E384DD +#define __STDC_EMBED_NOT_FOUND__ 0 +#define __INT_FAST32_WIDTH__ 64 +#define __CHAR16_TYPE__ short unsigned int +#define __PRAGMA_REDEFINE_EXTNAME 1 +#define __DEC64X_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143D64x +#define __SIZE_WIDTH__ 64 +#define __SEG_FS 1 +#define __INT_LEAST16_MAX__ 0x7fff +#define __FLT16_NORM_MAX__ 6.55040000000000000000000000000000000e+4F16 +#define __DEC64_MANT_DIG__ 16 +#define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32 +#define __SIG_ATOMIC_WIDTH__ 32 +#define __GCC_DESTRUCTIVE_SIZE 64 +#define __INT_LEAST64_TYPE__ long int +#define __INT16_TYPE__ short int +#define __INT_LEAST8_TYPE__ signed char +#define __FLT16_MAX__ 6.55040000000000000000000000000000000e+4F16 +#define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128 +#define __cpp_structured_bindings 201606L +#define __SIZEOF_INT__ 4 +#define __DEC32_MAX_EXP__ 97 +#define __INT_FAST8_MAX__ 0x7f +#define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __INTPTR_MAX__ 0x7fffffffffffffffL +#define __cpp_sized_deallocation 201309L +#define __cpp_guaranteed_copy_elision 201606L +#define linux 1 +#define __FLT64_HAS_QUIET_NAN__ 1 +#define __FLT32_MIN_10_EXP__ (-37) +#define __EXCEPTIONS 1 +#define __UINT16_C(c) c +#define __PTRDIFF_WIDTH__ 64 +#define __cpp_range_based_for 201603L +#define __INT_FAST16_WIDTH__ 64 +#define __FLT64_HAS_INFINITY__ 1 +#define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __FLT16_HAS_INFINITY__ 1 +#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16 +#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) +#define __code_model_small__ 1 +#define __GCC_ATOMIC_LONG_LOCK_FREE 2 +#define __cpp_nontype_template_args 201911L +#define __DEC32_MANT_DIG__ 7 +#define __k8__ 1 +#define __INTPTR_TYPE__ long int +#define __UINT16_TYPE__ short unsigned int +#define __WCHAR_TYPE__ int +#define __pic__ 2 +#define __UINTPTR_MAX__ 0xffffffffffffffffUL +#define __INT_FAST64_WIDTH__ 64 +#define __cpp_nontype_template_parameter_class 201806L +#define __cpp_concepts 202002L +#define __INT_FAST64_MAX__ 0x7fffffffffffffffL +#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 +#define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F +#define __FLT32_HAS_INFINITY__ 1 +#define __FLT64X_MAX_EXP__ 16384 +#define __UINT_FAST64_TYPE__ long unsigned int +#define __cpp_constexpr_in_decltype 201711L +#define __BFLT16_MIN_EXP__ (-125) +#define __INT_MAX__ 0x7fffffff +#define __linux__ 1 +#define __INT64_TYPE__ long int +#define __FLT_MAX_EXP__ 128 +#define __ORDER_BIG_ENDIAN__ 4321 +#define __DBL_MANT_DIG__ 53 +#define QT_CORE_LIB 1 +#define __SIZEOF_FLOAT128__ 16 +#define __BFLT16_MANT_DIG__ 8 +#define __DEC64_MIN__ 1E-383DD +#define __WINT_TYPE__ unsigned int +#define __UINT_LEAST32_TYPE__ unsigned int +#define __SIZEOF_SHORT__ 2 +#define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __SSE__ 1 +#define __LDBL_MIN_EXP__ (-16381) +#define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __DEC64X_MIN_EXP__ (-6142) +#define __amd64__ 1 +#define __WINT_WIDTH__ 32 +#define __INT_LEAST64_WIDTH__ 64 +#define __FLT32X_MAX_10_EXP__ 308 +#define __cpp_namespace_attributes 201411L +#define __SIZEOF_INT128__ 16 +#define __FLT16_MIN__ 6.10351562500000000000000000000000000e-5F16 +#define __FLT64X_IS_IEC_60559__ 1 +#define __GXX_CONSTEXPR_ASM__ 1 +#define __LDBL_MAX_10_EXP__ 4932 +#define __ATOMIC_RELAXED 0 +#define __DBL_EPSILON__ double(2.22044604925031308084726333618164062e-16L) +#define __INT_LEAST32_TYPE__ int +#define _LP64 1 +#define __UINT8_C(c) c +#define __FLT64_MAX_EXP__ 1024 +#define __cpp_return_type_deduction 201304L +#define __SIZEOF_WCHAR_T__ 4 +#define __GNUC_PATCHLEVEL__ 1 +#define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __FLT128_HAS_QUIET_NAN__ 1 +#define __INTMAX_MAX__ 0x7fffffffffffffffL +#define __INT_FAST8_TYPE__ signed char +#define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x +#define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64 +#define __STDCPP_THREADS__ 1 +#define __BFLT16_HAS_DENORM__ 1 +#define __GNUC_STDC_INLINE__ 1 +#define __FLT64_HAS_DENORM__ 1 +#define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32 +#define __FLT16_HAS_DENORM__ 1 +#define __DBL_DECIMAL_DIG__ 17 +#define __STDC_UTF_32__ 1 +#define __INT_FAST8_WIDTH__ 8 +#define __FXSR__ 1 +#define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __DBL_NORM_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define __INTMAX_WIDTH__ 64 +#define __cpp_runtime_arrays 198712L +#define __FLT32_DIG__ 6 +#define __UINT64_TYPE__ long unsigned int +#define __UINT32_C(c) c ## U +#define ARCHITECTURE_ID "x86_64" +#define __cpp_alias_templates 200704L +#define __cpp_constexpr_dynamic_alloc 201907L +#define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F +#define __FLT128_IS_IEC_60559__ 1 +#define __INT8_MAX__ 0x7f +#define __LONG_WIDTH__ 64 +#define __DBL_MIN__ double(2.22507385850720138309023271733240406e-308L) +#define __PIC__ 2 +#define __INT32_MAX__ 0x7fffffff +#define __UINT_FAST32_TYPE__ long unsigned int +#define __FLT16_MANT_DIG__ 11 +#define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __CHAR32_TYPE__ unsigned int +#define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F +#define __SSE2__ 1 +#define __cpp_deduction_guides 201907L +#define __BFLT16_NORM_MAX__ 3.38953138925153547590470800371487867e+38BF16 +#define __INT32_TYPE__ int +#define __SIZEOF_DOUBLE__ 8 +#define __cpp_exceptions 199711L +#define __FLT_MIN_10_EXP__ (-37) +#define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64 +#define __INT_LEAST32_WIDTH__ 32 +#define __INTMAX_TYPE__ long int +#define __GLIBCXX_BITSIZE_INT_N_0 128 +#define __FLT32X_HAS_QUIET_NAN__ 1 +#define __ATOMIC_CONSUME 1 +#define __GNUC_MINOR__ 1 +#define __GLIBCXX_TYPE_INT_N_0 __int128 +#define __UINTMAX_MAX__ 0xffffffffffffffffUL +#define __PIE__ 2 +#define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x +#define __cpp_template_template_args 201611L +#define __DBL_MAX_10_EXP__ 308 +#define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L +#define __INT16_C(c) c +#define __STDC__ 1 +#define __PTRDIFF_TYPE__ long int +#define __LONG_MAX__ 0x7fffffffffffffffL +#define __FLT32X_MIN_10_EXP__ (-307) +#define __UINTPTR_TYPE__ long unsigned int +#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD +#define __DEC128_MANT_DIG__ 34 +#define __LDBL_MIN_10_EXP__ (-4931) +#define __cpp_generic_lambdas 201707L +#define __SSE_MATH__ 1 +#define __SIZEOF_LONG_LONG__ 8 +#define __cpp_user_defined_literals 200809L +#define __FLT128_DECIMAL_DIG__ 36 +#define __GCC_ATOMIC_LLONG_LOCK_FREE 2 +#define __FLT32_HAS_QUIET_NAN__ 1 +#define __FLT_DECIMAL_DIG__ 9 +#define __UINT_FAST16_MAX__ 0xffffffffffffffffUL +#define __LDBL_NORM_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 +#define __SIZE_MAX__ 0xffffffffffffffffUL +#define __UINT_FAST8_TYPE__ unsigned char +#define _GNU_SOURCE 1 +#define __cpp_init_captures 201803L +#define __ATOMIC_ACQ_REL 4 +#define __ATOMIC_RELEASE 3 diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/mocs_compilation.cpp b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/mocs_compilation.cpp new file mode 100644 index 0000000..332dc28 --- /dev/null +++ b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/mocs_compilation.cpp @@ -0,0 +1,10 @@ +// This file is autogenerated. Changes will be overwritten. +#include "NFJ6QANG5N/moc_EditableGridWidget.cpp" +#include "NFJ6QANG5N/moc_FilterRowWidget.cpp" +#include "NFJ6QANG5N/moc_FilterableHeaderView.cpp" +#include "NFJ6QANG5N/moc_FindReplacePanel.cpp" +#include "NFJ6QANG5N/moc_FocusManager.cpp" +#include "NFJ6QANG5N/moc_PluginSplitView.cpp" +#include "NFJ6QANG5N/moc_PluginStatusBar.cpp" +#include "NFJ6QANG5N/moc_PluginToolBar.cpp" +#include "NFJ6QANG5N/moc_ScopedFindReplacePanel.cpp" diff --git a/wlx/wayland_qt_base/build/wayland_qt_base_autogen/timestamp b/wlx/wayland_qt_base/build/wayland_qt_base_autogen/timestamp new file mode 100644 index 0000000..e69de29 diff --git a/wlx/wlxbase_wlqt/CMakeLists.txt b/wlx/wlxbase_wlqt/CMakeLists.txt new file mode 100644 index 0000000..3b1255f --- /dev/null +++ b/wlx/wlxbase_wlqt/CMakeLists.txt @@ -0,0 +1,82 @@ +cmake_minimum_required(VERSION 3.16) +project(wlxbase_wlqt LANGUAGES C CXX) + +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_AUTOMOC ON) + +find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets) +find_package(PkgConfig REQUIRED) +pkg_check_modules(GLIB2 REQUIRED glib-2.0) + +# --------------------------------------------------------------------------- +# enca — downloaded and built as a static library +# --------------------------------------------------------------------------- +set(ENCA_VERSION "1.19") +set(ENCA_DIR "${CMAKE_CURRENT_BINARY_DIR}/enca-${ENCA_VERSION}") +set(ENCA_TAR "${CMAKE_CURRENT_BINARY_DIR}/enca-${ENCA_VERSION}.tar.gz") +set(ENCA_LIB "${ENCA_DIR}/lib/.libs/libenca.a") + +if(NOT EXISTS "${ENCA_LIB}") + if(NOT EXISTS "${ENCA_TAR}") + message(STATUS "Downloading enca ${ENCA_VERSION}...") + file(DOWNLOAD + "https://dl.cihar.com/enca/enca-${ENCA_VERSION}.tar.gz" + "${ENCA_TAR}" + SHOW_PROGRESS + ) + endif() + message(STATUS "Extracting and building enca...") + execute_process(COMMAND ${CMAKE_COMMAND} -E tar xzf "${ENCA_TAR}" + WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}") + execute_process(COMMAND ./configure --disable-shared --enable-static --with-pic + WORKING_DIRECTORY "${ENCA_DIR}") + execute_process(COMMAND make -j4 + WORKING_DIRECTORY "${ENCA_DIR}") +endif() + +add_library(enca_static STATIC IMPORTED) +set_target_properties(enca_static PROPERTIES + IMPORTED_LOCATION "${ENCA_LIB}" +) + +# --------------------------------------------------------------------------- +# wlxbase_wlqt static library +# --------------------------------------------------------------------------- +file(GLOB BASE_HEADERS "include/wlxbase_wlqt/*.h") + +add_library(wlxbase_wlqt STATIC + ${BASE_HEADERS} + src/FocusManager.cpp + src/PluginToolBar.cpp + src/EditableGridWidget.cpp + src/FindReplacePanel.cpp + src/ScopedFindReplacePanel.cpp + src/EncodingUtils.cpp + src/FilterRowWidget.cpp + src/FilterableHeaderView.cpp + src/PluginStatusBar.cpp + src/PluginSplitView.cpp + src/ThemeManager.cpp + src/CrashLogger.cpp + src/SequentialRowProxyModel.cpp +) + +target_include_directories(wlxbase_wlqt + PUBLIC + include + PRIVATE + "${ENCA_DIR}/lib" + ${GLIB2_INCLUDE_DIRS} +) + +target_link_libraries(wlxbase_wlqt + PUBLIC + Qt6::Core + Qt6::Gui + Qt6::Widgets + PRIVATE + enca_static + ${GLIB2_LIBRARIES} + ${CMAKE_DL_LIBS} +) diff --git a/wlx/wlxbase_wlqt/README.md b/wlx/wlxbase_wlqt/README.md new file mode 100644 index 0000000..c7d87f7 --- /dev/null +++ b/wlx/wlxbase_wlqt/README.md @@ -0,0 +1,810 @@ +# wayland_qt_base + +A reusable component library for building Qt6 Wayland WLX plugins for [Double Commander](https://doublecmd.sourceforge.io/). + +The library codifies battle-tested patterns that evolved across `csvview`, `logview`, and `kate` — focus management, keyboard shortcut handling, toolbar integration, grid editing, find/replace, and encoding detection — into a clean, decoupled foundation for new plugins. + +> **Existing plugins are not modified by this library.** This is a new foundation for future plugin development. + +--- + +## Table of Contents + +- [Architecture](#architecture) +- [Requirements](#requirements) +- [Building](#building) +- [Integration](#integration) +- [Components](#components) + - [FocusManager](#focusmanager) + - [PluginToolBar](#plugintoolbar) + - [EditableGridWidget](#editablegridwidget) + - [FindReplacePanel](#findreplacepanel) + - [ScopedFindReplacePanel](#scopedfindreplacepanel) +- [Utilities](#utilities) + - [EncodingUtils](#encodingutils) +- [Examples](#examples) +- [Design Decisions](#design-decisions) +- [Directory Layout](#directory-layout) + +--- + +## Architecture + +Each component depends only on `FocusManager`. A plugin that needs just a toolbar doesn't pull in grid or find/replace. `EncodingUtils` is a standalone utility with no component dependencies. + +``` + ┌──────────────────────┐ + │ FocusManager │ + │ (core framework) │ + │ shortcut registry │ + │ optional undo/redo │ + └──────┬───┬───┬───────┘ + │ │ │ + ┌───────────┘ │ └───────────┐ + │ │ │ + ┌─────────▼──┐ ┌────────▼────────┐ ┌───▼──────────────┐ + │PluginToolBar│ │EditableGridWidget│ │ FindReplacePanel │ + │(focus-safe) │ │ (grid + undo) │ │ (base, no scope)│ + └────────────┘ └─────────────────┘ └───────┬──────────┘ + │ extends + ┌───────▼───────────────┐ + │ScopedFindReplacePanel │ + │(adds scope combo box) │ + └───────────────────────┘ + + ┌─────────────┐ + │EncodingUtils │ (standalone utility — no component deps) + └─────────────┘ +``` + +**Namespace:** `QtWlPlugin` + +--- + +## Requirements + +- **CMake** ≥ 3.16 +- **Qt 6** (Core, Gui, Widgets) +- **GLib 2.0** (for encoding conversion via `g_convert_with_fallback`) +- **C++20** compiler +- **Internet connection** on first build (to download enca 1.19) + +The [enca](https://cihar.com/software/enca/) library is downloaded and statically built automatically during the CMake configure step. + +--- + +## Building + +### Standalone + +```bash +cd wlx/wayland_qt_base +mkdir build && cd build +cmake .. +make -j$(nproc) +``` + +This produces `libwayland_qt_base.a` — a static library. Each consumer plugin links it in and produces a self-contained `.wlx`. + +### As part of a plugin build + +In your plugin's `CMakeLists.txt`: + +```cmake +add_subdirectory(../../wayland_qt_base wayland_qt_base) +target_link_libraries(my_plugin PRIVATE wayland_qt_base) +``` + +The public include directory (`include/`) is automatically added, so you can include headers as: + +```cpp +#include +#include +// etc. +``` + +--- + +## Integration + +A minimal plugin using this library: + +```cpp +#include +#include + +class MyPluginWidget : public QWidget { + Q_OBJECT +public: + MyPluginWidget(QWidget *parent = nullptr) : QWidget(parent) { + auto *view = new QTextEdit(this); + auto *layout = new QVBoxLayout(this); + + // 1. Create FocusManager (required for all components) + m_fm = new QtWlPlugin::FocusManager(this, view, this); + + // 2. Create a focus-safe toolbar + m_toolbar = new QtWlPlugin::PluginToolBar(m_fm, this); + m_toolbar->addToolAction("Save", QKeySequence(Qt::CTRL | Qt::Key_S)); + + // 3. Register plugin-specific shortcuts + m_fm->registerShortcut( + QKeySequence(Qt::CTRL | Qt::Key_W), + QtWlPlugin::FocusManager::Always, + [this]() { close(); return true; } + ); + + layout->addWidget(m_toolbar); + layout->addWidget(view); + } + +private: + QtWlPlugin::FocusManager *m_fm; + QtWlPlugin::PluginToolBar *m_toolbar; +}; +``` + +--- + +## Components + +### FocusManager + +**Header:** `` + +The core framework that every plugin using this library needs. It solves the fundamental problem of a Qt widget embedded in a non-Qt host application: focus activation, deactivation, bounce prevention, and keyboard shortcut dispatch. + +#### The Problem It Solves + +When a Qt plugin widget is embedded inside Double Commander (a non-Qt application), focus management becomes complex: + +- Clicking inside the plugin must activate it; clicking outside must deactivate it. +- Programmatic focus changes (e.g. tab switching in DC) must not accidentally activate the plugin. +- Newly added child widgets must not steal focus from the host. +- Keyboard shortcuts must only fire when the plugin is active, and some should be suppressed when the user is editing text in an input field. + +FocusManager handles all of this through a single `qApp` event filter. + +#### Constructor + +```cpp +QtWlPlugin::FocusManager(QWidget *pluginRoot, QWidget *primaryView, QObject *parent = nullptr); +``` + +- `pluginRoot` — the top-level widget of the plugin (typically `this` in the plugin's main widget). +- `primaryView` — the main content widget that should receive focus by default (e.g. a `QTableView`, `QTextEdit`, `QTreeView`). + +The constructor installs the event filter on `qApp` and sets `pluginRoot`'s focus proxy to `primaryView`. + +#### Activation + +| Method | Description | +|--------|-------------| +| `bool isActive() const` | Returns whether the plugin is currently active. | +| `void setActive(bool)` | Manually activate/deactivate. Emits `activated()` or `deactivated()`. When deactivating, clears focus and returns it to the host. | + +**Signals:** `activated()`, `deactivated()` + +Activation is normally handled automatically by the event filter (click inside → activate, click outside → deactivate), but `setActive()` is available for edge cases. + +#### Input Widget Tracking + +The FocusManager distinguishes between "structural" widgets (buttons, headers, etc.) and "input" widgets (text fields, cell editors) to determine when shortcuts should be suppressed. + +| Method | Description | +|--------|-------------| +| `void addInputWidget(QWidget *w)` | Register a widget as an input widget (e.g. a QLineEdit in a find panel). | +| `void removeInputWidget(QWidget *w)` | Unregister an input widget. | +| `bool isInputWidget(QWidget *w) const` | Returns `true` if `w` is registered or is a descendant of `primaryView` (but not `primaryView` itself — this catches dynamically created cell editors). | +| `QWidget *activeInput() const` | Returns the currently focused input widget, or `nullptr`. | + +**Signals:** `inputWidgetEntered(QWidget *w)`, `inputWidgetExited()` + +#### Focus Proxy + +When showing a secondary panel (e.g. find/replace), the plugin's focus proxy should be redirected so keyboard events reach the panel's input fields. + +| Method | Description | +|--------|-------------| +| `void setFocusProxy(QWidget *proxy)` | Redirect `pluginRoot`'s focus proxy to `proxy`. | +| `void resetFocusProxy()` | Reset focus proxy back to `primaryView`. | +| `void restoreViewFocus()` | Explicitly set focus to `primaryView`. | + +#### Shortcut Registration + +Replaces the hardcoded if-chains in `eventFilter` with a declarative registry. + +```cpp +enum ShortcutContext { WhenNoInput, Always }; +using ShortcutId = int; + +ShortcutId registerShortcut(const QKeySequence &keys, ShortcutContext ctx, + std::function handler); +void unregisterShortcut(ShortcutId id); +``` + +- **`WhenNoInput`** — the shortcut only fires when no input widget has focus. Use for navigation keys, copy/paste, delete, etc. +- **`Always`** — the shortcut fires even when the user is editing text. Use for Ctrl+S (save), Ctrl+F (find), Ctrl+W (close), etc. + +The handler returns `true` to consume the event, `false` to let it propagate. + +#### Optional Undo/Redo + +```cpp +void setUndoStack(QUndoStack *stack); +QUndoStack *undoStack() const; +``` + +When a non-null `QUndoStack` is set, FocusManager automatically registers three shortcuts (all with `WhenNoInput` context): + +| Shortcut | Action | +|----------|--------| +| `Ctrl+Z` | `stack->undo()` | +| `Ctrl+Shift+Z` | `stack->redo()` | +| `Ctrl+Y` | `stack->redo()` | + +Calling `setUndoStack(nullptr)` unregisters them. The consumer retains full access to the stack for pushing custom undo commands. + +#### Saved Focus Widget + +```cpp +void saveFocusWidget(QWidget *w); +``` + +Store a reference to the host application's focus widget so the plugin can restore focus to it when deactivating. This is useful when the host tells the plugin which widget had focus before the plugin was activated. + +#### Event Filter Internals + +The event filter handles five event types: + +1. **`MouseButtonPress`** — geometry-based click detection. Click inside plugin → activate. Click outside → deactivate. +2. **`FocusIn`** — tracks which input widget has focus. Ignores programmatic focus changes (`OtherFocusReason`) when inactive. +3. **`KeyPress`** — iterates the shortcut registry, matches key sequences, checks context, dispatches handlers. +4. **`ChildAdded`** — sets `Qt::NoFocus` on newly created child widgets to prevent focus theft. +5. **`QApplication::focusChanged`** — connected in the constructor. Detects focus leaving the plugin hierarchy. When focus enters the plugin while inactive, bounces it back to the host via `QTimer::singleShot(0, ...)`. + +--- + +### PluginToolBar + +**Header:** `` + +A `QToolBar` subclass that integrates with `FocusManager` to prevent focus issues caused by toolbar interaction. + +#### The Problem It Solves + +In a Qt plugin embedded in a non-Qt host, clicking a toolbar button transfers focus to the button widget. Without intervention, this causes the host to think the plugin lost focus and deactivate it. PluginToolBar prevents this by: + +1. Setting `Qt::NoFocus` on all action widgets (buttons, combo boxes, etc.). +2. Restoring focus to `primaryView` after every action trigger via `QTimer::singleShot`. +3. Applying compact default styling. + +#### API + +```cpp +explicit PluginToolBar(FocusManager *fm, QWidget *parent = nullptr); + +QAction *addToolAction(const QString &text, + const QKeySequence &shortcut = {}, + int ctx = 0 /* FocusManager::WhenNoInput */); +``` + +- `addToolAction` creates a `QAction`, adds it to the toolbar, and optionally registers a keyboard shortcut through `FocusManager`. The shortcut text is appended to the tooltip automatically. +- Any dynamically added widgets are also enforced to `NoFocus` via an `actionEvent` override. + +--- + +### EditableGridWidget + +**Header:** `` + +A `QWidget` wrapping a caller-injected `QTableView` with full editing capabilities, undo/redo support, drag-to-move, and context menus. **Format-agnostic** — it provides no file I/O, no parsing, no encoding detection. + +Because `QTableWidget` is a subclass of `QTableView`, you can inject either: +- A `QTableWidget` for simple item-based workflows +- A plain `QTableView` with any `QAbstractItemModel` (e.g. `QStandardItemModel`, `QSqlTableModel`) for model-based workflows + +All internal data access goes through `QAbstractItemModel` / `QModelIndex` — zero `QTableWidgetItem` dependencies inside the grid. + +#### GridMode + +The constructor requires a `GridMode` enum that determines the undo/memory strategy: + +| Mode | Undo Strategy | Sorting | Best For | +|------|--------------|---------|----------| +| `GridMode::MemoryDocument` | Full `QUndoStack` tracking. Sort stores before/after snapshots in RAM. | Snapshot-based undo | `QTableWidget`, `QStandardItemModel`, in-memory data | +| `GridMode::LiveDatabase` | Bypasses `QUndoStack` for data mutations. Sort issues `model->sort()` (SQL `ORDER BY`) with no RAM snapshot. | Direct `model->sort()` | `QSqlTableModel`, transactional models | + +Both modes share context menus, drag-to-reorder, focus management, keyboard shortcuts, and the `WrapAnywhereDelegate`. + +#### Constructor (Dependency Injection) + +```cpp +// The caller creates and configures the view, then hands it to the grid. +explicit EditableGridWidget(QTableView *view, GridMode mode, FocusManager *fm, QWidget *parent = nullptr); +``` + +**In-memory document (full undo):** +```cpp +auto *tw = new QTableWidget(); +auto *grid = new QtWlPlugin::EditableGridWidget(tw, QtWlPlugin::GridMode::MemoryDocument, fm, this); +``` + +**Live database (transactional):** +```cpp +auto *tv = new QTableView(); +tv->setModel(sqlModel); +auto *grid = new QtWlPlugin::EditableGridWidget(tv, QtWlPlugin::GridMode::LiveDatabase, fm, this); +``` + +#### Features + +| Feature | Details | +|---------|---------| +| **Undo/Redo** | `QUndoStack` registered with FocusManager. In `MemoryDocument` mode: four undo command types (`EditCellCommand`, `RowColCommand`, `DataSnapshotCommand`, `SectionMoveCommand`). In `LiveDatabase` mode: data mutations bypass the undo stack — the transactional model handles reverts. | +| **Cell editing** | Enter to open editor, Escape to cancel (reverts to pre-edit value), Up/Down to navigate between cells while editing, Enter to commit and advance right (wraps to next row). | +| **Arrow navigation** | Left at column 0 wraps to the last column of the previous row. Right at last column wraps to column 0 of the next row. | +| **Copy/Paste** | `copySelection(separator)` copies selected cells via `model()->data()`. `pasteSelection()` inserts clipboard rows — wrapped in undo commands in `MemoryDocument`, direct model calls in `LiveDatabase`. | +| **Insert/Delete** | `insertRows()`, `deleteSelectedRows()`, `insertColumns()`, `deleteSelectedColumns()` — undo-wrapped in `MemoryDocument`, direct `model->insertRows()`/`removeRows()` in `LiveDatabase`. | +| **Drag-to-move** | Multi-select row or column drag via headers. Uses a debounce timer to coalesce Qt's per-section `sectionMoved` signals into a single undo command. | +| **Column sorting** | Click header once to arm, click again to sort. `MemoryDocument`: stores full data snapshot for undo. `LiveDatabase`: issues `model->sort()` (SQL `ORDER BY`) with zero RAM overhead. | +| **Word wrap** | `WrapAnywhereDelegate` enables character-level text wrapping (not just word boundaries). Toggle with `setWordWrap(bool)`. | +| **Context menus** | Right-click on the table or vertical header → row operations. Right-click on horizontal header → column operations. Includes insert from clipboard. | +| **Dirty tracking** | `isDirty()` / `dirtyChanged(bool)` signal based on `QUndoStack::isClean()`. | + +#### API + +```cpp +explicit EditableGridWidget(QTableView *view, GridMode mode, FocusManager *fm, QWidget *parent = nullptr); + +// Access +QTableView *view() const; // Returns the injected view (may be QTableView or QTableWidget) +GridMode mode() const; // Returns the active mode +QUndoStack *undoStack() const; + +// Row operations +void copySelection(char separator = '\t'); +QString getSelectionAsText(char separator = '\t'); +void pasteSelection(); +void pasteSelectionAt(int atRow); +void insertRows(int count, int atRow); +void deleteSelectedRows(); + +// Column operations +void copyColumnSelection(char separator = '\t'); +void pasteColumnSelectionAt(int atCol); +void insertColumns(int count, int atCol); +void deleteSelectedColumns(); + +// Appearance +void setWordWrap(bool wrap); +bool wordWrap() const; +void setShowGrid(bool show); + +// State +bool isDirty() const; + +// Signals +void dirtyChanged(bool dirty); +``` + +The consumer provides a `QTableView` (or `QTableWidget`) with a model already set. All grid operations go through `view()->model()` using `QModelIndex`. + +#### Registered Shortcuts + +These are automatically registered with `FocusManager` (all `WhenNoInput`): + +| Shortcut | Action | +|----------|--------| +| `Ctrl+C` | Copy selection as TSV | +| `Ctrl+V` | Paste from clipboard | +| `Delete` | Delete selected rows | +| `Enter` / `Return` | Edit current cell | +| `↑` `↓` `←` `→` | Navigate with right-wrap | +| `Ctrl+Z` | Undo (via FocusManager) | +| `Ctrl+Shift+Z` / `Ctrl+Y` | Redo (via FocusManager) | + +--- + +### FindReplacePanel + +**Header:** `` + +The **base class** for find & replace UI. Provides inputs, match options, and action buttons but has **no scope concept** — scope is entirely the consumer's responsibility. + +#### UI Layout + +``` +┌──────────────────────────────────────────────────────────────┐ +│ Find: [_______________] Replace: [_______________] │ +│ ☐ Match Case ☐ Match Entire Cell ☐ Regex │ +│ [Find Prev] [Find Next] [Replace] [Replace All] status ✕ │ +└──────────────────────────────────────────────────────────────┘ +``` + +#### API + +```cpp +explicit FindReplacePanel(FocusManager *fm, QWidget *parent = nullptr); + +// Configuration +void setReplaceEnabled(bool enabled); // hide replace row for read-only views + +// State +QString findText() const; +QString replaceText() const; +bool matchCase() const; +bool matchEntireCell() const; +bool useRegex() const; + +// Status feedback +void setStatusText(const QString &text); + +// Visibility +void showPanel(bool show); +bool isPanelVisible() const; + +// Signals +void findRequested(bool forward); // true = next, false = previous +void replaceRequested(); +void replaceAllRequested(); +void panelClosed(); +``` + +#### Focus Integration + +- When shown, `setFocusProxy` redirects to the find input and selects all text. +- When hidden, `resetFocusProxy` and `restoreViewFocus` return focus to the primary view. +- Find and replace inputs are registered as input widgets with FocusManager. +- `Ctrl+F` and `Ctrl+R` toggle panel visibility (registered as `Always` shortcuts). + +#### Subclass Extension + +The `optionsRow()` layout is exposed to subclasses for inserting additional widgets: + +```cpp +protected: + QHBoxLayout *optionsRow() const; +``` + +--- + +### ScopedFindReplacePanel + +**Header:** `` + +Extends `FindReplacePanel` with a configurable scope combo box. The consumer provides scope labels and reads the current selection in their signal handlers. + +```cpp +explicit ScopedFindReplacePanel(FocusManager *fm, QWidget *parent = nullptr); + +void setScopes(const QStringList &scopes); // e.g. {"All Cells", "Current Column"} +QString currentScope() const; +``` + +#### Usage + +```cpp +auto *panel = new QtWlPlugin::ScopedFindReplacePanel(m_fm, this); +panel->setScopes({"All Cells", "Selected Cells", "Current Column", "Current Row"}); + +connect(panel, &QtWlPlugin::FindReplacePanel::findRequested, + this, [this, panel](bool forward) { + QString scope = panel->currentScope(); + // ... implement search logic using scope + } +); +``` + +--- + +## Utilities + +### EncodingUtils + +**Header:** `` + +Static utility class for encoding detection (via [enca](https://cihar.com/software/enca/)) and encoding conversion (via GLib's `g_convert_with_fallback`). No instance needed — all methods are static. + +#### API + +```cpp +// Detect encoding of raw bytes. Language hint improves accuracy for +// specific scripts (e.g. "ru" for Russian, "zh" for Chinese). +static QString detectEncoding(const QByteArray &data, const QString &language = {}); + +// Detect encoding from a file (reads up to sampleSize bytes). +static QString detectFileEncoding(const QString &filePath, const QString &language = {}, + int sampleSize = 4096, bool readAll = false); + +// Convert from a detected encoding to UTF-8. +static QByteArray toUtf8(const QByteArray &data, const QString &fromEncoding); + +// Convert a UTF-8 QString to a target encoding. +static QByteArray fromUtf8(const QString &text, const QString &toEncoding); + +// One-shot: detect encoding and decode to QString. +static QString decodeToString(const QByteArray &data, const QString &language = {}); + +// Check runtime availability of enca. +static bool isEncaAvailable(); +``` + +#### Usage + +```cpp +// Detect and decode a file +QFile f("/path/to/file.txt"); +f.open(QFile::ReadOnly); +QByteArray raw = f.readAll(); +f.close(); + +QString encoding = QtWlPlugin::EncodingUtils::detectEncoding(raw, "ru"); +// encoding → "windows-1251" + +QString text = QtWlPlugin::EncodingUtils::decodeToString(raw, "ru"); +// text → decoded UTF-8 QString + +// Convert back for saving +QByteArray encoded = QtWlPlugin::EncodingUtils::fromUtf8(text, "windows-1251"); +``` + +#### Supported Encodings + +Detection accuracy depends on the language hint. enca supports: + +| Language | Code | Scripts | +|----------|------|---------| +| Belarusian | `be` | CP1251, ISO-8859-5, IBM866, KOI8-UNI, etc. | +| Bulgarian | `bg` | CP1251, ISO-8859-5, ECMA-113, etc. | +| Chinese | `zh` | BIG5, GBK, GB2312, HZ, etc. | +| Croatian | `hr` | CP1250, ISO-8859-2, ISO-8859-16, etc. | +| Czech | `cs` | CP1250, ISO-8859-2, IBM852, KEYBCS2, etc. | +| Estonian | `et` | CP1257, ISO-8859-4, ISO-8859-13, etc. | +| Hungarian | `hu` | CP1250, ISO-8859-2, IBM852, etc. | +| Latvian | `lv` | CP1257, ISO-8859-4, ISO-8859-13, etc. | +| Lithuanian | `lt` | CP1257, ISO-8859-4, ISO-8859-13, etc. | +| Polish | `pl` | CP1250, ISO-8859-2, ISO-8859-16, etc. | +| Russian | `ru` | CP1251, KOI8-R, ISO-8859-5, IBM866, etc. | +| Slovak | `sk` | CP1250, ISO-8859-2, IBM852, KEYBCS2, etc. | +| Slovene | `sl` | CP1250, ISO-8859-2, IBM852, etc. | +| Ukrainian | `uk` | CP1251, KOI8-U, ISO-8859-5, IBM866, etc. | + +Use `"__"` or an empty string to let enca auto-detect from the system locale. + +--- + +## Examples + +### Plugin with toolbar + find/replace (no grid) + +```cpp +#include +#include +#include + +class TextViewerWidget : public QWidget { + Q_OBJECT +public: + TextViewerWidget(QWidget *parent = nullptr) : QWidget(parent) { + auto *view = new QTextEdit(this); + auto *layout = new QVBoxLayout(this); + + m_fm = new QtWlPlugin::FocusManager(this, view, this); + + m_toolbar = new QtWlPlugin::PluginToolBar(m_fm, this); + m_toolbar->addToolAction("Print", QKeySequence(Qt::CTRL | Qt::Key_P)); + + m_findReplace = new QtWlPlugin::ScopedFindReplacePanel(m_fm, this); + m_findReplace->setScopes({"Entire Document", "Selection"}); + m_findReplace->setReplaceEnabled(false); // read-only viewer + + connect(m_findReplace, &QtWlPlugin::FindReplacePanel::findRequested, + this, &TextViewerWidget::onFind); + + layout->addWidget(m_toolbar); + layout->addWidget(view, 1); + layout->addWidget(m_findReplace); + } + +private slots: + void onFind(bool forward) { + QString query = m_findReplace->findText(); + QString scope = m_findReplace->currentScope(); + // ... implement search + } + +private: + QtWlPlugin::FocusManager *m_fm; + QtWlPlugin::PluginToolBar *m_toolbar; + QtWlPlugin::ScopedFindReplacePanel *m_findReplace; +}; +``` + +### Plugin with editable grid + undo (QTableWidget) + +```cpp +#include +#include +#include +#include + +class DataEditorWidget : public QWidget { + Q_OBJECT +public: + DataEditorWidget(QWidget *parent = nullptr) : QWidget(parent) { + auto *layout = new QVBoxLayout(this); + + // Inject a QTableWidget for item-based convenience + auto *table = new QTableWidget(); + m_fm = new QtWlPlugin::FocusManager(this, table, this); + m_grid = new QtWlPlugin::EditableGridWidget( + table, QtWlPlugin::GridMode::MemoryDocument, m_fm, this); + + m_toolbar = new QtWlPlugin::PluginToolBar(m_fm, this); + auto *actSave = m_toolbar->addToolAction("Save", + QKeySequence(Qt::CTRL | Qt::Key_S), + QtWlPlugin::FocusManager::Always); + connect(actSave, &QAction::triggered, this, &DataEditorWidget::onSave); + + connect(m_grid, &QtWlPlugin::EditableGridWidget::dirtyChanged, + this, [this](bool dirty) { + setWindowTitle(dirty ? "Data Editor *" : "Data Editor"); + }); + + layout->addWidget(m_toolbar); + layout->addWidget(m_grid, 1); + loadData(); + } + +private: + void loadData() { + // You can still access QTableWidget-specific methods on the original pointer + auto *tw = qobject_cast(m_grid->view()); + tw->setRowCount(100); + tw->setColumnCount(5); + // ... populate cells with QTableWidgetItem + } + + void onSave() { + // ... write data in your format + m_fm->undoStack()->setClean(); + } + + QtWlPlugin::FocusManager *m_fm; + QtWlPlugin::PluginToolBar *m_toolbar; + QtWlPlugin::EditableGridWidget *m_grid; +}; +``` + +### Plugin with editable grid + SQL model (QTableView) + +```cpp +#include +#include +#include +#include +#include + +class SqlEditorWidget : public QWidget { + Q_OBJECT +public: + SqlEditorWidget(QSqlDatabase db, QWidget *parent = nullptr) : QWidget(parent) { + auto *layout = new QVBoxLayout(this); + + // Inject a QTableView with a SQL model + auto *sqlView = new QTableView(); + auto *sqlModel = new QSqlTableModel(this, db); + sqlModel->setTable("users"); + sqlModel->select(); + sqlView->setModel(sqlModel); + + m_fm = new QtWlPlugin::FocusManager(this, sqlView, this); + m_grid = new QtWlPlugin::EditableGridWidget( + sqlView, QtWlPlugin::GridMode::LiveDatabase, m_fm, this); + + // The grid handles all focus, context menus, and shortcuts. + // Sorting uses model->sort() → SQL ORDER BY (no RAM snapshot). + // Insert/delete call model directly (no undo stack wrapping). + // model->setData() triggers SQL UPDATEs via QSqlTableModel. + + layout->addWidget(m_grid, 1); + } + +private: + QtWlPlugin::FocusManager *m_fm; + QtWlPlugin::EditableGridWidget *m_grid; +}; +``` + +### Encoding detection on file load + +```cpp +#include + +void MyPlugin::loadFile(const QString &path) { + QFile file(path); + file.open(QFile::ReadOnly); + QByteArray raw = file.readAll(); + file.close(); + + QString encoding = QtWlPlugin::EncodingUtils::detectEncoding(raw); + if (encoding.isEmpty()) + encoding = "UTF-8"; // fallback + + QByteArray utf8 = QtWlPlugin::EncodingUtils::toUtf8(raw, encoding); + QString content = QString::fromUtf8(utf8); + + m_detectedEncoding = encoding; // store for save + // ... display content +} + +void MyPlugin::saveFile(const QString &path) { + QString content = /* ... get content ... */; + QByteArray encoded = QtWlPlugin::EncodingUtils::fromUtf8(content, m_detectedEncoding); + + QFile file(path); + file.open(QFile::WriteOnly); + file.write(encoded); + file.close(); +} +``` + +--- + +## Design Decisions + +### Shortcut Registry over Hardcoded eventFilter + +Existing plugins (`csvview`, `logview`, `kate`) each contain near-identical `eventFilter` implementations with large if-chains mapping key combinations to actions. This library replaces that pattern with a declarative `registerShortcut()` API. New plugins never need to subclass or override `eventFilter` for keyboard shortcuts. + +### Static Library + +Each consumer plugin links `libwayland_qt_base.a` and produces a self-contained `.wlx` with no runtime dependency on a separate shared object. This simplifies deployment — just ship the `.wlx` file. + +### Optional Undo + +Not all plugins need undo/redo (e.g. a read-only log viewer). Calling `setUndoStack()` is optional. When set, undo shortcuts are auto-registered; when cleared, they're auto-unregistered. The consumer always has direct access to the `QUndoStack` for pushing custom commands, checking `isClean()`, etc. + +### FindReplacePanel Hierarchy + +The base class `FindReplacePanel` has zero scope awareness. This is intentional — a text editor plugin's "scope" concept (selection, whole file) is fundamentally different from a grid plugin's (all cells, current column, current row). The base class provides the UI and signals; the consumer implements matching. + +`ScopedFindReplacePanel` adds a scope combo box for plugins that want predefined scope options. It inserts into the base's `optionsRow()` layout, so there's no UI duplication. + +### Model-Based, Format-Agnostic Grid + +`EditableGridWidget` accepts a `QTableView*` via dependency injection and performs all data operations through `QAbstractItemModel` (`model()->data()`, `model()->setData()`, `model()->insertRows()`, etc.). This means the same grid code works identically whether the underlying model is a `QTableWidget`'s internal model, a `QStandardItemModel`, a `QSqlTableModel`, or any custom `QAbstractItemModel`. The consumer is responsible for file I/O, encoding, and format-specific quoting — the grid knows nothing about data formats. + +### GridMode: MemoryDocument vs LiveDatabase + +The `GridMode` enum forces the downstream developer to explicitly acknowledge the memory paradigm of the data they are loading. `MemoryDocument` enables full undo/redo tracking — every edit, insert, delete, and sort is wrapped in a `QUndoCommand` backed by in-memory data snapshots. `LiveDatabase` bypasses all memory-intensive operations: sorting delegates to `model->sort()` (which translates to SQL `ORDER BY` for `QSqlTableModel`), and structural mutations (insert/delete) call the model directly without undo wrappers. This prevents the catastrophic RAM explosion that would occur if a 5-million-row SQLite table were snapshotted into `QVariantList` objects for undo support. Both modes share identical context menus, drag-to-reorder, focus proxying, keyboard shortcuts, and the `WrapAnywhereDelegate`. + +### enca as Build Dependency + +The encoding detection library [enca](https://cihar.com/software/enca/) is downloaded and statically compiled during the CMake configure step. This mirrors the pattern used by `csvview` and avoids requiring enca to be installed system-wide. The static link means no runtime dependency. + +--- + +## Directory Layout + +``` +wlx/wlxbase_wlqt/ +├── CMakeLists.txt +├── README.md +├── include/ +│ └── wlxbase_wlqt/ +│ ├── EditableGridWidget.h +│ ├── EncodingUtils.h +│ ├── FindReplacePanel.h +│ ├── FocusManager.h +│ ├── PluginToolBar.h +│ └── ScopedFindReplacePanel.h +└── src/ + ├── EditableGridWidget.cpp + ├── EncodingUtils.cpp + ├── FindReplacePanel.cpp + ├── FocusManager.cpp + ├── PluginToolBar.cpp + └── ScopedFindReplacePanel.cpp +``` diff --git a/wlx/wlxbase_wlqt/include/wlxbase_wlqt/CrashLogger.h b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/CrashLogger.h new file mode 100644 index 0000000..8ed40c4 --- /dev/null +++ b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/CrashLogger.h @@ -0,0 +1,74 @@ +#pragma once + +/// @file CrashLogger.h +/// Global exception logging for WLX plugins. +/// +/// Usage in wlx_entry.cpp: +/// @code +/// #include +/// +/// HWND DCPCALL ListLoad(HWND ParentWin, char* FileToLoad, int ShowFlags) +/// { +/// WLX_TRY { +/// // ... normal plugin code ... +/// } WLX_CATCH("ListLoad"); +/// return nullptr; // fallback return on exception +/// } +/// @endcode +/// +/// Logs are written to .log next to the .wlx file. + +#include +#include + +namespace QtWlPlugin { + +class CrashLogger { +public: + /// Initialize with any address inside the plugin .so/.wlx + /// (typically a function pointer like &ListLoad). + /// Determines the plugin path and creates the log file path. + static void init(void *addressInPlugin); + + /// Log a caught std::exception with stack trace. + static void log(const char *entryPoint, const std::exception &e); + + /// Log an unknown exception (catch ...) with stack trace. + static void logUnknown(const char *entryPoint); + + /// Log a custom message (for warnings, state dumps, etc.) + static void logMessage(const char *entryPoint, const char *message); + + /// Get the log file path (empty if not initialized). + static const std::string &logPath(); + +private: + static void writeEntry(const char *entryPoint, const char *type, + const char *message); +}; + +} // namespace QtWlPlugin + +/// Convenience macros for wrapping WLX entry points. +/// +/// WLX_TRY { ... } WLX_CATCH("FunctionName"); +/// +/// On first use, auto-initializes the logger with the current function address. +#define WLX_TRY \ + { \ + static bool _wlx_logger_init = false; \ + if (!_wlx_logger_init) { \ + _wlx_logger_init = true; \ + QtWlPlugin::CrashLogger::init( \ + reinterpret_cast(&_wlx_logger_init)); \ + } \ + } \ + try + +#define WLX_CATCH(funcName) \ + catch (const std::exception &_wlx_ex) { \ + QtWlPlugin::CrashLogger::log(funcName, _wlx_ex); \ + } \ + catch (...) { \ + QtWlPlugin::CrashLogger::logUnknown(funcName); \ + } diff --git a/wlx/wlxbase_wlqt/include/wlxbase_wlqt/EditableGridWidget.h b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/EditableGridWidget.h new file mode 100644 index 0000000..a5812ec --- /dev/null +++ b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/EditableGridWidget.h @@ -0,0 +1,154 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace QtWlPlugin { + +class FocusManager; + +/// Defines the memory and undo strategy for EditableGridWidget. +/// +/// MemoryDocument: Full QUndoStack tracking for all data mutations. +/// Best for QTableWidget, QStandardItemModel, or any in-memory model. +/// Sorting snapshots entire table state for undo. +/// +/// LiveDatabase: Bypasses QUndoStack for data mutations (insert, delete, sort). +/// Best for QSqlTableModel or other transactional models. +/// Sorting delegates to model->sort() (SQL ORDER BY) with no RAM snapshot. +/// Copy, context menus, drag-to-reorder, focus, and shortcuts still work. +enum class GridMode { + MemoryDocument, + LiveDatabase +}; + +/// Custom delegate that wraps text at any character (not just word boundaries). +class WrapAnywhereDelegate : public QStyledItemDelegate { +public: + using QStyledItemDelegate::QStyledItemDelegate; + void paint(QPainter *painter, const QStyleOptionViewItem &option, + const QModelIndex &index) const override; + QSize sizeHint(const QStyleOptionViewItem &option, + const QModelIndex &index) const override; + void setWrapAnywhere(bool wrap); + bool wrapAnywhere() const; + +private: + bool m_wrap = false; +}; + +/// A QTableView wrapper with full undo/redo, keyboard navigation, +/// drag-to-move columns/rows, context menus, and editing support. +/// +/// Accepts a pre-instantiated QTableView* and a GridMode via dependency injection. +/// Because QTableWidget is a subclass of QTableView, you can inject either: +/// +/// // Item-based (in-memory, full undo): +/// auto *grid = new EditableGridWidget(new QTableWidget(), GridMode::MemoryDocument, fm, this); +/// +/// // Database (transactional, no RAM snapshots): +/// auto *sqlView = new QTableView(); +/// sqlView->setModel(sqlModel); +/// auto *grid = new EditableGridWidget(sqlView, GridMode::LiveDatabase, fm, this); +/// +/// All data access goes through QAbstractItemModel — no QTableWidgetItem +/// dependency in the grid's own logic. +class EditableGridWidget : public QWidget { + Q_OBJECT +public: + /// Takes ownership of the view and parents it to this widget. + explicit EditableGridWidget(QTableView *view, GridMode mode, FocusManager *fm, QWidget *parent = nullptr); + + /// Access the underlying view (may be QTableView or QTableWidget). + QTableView *view() const; + GridMode mode() const; + QUndoStack *undoStack() const; + + // --- Data operations (format-agnostic, model-based) --- + void copySelection(char separator = '\t'); + QString getSelectionAsText(char separator = '\t'); + void pasteSelection(); + void pasteSelectionAt(int atRow); + void insertRows(int count, int atRow); + void deleteSelectedRows(); + + void copyColumnSelection(char separator = '\t'); + void pasteColumnSelectionAt(int atCol); + void insertColumns(int count, int atCol); + void deleteSelectedColumns(); + + // --- Appearance --- + void setWordWrap(bool wrap); + bool wordWrap() const; + void setShowGrid(bool show); + + // --- Context menu integration --- + /// Set the filter row widget for Filters toggle in context menu. + void setFilterRow(class FilterRowWidget *filterRow); + + /// Enable the Dark theme toggle in context menu. + void setThemeToggleEnabled(bool enabled); + + /// Register additional context menu entries. + /// The callback receives the QMenu and the clicked QModelIndex. + void setExtraContextMenuCallback( + std::function callback); + + // --- State --- + bool isDirty() const; + +signals: + void dirtyChanged(bool dirty); + +protected: + bool eventFilter(QObject *obj, QEvent *event) override; + +private: + void setupView(); + void registerShortcuts(); + void setupDragToMove(); + void showRowContextMenu(const QPoint &pos); + void showColumnContextMenu(const QPoint &pos); + void onSortByColumn(int column); + void onDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, + const QList &roles); + void updateRowNumbers(); + bool isSectionSelected(QHeaderView *header, int logicalIndex) const; + + /// Helper: row/column count via the model + int rowCount() const; + int colCount() const; + + FocusManager *m_fm; + QTableView *m_view; + GridMode m_mode; + QUndoStack *m_undoStack; + WrapAnywhereDelegate *m_wrapDelegate; + bool m_isProgrammaticChange; + + // Sort state + int m_lastSortColumn; + Qt::SortOrder m_lastSortOrder; + + // Drag-to-move state + QHeaderView *m_dragHeader; + int m_dragLogicalIndex; + QList m_dragBeforeOrder; + QSet m_dragSelectedSections; + bool m_isDraggingSection; + QTimer *m_moveDebounceTimer; + + // Context menu integrations + FilterRowWidget *m_filterRow = nullptr; + bool m_themeToggleEnabled = false; + std::function m_extraMenuCallback; +}; + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/include/wlxbase_wlqt/EncodingUtils.h b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/EncodingUtils.h new file mode 100644 index 0000000..880140a --- /dev/null +++ b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/EncodingUtils.h @@ -0,0 +1,40 @@ +#pragma once + +#include +#include + +namespace QtWlPlugin { + +/// Encoding detection and conversion utility for plugin developers. +/// +/// Wraps the enca library for detection and glib for encoding conversion. +/// All methods are static — no instance needed. +class EncodingUtils { +public: + /// Detect the encoding of raw byte data. + /// @param data Raw bytes to analyze + /// @param language 2-letter ISO language code hint for enca (e.g. "ru", "en", "de"). + /// If empty, derived from the current locale. + /// @return Detected encoding name (e.g. "UTF-8", "windows-1251") or empty on failure. + static QString detectEncoding(const QByteArray &data, const QString &language = {}); + + /// Detect encoding from a file. Reads up to sampleSize bytes by default. + static QString detectFileEncoding(const QString &filePath, const QString &language = {}, + int sampleSize = 4096, bool readAll = false); + + /// Convert byte data from one encoding to UTF-8. + /// Returns the original data if conversion fails. + static QByteArray toUtf8(const QByteArray &data, const QString &fromEncoding); + + /// Convert a UTF-8 QString to a target encoding. + /// Returns UTF-8 bytes if conversion fails. + static QByteArray fromUtf8(const QString &text, const QString &toEncoding); + + /// Detect encoding and decode to QString in one call. + static QString decodeToString(const QByteArray &data, const QString &language = {}); + + /// Check if enca support is available at runtime. + static bool isEncaAvailable(); +}; + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/include/wlxbase_wlqt/FilterRowWidget.h b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/FilterRowWidget.h new file mode 100644 index 0000000..fb59b70 --- /dev/null +++ b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/FilterRowWidget.h @@ -0,0 +1,48 @@ +#pragma once + +#include +#include + +class QLineEdit; +class QHBoxLayout; +class QTableView; + +namespace QtWlPlugin { + +/// A row of QLineEdit widgets for per-column filtering of a QTableView. +/// +/// Sits between the column headers and the data. Each column gets its own +/// filter input. Widths sync with column widths automatically. +/// +/// Usage: +/// auto *filter = new FilterRowWidget(tableView, this); +/// connect(filter, &FilterRowWidget::filterChanged, ...); +class FilterRowWidget : public QWidget { + Q_OBJECT +public: + explicit FilterRowWidget(QTableView *view, QWidget *parent = nullptr); + + void setFilterVisible(bool visible); + bool isFilterVisible() const; + void clearFilters(); + + /// Rebuild filter inputs when the model/columns change. + void syncToModel(); + +signals: + void filterChanged(int column, const QString &text); + +protected: + bool eventFilter(QObject *obj, QEvent *event) override; + +private: + void rebuildInputs(); + void syncWidths(); + + QTableView *m_view; + QHBoxLayout *m_layout; + QVector m_inputs; + bool m_visible = true; +}; + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/include/wlxbase_wlqt/FilterableHeaderView.h b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/FilterableHeaderView.h new file mode 100644 index 0000000..38fb37c --- /dev/null +++ b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/FilterableHeaderView.h @@ -0,0 +1,61 @@ +#pragma once + +#include +#include + +class QLineEdit; + +namespace QtWlPlugin { + +/// QHeaderView with an optional embedded filter row below the column labels. +/// +/// When filtering is enabled, QLineEdit inputs appear directly under each +/// column header, pixel-aligned with the sections (no spacer hacks needed). +/// +/// Usage: +/// auto *header = new FilterableHeaderView(Qt::Horizontal, tableView); +/// header->setFilterEnabled(true); +/// tableView->setHorizontalHeader(header); +/// connect(header, &FilterableHeaderView::filterChanged, ...); +class FilterableHeaderView : public QHeaderView { + Q_OBJECT +public: + explicit FilterableHeaderView(Qt::Orientation orientation, QWidget *parent = nullptr); + + /// Enable or disable the filter row. + void setFilterEnabled(bool enabled); + bool isFilterEnabled() const; + + /// Enable or disable the header labels (if false, the header collapses to only show the filters). + void setHeaderVisible(bool visible); + bool isHeaderVisible() const; + + /// Clear all filter inputs. + void clearFilters(); + + /// Get the current filter text for a column. + QString filterText(int column) const; + + QSize sizeHint() const override; + +signals: + /// Emitted when the user types in a column's filter input. + void filterChanged(int column, const QString &text); + +protected: + void updateGeometries() override; + void paintSection(QPainter *painter, const QRect &rect, int logicalIndex) const override; + +private slots: + void adjustInputPositions(); + +private: + void rebuildInputs(); + + bool m_filterEnabled = false; + bool m_headerVisible = true; + int m_filterRowHeight = 24; + QVector m_inputs; +}; + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/include/wlxbase_wlqt/FindReplacePanel.h b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/FindReplacePanel.h new file mode 100644 index 0000000..1f3f487 --- /dev/null +++ b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/FindReplacePanel.h @@ -0,0 +1,74 @@ +#pragma once + +#include + +class QLineEdit; +class QCheckBox; +class QLabel; +class QPushButton; +class QHBoxLayout; +class QVBoxLayout; + +namespace QtWlPlugin { + +class FocusManager; + +/// Base find & replace panel with no scope concept. +/// +/// Provides the UI shell (find/replace inputs, match options, action buttons) +/// and emits signals. The consumer implements the actual matching logic by +/// connecting to findRequested, replaceRequested, and replaceAllRequested. +/// +/// Scope is entirely the consumer's responsibility at this level. +/// For built-in scope support, use ScopedFindReplacePanel instead. +class FindReplacePanel : public QWidget { + Q_OBJECT +public: + explicit FindReplacePanel(FocusManager *fm, QWidget *parent = nullptr); + + // --- Configuration --- + void setReplaceEnabled(bool enabled); + + // --- State --- + QString findText() const; + QString replaceText() const; + bool matchCase() const; + bool matchEntireCell() const; + bool useRegex() const; + + // --- Status feedback --- + void setStatusText(const QString &text); + + // --- Visibility --- + void showPanel(bool show); + bool isPanelVisible() const; + + // --- Access for subclasses --- + FocusManager *focusManager() const; + QLabel *statusLabel() const; + +signals: + void findRequested(bool forward); + void replaceRequested(); + void replaceAllRequested(); + void panelClosed(); + +protected: + /// Hook for subclasses to insert widgets into the options row. + QHBoxLayout *optionsRow() const; + +private: + FocusManager *m_fm; + QLineEdit *m_txtFind; + QLineEdit *m_txtReplace; + QLabel *m_lblReplace; + QCheckBox *m_chkMatchCase; + QCheckBox *m_chkMatchEntire; + QCheckBox *m_chkRegex; + QLabel *m_lblStatus; + QHBoxLayout *m_optionsRow; + QPushButton *m_btnReplace; + QPushButton *m_btnReplaceAll; +}; + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/include/wlxbase_wlqt/FocusManager.h b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/FocusManager.h new file mode 100644 index 0000000..7e170ed --- /dev/null +++ b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/FocusManager.h @@ -0,0 +1,96 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include + +class QUndoStack; + +namespace QtWlPlugin { + +/// Core focus management framework for Qt WLX plugins embedded in a host application. +/// +/// Manages the entire focus lifecycle: activation/deactivation on click, +/// focus bounce prevention, input widget tracking, and a shortcut registry +/// that replaces the hardcoded eventFilter if-chains found in existing plugins. +class FocusManager : public QObject { + Q_OBJECT +public: + explicit FocusManager(QWidget *pluginRoot, QWidget *primaryView, QObject *parent = nullptr); + ~FocusManager() override; + + // --- Activation --- + bool isActive() const; + void setActive(bool active); + + // --- Input widget tracking --- + void addInputWidget(QWidget *w); + void removeInputWidget(QWidget *w); + bool isInputWidget(QWidget *w) const; + QWidget *activeInput() const; + + // --- Focus proxy management --- + void setFocusProxy(QWidget *proxy); + void resetFocusProxy(); + + // --- Shortcut registration --- + enum ShortcutContext { WhenNoInput, Always }; + using ShortcutId = int; + ShortcutId registerShortcut(const QKeySequence &keys, ShortcutContext ctx, + std::function handler); + void unregisterShortcut(ShortcutId id); + + // --- Optional undo/redo --- + /// When set, auto-registers Ctrl+Z (undo), Ctrl+Shift+Z (redo), Ctrl+Y (redo). + /// The consumer retains full access to the stack for custom manipulation. + void setUndoStack(QUndoStack *stack); + QUndoStack *undoStack() const; + + // --- Saved focus (for restoring to host app) --- + void saveFocusWidget(QWidget *w); + + // --- Access --- + QWidget *pluginRoot() const; + QWidget *primaryView() const; + + // --- Focus restoration --- + void restoreViewFocus(); + +signals: + void activated(); + void deactivated(); + void inputWidgetEntered(QWidget *w); + void inputWidgetExited(); + +protected: + bool eventFilter(QObject *obj, QEvent *event) override; + +private: + void installFocusGuard(); + void restoreFocusToDC(); + + QWidget *m_pluginRoot; + QWidget *m_primaryView; + bool m_isActive; + QPointer m_savedFocusWidget; + QPointer m_activeInput; + QSet m_extraInputWidgets; + + QUndoStack *m_undoStack; + QVector m_undoShortcutIds; + + struct RegisteredShortcut { + ShortcutId id; + QKeySequence keys; + ShortcutContext ctx; + std::function handler; + }; + QVector m_shortcuts; + ShortcutId m_nextShortcutId; +}; + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/include/wlxbase_wlqt/PluginSplitView.h b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/PluginSplitView.h new file mode 100644 index 0000000..504c73a --- /dev/null +++ b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/PluginSplitView.h @@ -0,0 +1,26 @@ +#pragma once + +#include + +namespace QtWlPlugin { + +/// Reusable left-panel + right-content splitter. +/// +/// Both structview (tree) and dbview (table list) use this pattern. +/// Sets sensible defaults: left panel 180px, stretch on right. +class PluginSplitView : public QSplitter { + Q_OBJECT +public: + explicit PluginSplitView(QWidget *leftPanel, QWidget *rightContent, + QWidget *parent = nullptr); + + void setLeftWidth(int pixels); + QWidget *leftPanel() const; + QWidget *rightContent() const; + +private: + QWidget *m_left; + QWidget *m_right; +}; + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/include/wlxbase_wlqt/PluginStatusBar.h b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/PluginStatusBar.h new file mode 100644 index 0000000..9d460e6 --- /dev/null +++ b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/PluginStatusBar.h @@ -0,0 +1,40 @@ +#pragma once + +#include +#include +#include + +class QHBoxLayout; + +namespace QtWlPlugin { + +/// A compact status bar for WLX plugins. +/// +/// Displays configurable sections separated by vertical lines. +/// Typical content: encoding, format name, row count, extra info. +/// +/// Example: | UTF-8 | JSON | Rows: 4/4 | +/// Example: | Tables: 11 | Views: 0 | SQLite | Rows: 3/59 | +class PluginStatusBar : public QWidget { + Q_OBJECT +public: + explicit PluginStatusBar(QWidget *parent = nullptr); + + void setEncoding(const QString &encoding); + void setFormatInfo(const QString &info); + void setRowCount(int filtered, int total); + void setExtraInfo(const QString &key, const QString &value); + void removeExtraInfo(const QString &key); + +private: + void rebuild(); + QFrame *createSeparator(); + + QLabel *m_encodingLabel; + QLabel *m_formatLabel; + QLabel *m_rowLabel; + QMap m_extras; + QHBoxLayout *m_layout; +}; + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/include/wlxbase_wlqt/PluginToolBar.h b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/PluginToolBar.h new file mode 100644 index 0000000..6bb3bc3 --- /dev/null +++ b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/PluginToolBar.h @@ -0,0 +1,48 @@ +#pragma once + +#include +#include + +namespace QtWlPlugin { + +class FocusManager; + +enum class ButtonDisplay { + IconOnly, + TextOnly, + Both +}; + +enum class IconMode { + System, + Unicode +}; + +/// A QToolBar subclass that automatically integrates with FocusManager. +/// +/// All action widgets are set to Qt::NoFocus, and focus is restored to the +/// primary view after any action trigger. Provides convenience for adding +/// actions with automatic shortcut registration through FocusManager. +class PluginToolBar : public QToolBar { + Q_OBJECT +public: + explicit PluginToolBar(FocusManager *fm, QWidget *parent = nullptr); + + /// Add an action and optionally register a shortcut through FocusManager. + QAction *addToolAction(const QString &text, + const QKeySequence &shortcut = {}, + int ctx = 0 /* FocusManager::WhenNoInput */, + const QString &systemIconName = {}, + const QString &unicodeIcon = {}, + ButtonDisplay display = ButtonDisplay::Both, + IconMode iconMode = IconMode::System); + +protected: + void actionEvent(QActionEvent *event) override; + +private: + void enforceNoFocus(); + FocusManager *m_fm; +}; + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/include/wlxbase_wlqt/ScopedFindReplacePanel.h b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/ScopedFindReplacePanel.h new file mode 100644 index 0000000..72eb137 --- /dev/null +++ b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/ScopedFindReplacePanel.h @@ -0,0 +1,25 @@ +#pragma once + +#include + +class QComboBox; + +namespace QtWlPlugin { + +/// FindReplacePanel subclass that adds configurable scope options via a QComboBox. +/// +/// The consumer sets scope labels (e.g. "All Cells", "Current Column") via setScopes(), +/// then reads currentScope() in their signal handlers to filter the search. +class ScopedFindReplacePanel : public FindReplacePanel { + Q_OBJECT +public: + explicit ScopedFindReplacePanel(FocusManager *fm, QWidget *parent = nullptr); + + void setScopes(const QStringList &scopes); + QString currentScope() const; + +private: + QComboBox *m_comboScope; +}; + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/include/wlxbase_wlqt/SequentialRowProxyModel.h b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/SequentialRowProxyModel.h new file mode 100644 index 0000000..1e15078 --- /dev/null +++ b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/SequentialRowProxyModel.h @@ -0,0 +1,16 @@ +#pragma once + +#include + +namespace QtWlPlugin { + +class SequentialRowProxyModel : public QSortFilterProxyModel { + Q_OBJECT +public: + explicit SequentialRowProxyModel(QObject *parent = nullptr); + ~SequentialRowProxyModel() override; + + QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; +}; + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/include/wlxbase_wlqt/ThemeManager.h b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/ThemeManager.h new file mode 100644 index 0000000..d2ea90e --- /dev/null +++ b/wlx/wlxbase_wlqt/include/wlxbase_wlqt/ThemeManager.h @@ -0,0 +1,26 @@ +#pragma once + +#include +#include + +namespace QtWlPlugin { + +/// Shared dark/light theme toggle for WLX plugins. +/// +/// Applies a comprehensive Qt stylesheet to the given widget tree. +/// Preference is persisted in QSettings. +class ThemeManager { +public: + enum Theme { Light, Dark }; + + static void applyTheme(QWidget *root, Theme theme); + static Theme currentTheme(); + static void toggleTheme(QWidget *root); + static bool isDark(); + +private: + static QString darkStylesheet(); + static Theme s_current; +}; + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/src/CrashLogger.cpp b/wlx/wlxbase_wlqt/src/CrashLogger.cpp new file mode 100644 index 0000000..f14665c --- /dev/null +++ b/wlx/wlxbase_wlqt/src/CrashLogger.cpp @@ -0,0 +1,193 @@ +#include + +#include +#include +#include +#include +#include + +#ifndef _WIN32 +#include +#include +#include +#include +#else +#include +#endif + +namespace QtWlPlugin { + +static std::string s_logPath; +static std::string s_pluginName; +static std::mutex s_mutex; + +void CrashLogger::init(void *addressInPlugin) +{ + if (!s_logPath.empty()) + return; // already initialized + +#ifndef _WIN32 + Dl_info info; + if (dladdr(addressInPlugin, &info) && info.dli_fname) { + // Plugin path: /path/to/build/myplugin_qt6.wlx + std::string pluginPath(info.dli_fname); + + // Extract directory + char *pathCopy = strdup(pluginPath.c_str()); + std::string dir(dirname(pathCopy)); + free(pathCopy); + + // Extract plugin name (without extension) + char *baseCopy = strdup(pluginPath.c_str()); + std::string base(basename(baseCopy)); + free(baseCopy); + + auto dot = base.rfind('.'); + if (dot != std::string::npos) + base = base.substr(0, dot); + + s_pluginName = base; + s_logPath = dir + "/" + base + ".log"; + } +#else + HMODULE hModule = nullptr; + GetModuleHandleExA( + GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS | GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT, + reinterpret_cast(addressInPlugin), &hModule); + if (hModule) { + char path[MAX_PATH]; + GetModuleFileNameA(hModule, path, MAX_PATH); + std::string pluginPath(path); + + auto lastSlash = pluginPath.rfind('\\'); + std::string dir = (lastSlash != std::string::npos) ? pluginPath.substr(0, lastSlash) : "."; + std::string base = (lastSlash != std::string::npos) ? pluginPath.substr(lastSlash + 1) : pluginPath; + + auto dot = base.rfind('.'); + if (dot != std::string::npos) + base = base.substr(0, dot); + + s_pluginName = base; + s_logPath = dir + "\\" + base + ".log"; + } +#endif +} + +const std::string &CrashLogger::logPath() +{ + return s_logPath; +} + +/// Format a backtrace into the log. +static std::string captureBacktrace() +{ + std::string result; +#ifndef _WIN32 + void *frames[64]; + int count = backtrace(frames, 64); + char **symbols = backtrace_symbols(frames, count); + + if (symbols) { + // Skip first 3 frames (captureBacktrace, writeEntry, log/logUnknown) + for (int i = 3; i < count; ++i) { + result += " "; + + // Try to demangle the symbol + // Format: "./libfoo.so(+0x1234) [0x7fff1234]" + // or: "./libfoo.so(_ZN3Foo3barEv+0x42) [0x7fff1234]" + std::string sym(symbols[i]); + auto lparen = sym.find('('); + auto plus = sym.find('+', lparen != std::string::npos ? lparen : 0); + auto rparen = sym.find(')', lparen != std::string::npos ? lparen : 0); + + if (lparen != std::string::npos && rparen != std::string::npos + && plus != std::string::npos && plus > lparen + 1) { + std::string mangled = sym.substr(lparen + 1, plus - lparen - 1); + int status = -1; + char *demangled = abi::__cxa_demangle(mangled.c_str(), nullptr, nullptr, &status); + if (status == 0 && demangled) { + result += sym.substr(0, lparen + 1); + result += demangled; + result += sym.substr(plus); + free(demangled); + } else { + result += sym; + } + } else { + result += sym; + } + result += "\n"; + } + free(symbols); + } +#endif + return result; +} + +void CrashLogger::writeEntry(const char *entryPoint, const char *type, + const char *message) +{ + if (s_logPath.empty()) + return; + + std::lock_guard lock(s_mutex); + + FILE *f = fopen(s_logPath.c_str(), "a"); + if (!f) + return; + + // Timestamp + time_t now = time(nullptr); + struct tm tm; + localtime_r(&now, &tm); + char timebuf[64]; + strftime(timebuf, sizeof(timebuf), "%Y-%m-%d %H:%M:%S", &tm); + + fprintf(f, "--- %s [%s] %s ---\n", timebuf, s_pluginName.c_str(), entryPoint); + fprintf(f, " Type: %s\n", type); + if (message && message[0]) + fprintf(f, " Message: %s\n", message); + + // Stack trace + std::string bt = captureBacktrace(); + if (!bt.empty()) { + fprintf(f, " Stack trace:\n%s", bt.c_str()); + } + + fprintf(f, "\n"); + fclose(f); + + // Also print to stderr so it shows in console + fprintf(stderr, "[%s] EXCEPTION in %s: %s: %s\n", + s_pluginName.c_str(), entryPoint, type, + (message && message[0]) ? message : "(no message)"); +} + +void CrashLogger::log(const char *entryPoint, const std::exception &e) +{ + // Try to get the demangled exception type name + const char *typeName = "std::exception"; +#ifndef _WIN32 + int status = -1; + char *demangled = abi::__cxa_demangle(typeid(e).name(), nullptr, nullptr, &status); + if (status == 0 && demangled) { + writeEntry(entryPoint, demangled, e.what()); + free(demangled); + return; + } +#endif + typeName = typeid(e).name(); + writeEntry(entryPoint, typeName, e.what()); +} + +void CrashLogger::logUnknown(const char *entryPoint) +{ + writeEntry(entryPoint, "unknown (catch ...)", "Non-std::exception object thrown"); +} + +void CrashLogger::logMessage(const char *entryPoint, const char *message) +{ + writeEntry(entryPoint, "info", message); +} + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/src/EditableGridWidget.cpp b/wlx/wlxbase_wlqt/src/EditableGridWidget.cpp new file mode 100644 index 0000000..20bdcd5 --- /dev/null +++ b/wlx/wlxbase_wlqt/src/EditableGridWidget.cpp @@ -0,0 +1,1216 @@ +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace QtWlPlugin { + +// --------------------------------------------------------------------------- +// Undo Commands — all operate through QAbstractItemModel, not QTableWidgetItem +// --------------------------------------------------------------------------- + +class EditCellCommand : public QUndoCommand { +public: + EditCellCommand(QAbstractItemModel *model, const QModelIndex &index, + const QVariant &oldValue, const QVariant &newValue, + QUndoCommand *parent = nullptr) + : QUndoCommand(parent), m_model(model), + m_row(index.row()), m_col(index.column()), + m_oldValue(oldValue), m_newValue(newValue) { + setText(QString("Edit cell (%1, %2)").arg(m_row).arg(m_col)); + } + void undo() override { + QModelIndex idx = m_model->index(m_row, m_col); + m_model->setData(idx, m_oldValue, Qt::EditRole); + } + void redo() override { + QModelIndex idx = m_model->index(m_row, m_col); + m_model->setData(idx, m_newValue, Qt::EditRole); + } +private: + QAbstractItemModel *m_model; + int m_row, m_col; + QVariant m_oldValue, m_newValue; +}; + +class RowColCommand : public QUndoCommand { +public: + RowColCommand(QAbstractItemModel *model, int index, int count, bool isRow, bool isInsert, + QUndoCommand *parent = nullptr) + : QUndoCommand(parent), m_model(model), m_index(index), m_count(count), + m_isRow(isRow), m_isInsert(isInsert) { + setText(QString("%1 %2 %3(s)").arg(isInsert ? "Insert" : "Delete") + .arg(count).arg(isRow ? "row" : "col")); + if (!isInsert) { + // Snapshot data before deletion for undo restore + int crossDim = isRow ? model->columnCount() : model->rowCount(); + for (int i = 0; i < count; ++i) { + QVariantList list; + for (int j = 0; j < crossDim; ++j) { + QModelIndex idx = isRow ? model->index(index + i, j) + : model->index(j, index + i); + list << model->data(idx, Qt::EditRole); + } + m_data << list; + } + } + } + void undo() override { if (m_isInsert) applyDelete(); else applyInsert(); } + void redo() override { if (m_isInsert) applyInsert(); else applyDelete(); } + +private: + void applyInsert() { + if (m_isRow) m_model->insertRows(m_index, m_count); + else m_model->insertColumns(m_index, m_count); + + // Restore saved data if we have any (undo of delete) + if (!m_data.isEmpty()) { + int crossDim = m_isRow ? m_model->columnCount() : m_model->rowCount(); + for (int i = 0; i < m_count && i < m_data.size(); ++i) { + const QVariantList &list = m_data[i]; + for (int j = 0; j < crossDim && j < list.size(); ++j) { + QModelIndex idx = m_isRow ? m_model->index(m_index + i, j) + : m_model->index(j, m_index + i); + m_model->setData(idx, list[j], Qt::EditRole); + } + } + } + } + void applyDelete() { + if (m_isRow) m_model->removeRows(m_index, m_count); + else m_model->removeColumns(m_index, m_count); + } + QAbstractItemModel *m_model; + int m_index, m_count; + QList m_data; + bool m_isRow, m_isInsert; +}; + +class DataSnapshotCommand : public QUndoCommand { +public: + DataSnapshotCommand(QAbstractItemModel *model, const QList &before, + const QList &after, const QString &text) + : m_model(model), m_before(before), m_after(after), m_first(true) { setText(text); } + void undo() override { restore(m_before); } + void redo() override { if (m_first) { m_first = false; return; } restore(m_after); } +private: + void restore(const QList &data) { + for (int r = 0; r < data.size() && r < m_model->rowCount(); ++r) + for (int c = 0; c < data[r].size() && c < m_model->columnCount(); ++c) { + QModelIndex idx = m_model->index(r, c); + m_model->setData(idx, data[r][c], Qt::EditRole); + } + } + QAbstractItemModel *m_model; + QList m_before, m_after; + bool m_first; +}; + +class SectionMoveCommand : public QUndoCommand { +public: + SectionMoveCommand(QHeaderView *header, const QList &beforeOrder, + const QList &afterOrder, const QString &text) + : m_header(header), m_before(beforeOrder), m_after(afterOrder), m_first(true) { setText(text); } + void undo() override { restore(m_before); } + void redo() override { if (m_first) { m_first = false; return; } restore(m_after); } +private: + void restore(const QList &order) { + for (int target = 0; target < order.size(); ++target) { + int logical = order[target]; + int currentVisual = m_header->visualIndex(logical); + if (currentVisual != target) + m_header->moveSection(currentVisual, target); + } + } + QHeaderView *m_header; + QList m_before, m_after; + bool m_first; +}; + +// --------------------------------------------------------------------------- +// WrapAnywhereDelegate — already model-based (uses QModelIndex) +// --------------------------------------------------------------------------- + +void WrapAnywhereDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, + const QModelIndex &index) const { + QStyleOptionViewItem opt = option; + initStyleOption(&opt, index); + QString text = opt.text; + opt.text.clear(); + QApplication::style()->drawControl(QStyle::CE_ItemViewItem, &opt, painter); + + if (!text.isEmpty()) { + painter->save(); + QRect textRect = QApplication::style()->subElementRect(QStyle::SE_ItemViewItemText, &opt); + painter->setClipRect(textRect); + painter->setFont(opt.font); + QTextOption textOption; + textOption.setWrapMode(m_wrap ? QTextOption::WrapAnywhere : QTextOption::NoWrap); + textOption.setAlignment(opt.displayAlignment); + if (opt.state & QStyle::State_Selected) + painter->setPen(opt.palette.color(QPalette::HighlightedText)); + else + painter->setPen(opt.palette.color(QPalette::Text)); + painter->drawText(textRect, text, textOption); + painter->restore(); + } +} + +QSize WrapAnywhereDelegate::sizeHint(const QStyleOptionViewItem &option, + const QModelIndex &index) const { + if (!m_wrap) return QStyledItemDelegate::sizeHint(option, index); + QStyleOptionViewItem opt = option; + initStyleOption(&opt, index); + QRect textRect = QApplication::style()->subElementRect(QStyle::SE_ItemViewItemText, &opt); + int width = textRect.width(); + if (width <= 0) width = opt.rect.width(); + QTextDocument doc; + doc.setDefaultFont(opt.font); + QTextOption textOption; + textOption.setWrapMode(QTextOption::WrapAnywhere); + doc.setDefaultTextOption(textOption); + doc.setTextWidth(width); + doc.setPlainText(opt.text); + return QSize(width, qMax((int)doc.size().height(), opt.fontMetrics.height())); +} + +void WrapAnywhereDelegate::setWrapAnywhere(bool wrap) { m_wrap = wrap; } +bool WrapAnywhereDelegate::wrapAnywhere() const { return m_wrap; } + +// --------------------------------------------------------------------------- +// EditableGridWidget +// --------------------------------------------------------------------------- + +EditableGridWidget::EditableGridWidget(QTableView *view, GridMode mode, FocusManager *fm, QWidget *parent) + : QWidget(parent) + , m_fm(fm) + , m_view(view) + , m_mode(mode) + , m_isProgrammaticChange(false) + , m_lastSortColumn(-1) + , m_lastSortOrder(Qt::AscendingOrder) + , m_dragHeader(nullptr) + , m_dragLogicalIndex(-1) + , m_isDraggingSection(false) +{ + setFocusPolicy(Qt::NoFocus); + + // Take ownership + m_view->setParent(this); + + auto *layout = new QVBoxLayout(this); + layout->setContentsMargins(0, 0, 0, 0); + layout->addWidget(m_view); + + setupView(); + + m_undoStack = new QUndoStack(this); + fm->setUndoStack(m_undoStack); + + connect(m_undoStack, &QUndoStack::cleanChanged, this, [this](bool clean) { + emit dirtyChanged(!clean); + }); + connect(m_undoStack, &QUndoStack::indexChanged, this, [this]() { updateRowNumbers(); }); + + // MemoryDocument mode: track data changes for undo integration. + // LiveDatabase mode: the model handles its own transactions; + // intercepting dataChanged would force the entire DB into RAM. + if (m_mode == GridMode::MemoryDocument) { + if (m_view->model()) { + connect(m_view->model(), &QAbstractItemModel::dataChanged, + this, &EditableGridWidget::onDataChanged); + } + + // Stash old value when entering a cell editor + connect(fm, &FocusManager::inputWidgetEntered, this, [this](QWidget *) { + QModelIndex current = m_view->currentIndex(); + if (!current.isValid() || !m_view->model()) return; + + QAbstractItemModel *model = m_view->model(); + QModelIndex sourceIndex = current; + QAbstractItemModel *sourceModel = model; + if (auto *proxy = qobject_cast(model)) { + sourceModel = proxy->sourceModel(); + sourceIndex = proxy->mapToSource(current); + } + + QVariant existing = sourceModel->data(sourceIndex, Qt::UserRole); + if (!existing.isValid()) { + m_isProgrammaticChange = true; + sourceModel->setData(sourceIndex, + sourceModel->data(sourceIndex, Qt::EditRole), Qt::UserRole); + m_isProgrammaticChange = false; + } + }); + } + + registerShortcuts(); + setupDragToMove(); +} + +void EditableGridWidget::setupView() +{ + m_view->setFocusPolicy(Qt::ClickFocus); + m_view->setSelectionMode(QAbstractItemView::ExtendedSelection); + + m_view->horizontalHeader()->setSectionsClickable(true); + m_view->horizontalHeader()->setHighlightSections(true); + m_view->horizontalHeader()->setSectionsMovable(false); + m_view->horizontalHeader()->setContextMenuPolicy(Qt::CustomContextMenu); + m_view->horizontalHeader()->setSectionResizeMode(QHeaderView::Interactive); + + m_view->verticalHeader()->setSectionsClickable(true); + m_view->verticalHeader()->setHighlightSections(true); + m_view->verticalHeader()->setSectionsMovable(false); + m_view->verticalHeader()->setContextMenuPolicy(Qt::CustomContextMenu); + m_view->verticalHeader()->setSectionResizeMode(QHeaderView::Interactive); + + m_view->setSortingEnabled(false); + + m_wrapDelegate = new WrapAnywhereDelegate(m_view); + m_view->setItemDelegate(m_wrapDelegate); + + m_view->setContextMenuPolicy(Qt::CustomContextMenu); + + connect(m_view, &QWidget::customContextMenuRequested, this, + [this](const QPoint &pos) { showRowContextMenu(pos); }); + connect(m_view->verticalHeader(), &QWidget::customContextMenuRequested, this, + [this](const QPoint &pos) { showRowContextMenu(pos); }); + connect(m_view->horizontalHeader(), &QWidget::customContextMenuRequested, this, + [this](const QPoint &pos) { showColumnContextMenu(pos); }); + connect(m_view->horizontalHeader(), &QHeaderView::sectionClicked, this, + &EditableGridWidget::onSortByColumn); + + // Install event filter on header viewports for drag-to-move + m_view->horizontalHeader()->viewport()->installEventFilter(this); + m_view->verticalHeader()->viewport()->installEventFilter(this); + // Install on view itself for in-editor key handling + m_view->installEventFilter(this); +} + +int EditableGridWidget::rowCount() const +{ + return m_view->model() ? m_view->model()->rowCount() : 0; +} + +int EditableGridWidget::colCount() const +{ + return m_view->model() ? m_view->model()->columnCount() : 0; +} + +void EditableGridWidget::registerShortcuts() +{ + // Ctrl+C → copy + m_fm->registerShortcut(QKeySequence(Qt::CTRL | Qt::Key_C), FocusManager::WhenNoInput, + [this]() { copySelection('\t'); return true; }); + + // Ctrl+V → paste + m_fm->registerShortcut(QKeySequence(Qt::CTRL | Qt::Key_V), FocusManager::WhenNoInput, + [this]() { pasteSelection(); return true; }); + + // Delete → delete selected rows + m_fm->registerShortcut(QKeySequence(Qt::Key_Delete), FocusManager::WhenNoInput, + [this]() { deleteSelectedRows(); return true; }); + + // Enter/Return → edit current cell + m_fm->registerShortcut(QKeySequence(Qt::Key_Return), FocusManager::WhenNoInput, + [this]() { + QModelIndex current = m_view->currentIndex(); + if (current.isValid()) { m_view->edit(current); return true; } + return false; + }); + m_fm->registerShortcut(QKeySequence(Qt::Key_Enter), FocusManager::WhenNoInput, + [this]() { + QModelIndex current = m_view->currentIndex(); + if (current.isValid()) { m_view->edit(current); return true; } + return false; + }); + + // Arrow keys with right-wrap + auto arrowHandler = [this](int key) -> bool { + QModelIndex current = m_view->currentIndex(); + if (!current.isValid()) return false; + int visualCol = m_view->horizontalHeader()->visualIndex(current.column()); + int visualRow = m_view->verticalHeader()->visualIndex(current.row()); + int numRows = rowCount(); + int numCols = colCount(); + if (key == Qt::Key_Up) visualRow--; + if (key == Qt::Key_Down) visualRow++; + if (key == Qt::Key_Left) { + visualCol--; + if (visualCol < 0 && visualRow > 0) { + visualCol = numCols - 1; + visualRow--; + } + } + if (key == Qt::Key_Right) { + visualCol++; + if (visualCol >= numCols && visualRow < numRows - 1) { + visualCol = 0; + visualRow++; + } + } + visualRow = qBound(0, visualRow, numRows - 1); + visualCol = qBound(0, visualCol, numCols - 1); + int r = m_view->verticalHeader()->logicalIndex(visualRow); + int c = m_view->horizontalHeader()->logicalIndex(visualCol); + m_view->setCurrentIndex(m_view->model()->index(r, c)); + return true; + }; + + m_fm->registerShortcut(QKeySequence(Qt::Key_Up), FocusManager::WhenNoInput, + [=]() { return arrowHandler(Qt::Key_Up); }); + m_fm->registerShortcut(QKeySequence(Qt::Key_Down), FocusManager::WhenNoInput, + [=]() { return arrowHandler(Qt::Key_Down); }); + m_fm->registerShortcut(QKeySequence(Qt::Key_Left), FocusManager::WhenNoInput, + [=]() { return arrowHandler(Qt::Key_Left); }); + m_fm->registerShortcut(QKeySequence(Qt::Key_Right), FocusManager::WhenNoInput, + [=]() { return arrowHandler(Qt::Key_Right); }); +} + +void EditableGridWidget::setupDragToMove() +{ + m_moveDebounceTimer = new QTimer(this); + m_moveDebounceTimer->setSingleShot(true); + m_moveDebounceTimer->setInterval(0); + + connect(m_moveDebounceTimer, &QTimer::timeout, this, [this]() { + if (!m_isDraggingSection || !m_dragHeader) return; + + int newVisual = m_dragHeader->visualIndex(m_dragLogicalIndex); + bool anyMoved = (newVisual != m_dragBeforeOrder.indexOf(m_dragLogicalIndex)); + + if (anyMoved) { + bool isHorizontal = (m_dragHeader == m_view->horizontalHeader()); + QList currentOrder; + for (int v = 0; v < m_dragHeader->count(); ++v) + currentOrder.append(m_dragHeader->logicalIndex(v)); + + QList nonSelected; + for (int li : currentOrder) + if (!m_dragSelectedSections.contains(li)) nonSelected.append(li); + + QList selectedInOrder; + for (int li : m_dragBeforeOrder) + if (m_dragSelectedSections.contains(li)) selectedInOrder.append(li); + + int insertIdx = qBound(0, newVisual, nonSelected.size()); + QList targetOrder; + for (int i = 0; i < insertIdx; ++i) targetOrder.append(nonSelected[i]); + for (int li : selectedInOrder) targetOrder.append(li); + for (int i = insertIdx; i < nonSelected.size(); ++i) targetOrder.append(nonSelected[i]); + + for (int v = 0; v < targetOrder.size(); ++v) { + int logical = targetOrder[v]; + int curVisual = m_dragHeader->visualIndex(logical); + if (curVisual != v) m_dragHeader->moveSection(curVisual, v); + } + + QList afterOrder; + for (int v = 0; v < m_dragHeader->count(); ++v) + afterOrder.append(m_dragHeader->logicalIndex(v)); + m_undoStack->push(new SectionMoveCommand(m_dragHeader, m_dragBeforeOrder, afterOrder, + isHorizontal ? "Move columns" : "Move rows")); + updateRowNumbers(); + } + + m_isDraggingSection = false; + m_dragHeader->setSectionsMovable(false); + m_dragHeader = nullptr; + }); + + auto connectMoveDebounce = [this](QHeaderView *header) { + connect(header, &QHeaderView::sectionMoved, this, [this](int, int, int) { + if (m_isDraggingSection) m_moveDebounceTimer->start(); + }); + }; + connectMoveDebounce(m_view->horizontalHeader()); + connectMoveDebounce(m_view->verticalHeader()); +} + +bool EditableGridWidget::eventFilter(QObject *obj, QEvent *event) +{ + QHeaderView *hHeader = m_view->horizontalHeader(); + QHeaderView *vHeader = m_view->verticalHeader(); + + // --- Header viewport: drag-to-move --- + if (event->type() == QEvent::MouseButtonPress) { + if (obj == hHeader->viewport() || obj == vHeader->viewport()) { + QHeaderView *header = (obj == hHeader->viewport()) ? hHeader : vHeader; + auto *me = static_cast(event); + int logicalIndex = header->logicalIndexAt(me->pos()); + if (logicalIndex >= 0 && isSectionSelected(header, logicalIndex)) { + header->setSectionsMovable(true); + m_isDraggingSection = true; + m_dragHeader = header; + m_dragLogicalIndex = logicalIndex; + m_dragBeforeOrder.clear(); + for (int v = 0; v < header->count(); ++v) + m_dragBeforeOrder.append(header->logicalIndex(v)); + + bool isHorizontal = (header == hHeader); + m_dragSelectedSections.clear(); + QModelIndexList sel = m_view->selectionModel()->selectedIndexes(); + for (const QModelIndex &idx : sel) { + int li = isHorizontal ? idx.column() : idx.row(); + m_dragSelectedSections.insert(li); + } + + QItemSelection savedSel = m_view->selectionModel()->selection(); + QTimer::singleShot(0, this, [this, savedSel]() { + if (m_isDraggingSection) + m_view->selectionModel()->select(savedSel, QItemSelectionModel::ClearAndSelect); + }); + } else { + header->setSectionsMovable(false); + } + } + } + + // --- In-editor key handling --- + if (event->type() == QEvent::KeyPress && obj == m_view && m_fm->activeInput()) { + auto *ke = static_cast(event); + QAbstractItemModel *model = m_view->model(); + if (!model) return QWidget::eventFilter(obj, event); + + if (ke->key() == Qt::Key_Escape) { + QModelIndex current = m_view->currentIndex(); + if (current.isValid()) { + QVariant oldData = model->data(current, Qt::UserRole); + if (oldData.isValid()) { + m_isProgrammaticChange = true; + model->setData(current, oldData, Qt::EditRole); + model->setData(current, QVariant(), Qt::UserRole); + m_isProgrammaticChange = false; + } + } + m_view->closePersistentEditor(m_view->currentIndex()); + return true; + } + + if (ke->key() == Qt::Key_Up || ke->key() == Qt::Key_Down) { + QModelIndex current = m_view->currentIndex(); + int r = current.row(), c = current.column(); + if (ke->key() == Qt::Key_Up) r--; + if (ke->key() == Qt::Key_Down) r++; + r = qBound(0, r, rowCount() - 1); + + // Cancel current edit without saving + if (current.isValid()) { + QVariant oldData = model->data(current, Qt::UserRole); + if (oldData.isValid()) { + m_isProgrammaticChange = true; + model->setData(current, oldData, Qt::EditRole); + model->setData(current, QVariant(), Qt::UserRole); + m_isProgrammaticChange = false; + } + } + m_view->closePersistentEditor(m_view->currentIndex()); + QModelIndex target = model->index(r, c); + m_view->setCurrentIndex(target); + m_view->edit(target); + return true; + } + + if (ke->key() == Qt::Key_Return || ke->key() == Qt::Key_Enter) { + QModelIndex current = m_view->currentIndex(); + int r = current.row(), c = current.column(); + + // Commit via delegate + QAbstractItemDelegate *delegate = m_view->itemDelegateForIndex(current); + QWidget *editor = m_fm->activeInput(); + if (delegate && editor) + delegate->setModelData(editor, model, current); + + // Navigate right (wrap to next row) + int visualCol = m_view->horizontalHeader()->visualIndex(c); + int visualRow = m_view->verticalHeader()->visualIndex(r); + visualCol++; + if (visualCol >= colCount()) { + visualCol = 0; + visualRow++; + } + if (visualRow < rowCount()) { + int nr = m_view->verticalHeader()->logicalIndex(visualRow); + int nc = m_view->horizontalHeader()->logicalIndex(visualCol); + QTimer::singleShot(0, this, [this, nr, nc]() { + if (m_view->model()) + m_view->setCurrentIndex(m_view->model()->index(nr, nc)); + }); + } + return true; + } + } + + return QWidget::eventFilter(obj, event); +} + +QTableView *EditableGridWidget::view() const { return m_view; } +GridMode EditableGridWidget::mode() const { return m_mode; } +QUndoStack *EditableGridWidget::undoStack() const { return m_undoStack; } +bool EditableGridWidget::isDirty() const { return !m_undoStack->isClean(); } + +void EditableGridWidget::setWordWrap(bool wrap) +{ + m_wrapDelegate->setWrapAnywhere(wrap); + m_view->setWordWrap(wrap); + if (wrap) { + m_view->resizeRowsToContents(); + } else { + m_view->verticalHeader()->setDefaultSectionSize(m_view->fontMetrics().height() + 8); + m_view->resizeRowsToContents(); + } +} + +bool EditableGridWidget::wordWrap() const { return m_wrapDelegate->wrapAnywhere(); } +void EditableGridWidget::setShowGrid(bool show) { m_view->setShowGrid(show); } + +void EditableGridWidget::setFilterRow(FilterRowWidget *filterRow) { m_filterRow = filterRow; } +void EditableGridWidget::setThemeToggleEnabled(bool enabled) { m_themeToggleEnabled = enabled; } + +void EditableGridWidget::setExtraContextMenuCallback( + std::function callback) +{ + m_extraMenuCallback = std::move(callback); +} + +void EditableGridWidget::onDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, + const QList &roles) +{ + Q_UNUSED(bottomRight); + Q_UNUSED(roles); + if (m_isProgrammaticChange || !topLeft.isValid()) return; + + QAbstractItemModel *model = m_view->model(); + if (!model) return; + + QModelIndex sourceIndex = topLeft; + QAbstractItemModel *sourceModel = model; + if (auto *proxy = qobject_cast(model)) { + sourceModel = proxy->sourceModel(); + sourceIndex = proxy->mapToSource(topLeft); + } + + QVariant oldData = sourceModel->data(sourceIndex, Qt::UserRole); + if (!oldData.isValid()) return; + + QVariant newValue = sourceModel->data(sourceIndex, Qt::EditRole); + QString oldText = oldData.toString(); + QString newText = newValue.toString(); + + m_isProgrammaticChange = true; + sourceModel->setData(sourceIndex, QVariant(), Qt::UserRole); // clear stash + m_isProgrammaticChange = false; + + if (oldText != newText) { + m_isProgrammaticChange = true; + sourceModel->setData(sourceIndex, oldData, Qt::EditRole); // revert so undo command applies it + m_isProgrammaticChange = false; + m_undoStack->push(new EditCellCommand(sourceModel, sourceIndex, oldData, newValue)); + } +} + +void EditableGridWidget::onSortByColumn(int column) +{ + QAbstractItemModel *model = m_view->model(); + if (!model) return; + + if (column != m_lastSortColumn) { + m_lastSortColumn = column; + m_lastSortOrder = Qt::AscendingOrder; + m_view->horizontalHeader()->setSortIndicator(-1, Qt::AscendingOrder); + return; + } + + // --- LiveDatabase mode --- + // Do not snapshot memory. Just issue the ORDER BY command via model->sort(). + // QSqlTableModel translates this to an SQL query and re-fetches lazily. + if (m_mode == GridMode::LiveDatabase) { + QAbstractItemModel *targetModel = model; + if (auto *proxy = qobject_cast(model)) { + if (proxy->sourceModel()) + targetModel = proxy->sourceModel(); + } + targetModel->sort(column, m_lastSortOrder); + m_view->horizontalHeader()->setSortIndicatorShown(true); + m_view->horizontalHeader()->setSortIndicator(column, m_lastSortOrder); + m_lastSortOrder = (m_lastSortOrder == Qt::AscendingOrder) ? Qt::DescendingOrder : Qt::AscendingOrder; + return; + } + + // --- MemoryDocument mode --- + // Safely snapshot in-memory data for undo/redo. + int rows = rowCount(), cols = colCount(); + + QList beforeData; + for (int r = 0; r < rows; ++r) { + QVariantList row; + for (int c = 0; c < cols; ++c) + row << model->data(model->index(r, c), Qt::EditRole); + beforeData << row; + } + + model->sort(column, m_lastSortOrder); + + QList afterData; + for (int r = 0; r < rows; ++r) { + QVariantList row; + for (int c = 0; c < cols; ++c) + row << model->data(model->index(r, c), Qt::EditRole); + afterData << row; + } + + m_undoStack->push(new DataSnapshotCommand(model, beforeData, afterData, "Sort")); + m_view->horizontalHeader()->setSortIndicatorShown(true); + m_view->horizontalHeader()->setSortIndicator(column, m_lastSortOrder); + m_lastSortOrder = (m_lastSortOrder == Qt::AscendingOrder) ? Qt::DescendingOrder : Qt::AscendingOrder; +} + +void EditableGridWidget::updateRowNumbers() +{ + QAbstractItemModel *model = m_view->model(); + if (!model) return; + QHeaderView *vh = m_view->verticalHeader(); + for (int v = 0; v < rowCount(); ++v) { + int logical = vh->logicalIndex(v); + model->setHeaderData(logical, Qt::Vertical, QString::number(v + 1)); + } +} + +bool EditableGridWidget::isSectionSelected(QHeaderView *header, int logicalIndex) const +{ + QItemSelectionModel *sel = m_view->selectionModel(); + QAbstractItemModel *model = m_view->model(); + if (!sel || !model) return false; + bool isHorizontal = (header == m_view->horizontalHeader()); + if (isHorizontal) { + for (int r = 0; r < rowCount(); ++r) + if (!sel->isSelected(model->index(r, logicalIndex))) return false; + return rowCount() > 0; + } else { + for (int c = 0; c < colCount(); ++c) + if (!sel->isSelected(model->index(logicalIndex, c))) return false; + return colCount() > 0; + } +} + +// --------------------------------------------------------------------------- +// Copy / Paste / Insert / Delete — all via QAbstractItemModel +// --------------------------------------------------------------------------- + +void EditableGridWidget::copySelection(char separator) +{ + QString text = getSelectionAsText(separator); + if (!text.isEmpty()) + QApplication::clipboard()->setText(text); +} + +QString EditableGridWidget::getSelectionAsText(char separator) +{ + QAbstractItemModel *model = m_view->model(); + if (!model || !m_view->selectionModel()) return {}; + QModelIndexList sel = m_view->selectionModel()->selectedIndexes(); + if (sel.isEmpty()) return {}; + + int minVRow = rowCount(), maxVRow = -1; + int minVCol = colCount(), maxVCol = -1; + for (const auto &index : sel) { + int vr = m_view->verticalHeader()->visualIndex(index.row()); + int vc = m_view->horizontalHeader()->visualIndex(index.column()); + if (vr < minVRow) minVRow = vr; if (vr > maxVRow) maxVRow = vr; + if (vc < minVCol) minVCol = vc; if (vc > maxVCol) maxVCol = vc; + } + + QString outText; + for (int vr = minVRow; vr <= maxVRow; ++vr) { + int r = m_view->verticalHeader()->logicalIndex(vr); + QStringList rowItems; + for (int vc = minVCol; vc <= maxVCol; ++vc) { + int c = m_view->horizontalHeader()->logicalIndex(vc); + QModelIndex idx = model->index(r, c); + QString cellText; + if (m_view->selectionModel()->isSelected(idx)) + cellText = model->data(idx, Qt::DisplayRole).toString(); + rowItems << cellText; + } + outText += rowItems.join(separator) + "\n"; + } + return outText; +} + +void EditableGridWidget::pasteSelection() +{ + QAbstractItemModel *model = m_view->model(); + if (!model) return; + + if (m_mode == GridMode::LiveDatabase) { + // LiveDatabase: insert at end without undo wrapping + pasteSelectionAt(rowCount()); + return; + } + + // MemoryDocument: insert at selection with undo macro for reorder + int targetVisualRow = rowCount(); + QModelIndexList sel = m_view->selectionModel()->selectedIndexes(); + if (!sel.isEmpty()) { + int minVRow = rowCount(); + for (const auto &index : sel) { + int vr = m_view->verticalHeader()->visualIndex(index.row()); + if (vr < minVRow) minVRow = vr; + } + targetVisualRow = minVRow; + } + + int endRow = rowCount(); + bool needsMove = (targetVisualRow < endRow); + + QList beforeOrder; + QHeaderView *vh = m_view->verticalHeader(); + if (needsMove) { + for (int v = 0; v < vh->count(); ++v) + beforeOrder.append(vh->logicalIndex(v)); + } + + if (needsMove) m_undoStack->beginMacro("Paste rows"); + pasteSelectionAt(endRow); + + int rowsInserted = rowCount() - endRow; + if (rowsInserted > 0 && needsMove) { + QList midOrder; + for (int v = 0; v < vh->count(); ++v) midOrder.append(vh->logicalIndex(v)); + + for (int i = 0; i < rowsInserted; ++i) { + int logicalRow = endRow + i; + int curVisual = vh->visualIndex(logicalRow); + vh->moveSection(curVisual, targetVisualRow + i); + } + + QList afterOrder; + for (int v = 0; v < vh->count(); ++v) afterOrder.append(vh->logicalIndex(v)); + m_undoStack->push(new SectionMoveCommand(vh, midOrder, afterOrder, "Move pasted rows")); + updateRowNumbers(); + } + if (needsMove) m_undoStack->endMacro(); +} + +void EditableGridWidget::pasteSelectionAt(int atRow) +{ + QAbstractItemModel *model = m_view->model(); + if (!model) return; + int targetCols = colCount(); + if (targetCols <= 0) return; + + QString text = QApplication::clipboard()->text(); + if (text.isEmpty()) return; + + QStringList lines = text.split(QRegularExpression("\r?\n")); + if (!lines.isEmpty() && lines.last().isEmpty()) lines.removeLast(); + if (lines.isEmpty()) return; + + // Detect separator: try tab first, then comma + char sep = '\t'; + QStringList testList = lines.first().split(QLatin1Char('\t')); + if (testList.size() != targetCols) { + QStringList commaTest = lines.first().split(QLatin1Char(',')); + if (commaTest.size() == targetCols) sep = ','; + else if (testList.size() != targetCols) return; + } + + int rowsToInsert = lines.size(); + + QAbstractItemModel *targetModel = model; + int targetRow = atRow; + if (auto *proxy = qobject_cast(model)) { + targetModel = proxy->sourceModel(); + if (atRow < proxy->rowCount()) { + QModelIndex proxyIdx = proxy->index(atRow, 0); + targetRow = proxy->mapToSource(proxyIdx).row(); + } else { + targetRow = targetModel->rowCount(); + } + } + + if (m_mode == GridMode::LiveDatabase) { + // Direct model insertion, no undo command wrapper + targetModel->insertRows(targetRow, rowsToInsert); + } else { + m_isProgrammaticChange = true; + m_undoStack->push(new RowColCommand(targetModel, targetRow, rowsToInsert, true, true)); + m_isProgrammaticChange = false; + } + + for (int i = 0; i < rowsToInsert; ++i) { + QStringList list = lines.at(i).split(QLatin1Char(sep)); + for (int vc = 0; vc < targetCols; ++vc) { + int c = m_view->horizontalHeader()->logicalIndex(vc); + QString cellText = vc < list.size() ? list.at(vc).trimmed() : ""; + m_isProgrammaticChange = true; + targetModel->setData(targetModel->index(targetRow + i, c), cellText, Qt::EditRole); + m_isProgrammaticChange = false; + } + } +} + +void EditableGridWidget::insertRows(int count, int atRow) +{ + QAbstractItemModel *model = m_view->model(); + if (!model || colCount() <= 0 || count <= 0) return; + + QAbstractItemModel *targetModel = model; + int targetRow = atRow; + if (auto *proxy = qobject_cast(model)) { + targetModel = proxy->sourceModel(); + if (atRow < proxy->rowCount()) { + QModelIndex proxyIdx = proxy->index(atRow, 0); + targetRow = proxy->mapToSource(proxyIdx).row(); + } else { + targetRow = targetModel->rowCount(); + } + } + + if (m_mode == GridMode::LiveDatabase) { + targetModel->insertRows(targetRow, count); + return; + } + m_undoStack->push(new RowColCommand(targetModel, targetRow, count, true, true)); +} + +void EditableGridWidget::deleteSelectedRows() +{ + QAbstractItemModel *model = m_view->model(); + if (!model || !m_view->selectionModel()) return; + QModelIndexList sel = m_view->selectionModel()->selectedIndexes(); + if (sel.isEmpty()) return; + + QAbstractItemModel *targetModel = model; + QSortFilterProxyModel *proxy = qobject_cast(model); + if (proxy) { + targetModel = proxy->sourceModel(); + } + + QSet rowsSet; + for (const auto &index : sel) { + if (proxy) { + rowsSet.insert(proxy->mapToSource(index).row()); + } else { + rowsSet.insert(index.row()); + } + } + QList rowsToDelete = rowsSet.values(); + std::sort(rowsToDelete.begin(), rowsToDelete.end(), std::greater()); + + if (m_mode == GridMode::LiveDatabase) { + for (int r : rowsToDelete) + targetModel->removeRow(r); + return; + } + + m_undoStack->beginMacro("Delete rows"); + for (int r : rowsToDelete) + m_undoStack->push(new RowColCommand(targetModel, r, 1, true, false)); + m_undoStack->endMacro(); +} + +void EditableGridWidget::copyColumnSelection(char separator) +{ + QAbstractItemModel *model = m_view->model(); + if (!model || !m_view->selectionModel()) return; + QModelIndexList sel = m_view->selectionModel()->selectedIndexes(); + if (sel.isEmpty()) return; + + int minCol = colCount(), maxCol = -1; + for (const auto &index : sel) { + if (index.column() < minCol) minCol = index.column(); + if (index.column() > maxCol) maxCol = index.column(); + } + + QString outText; + for (int r = 0; r < rowCount(); ++r) { + QStringList rowItems; + for (int c = minCol; c <= maxCol; ++c) + rowItems << model->data(model->index(r, c), Qt::DisplayRole).toString(); + outText += rowItems.join(separator) + "\n"; + } + QApplication::clipboard()->setText(outText); +} + +void EditableGridWidget::pasteColumnSelectionAt(int atCol) +{ + QAbstractItemModel *model = m_view->model(); + if (!model) return; + + QAbstractItemModel *targetModel = model; + if (auto *proxy = qobject_cast(model)) + targetModel = proxy->sourceModel(); + + QString text = QApplication::clipboard()->text(); + if (text.isEmpty()) return; + + QStringList lines = text.split(QRegularExpression("\r?\n")); + if (!lines.isEmpty() && lines.last().isEmpty()) lines.removeLast(); + if (lines.isEmpty()) return; + + if (lines.size() != rowCount()) { + QMessageBox::warning(this, "Paste Error", + QString("Clipboard contains %1 rows, but table has %2.") + .arg(lines.size()).arg(rowCount())); + return; + } + + char sep = '\t'; + int colsToInsert = lines.first().split(QLatin1Char('\t')).size(); + if (colsToInsert <= 1) { + sep = ','; + colsToInsert = lines.first().split(QLatin1Char(',')).size(); + } + + if (m_mode == GridMode::LiveDatabase) { + // Direct model insertion, no undo command wrapper + targetModel->insertColumns(atCol, colsToInsert); + } else { + m_isProgrammaticChange = true; + m_undoStack->push(new RowColCommand(targetModel, atCol, colsToInsert, false, true)); + m_isProgrammaticChange = false; + } + + QSortFilterProxyModel *proxy = qobject_cast(model); + for (int r = 0; r < rowCount(); ++r) { + int targetRow = r; + if (proxy) { + QModelIndex proxyIdx = proxy->index(r, 0); + targetRow = proxy->mapToSource(proxyIdx).row(); + } + QStringList list = lines.at(r).split(QLatin1Char(sep)); + for (int c = 0; c < colsToInsert; ++c) { + QString cellText = c < list.size() ? list.at(c).trimmed() : ""; + m_isProgrammaticChange = true; + targetModel->setData(targetModel->index(targetRow, atCol + c), cellText, Qt::EditRole); + m_isProgrammaticChange = false; + } + } +} + +void EditableGridWidget::insertColumns(int count, int atCol) +{ + QAbstractItemModel *model = m_view->model(); + if (!model || rowCount() <= 0 || count <= 0) return; + + QAbstractItemModel *targetModel = model; + if (auto *proxy = qobject_cast(model)) + targetModel = proxy->sourceModel(); + + if (m_mode == GridMode::LiveDatabase) { + targetModel->insertColumns(atCol, count); + return; + } + m_undoStack->push(new RowColCommand(targetModel, atCol, count, false, true)); +} + +void EditableGridWidget::deleteSelectedColumns() +{ + QAbstractItemModel *model = m_view->model(); + if (!model || !m_view->selectionModel()) return; + QModelIndexList sel = m_view->selectionModel()->selectedIndexes(); + if (sel.isEmpty()) return; + + QAbstractItemModel *targetModel = model; + if (auto *proxy = qobject_cast(model)) + targetModel = proxy->sourceModel(); + + QSet colsSet; + for (const auto &index : sel) colsSet.insert(index.column()); + QList colsToDelete = colsSet.values(); + std::sort(colsToDelete.begin(), colsToDelete.end(), std::greater()); + + if (m_mode == GridMode::LiveDatabase) { + for (int c : colsToDelete) + targetModel->removeColumn(c); + return; + } + + m_undoStack->beginMacro("Delete cols"); + for (int c : colsToDelete) + m_undoStack->push(new RowColCommand(targetModel, c, 1, false, false)); + m_undoStack->endMacro(); +} + +// --------------------------------------------------------------------------- +// Context Menus +// --------------------------------------------------------------------------- + +void EditableGridWidget::showRowContextMenu(const QPoint &pos) +{ + QAbstractItemModel *model = m_view->model(); + if (!model) return; + + QMenu menu(this); + + // --- Copy cell / Copy row --- + QModelIndex clickedIdx = m_view->indexAt(pos); + QAction *actCopyCell = nullptr; + QAction *actCopyRow = nullptr; + + if (clickedIdx.isValid()) { + actCopyCell = menu.addAction(QStringLiteral("Copy cell")); + actCopyRow = menu.addAction(QStringLiteral("Copy row")); + menu.addSeparator(); + } + + // --- Selection-based actions --- + QAction *actCopyTSV = nullptr, *actCopyCSV = nullptr, *actDelete = nullptr; + QAction *actInsertAbove = nullptr, *actInsertBelow = nullptr; + QAction *actPasteAbove = nullptr, *actPasteBelow = nullptr; + + int minRow = rowCount(), maxRow = -1, numRows = 0; + QModelIndexList sel = m_view->selectionModel()->selectedIndexes(); + if (!sel.isEmpty()) { + QSet rows; + for (const auto &index : sel) { + rows.insert(index.row()); + if (index.row() < minRow) minRow = index.row(); + if (index.row() > maxRow) maxRow = index.row(); + } + numRows = rows.size(); + actCopyTSV = menu.addAction("Copy Selection as TSV"); + actCopyCSV = menu.addAction("Copy Selection as CSV"); + menu.addSeparator(); + actDelete = menu.addAction("Delete Selected Rows"); + } else { + int clickedRow = m_view->rowAt(pos.y()); + if (clickedRow >= 0) { minRow = maxRow = clickedRow; numRows = 1; } + } + + if (numRows > 0) { + menu.addSeparator(); + QString rowStr = (numRows == 1) ? "1 row" : QString("%1 rows").arg(numRows); + actInsertAbove = menu.addAction(QString("Insert %1 above").arg(rowStr)); + actInsertBelow = menu.addAction(QString("Insert %1 below").arg(rowStr)); + if (!QApplication::clipboard()->text().isEmpty()) { + menu.addSeparator(); + actPasteAbove = menu.addAction("Insert from Clipboard above"); + actPasteBelow = menu.addAction("Insert from Clipboard below"); + } + } + + // --- Extra callback (KV binary ops, etc.) --- + if (m_extraMenuCallback && clickedIdx.isValid()) { + menu.addSeparator(); + m_extraMenuCallback(&menu, clickedIdx); + } + + // --- Filters and Dark theme toggles --- + menu.addSeparator(); + + QAction *actFilters = nullptr; + if (m_filterRow) { + actFilters = menu.addAction(QStringLiteral("Filters")); + actFilters->setCheckable(true); + actFilters->setChecked(m_filterRow->isFilterVisible()); + } + + QAction *actDarkTheme = nullptr; + if (m_themeToggleEnabled) { + actDarkTheme = menu.addAction(QStringLiteral("Dark theme")); + actDarkTheme->setCheckable(true); + actDarkTheme->setChecked(ThemeManager::isDark()); + } + + QAction *res = menu.exec(m_view->viewport()->mapToGlobal(pos)); + QTimer::singleShot(0, this, [this]() { m_fm->restoreViewFocus(); }); + if (!res) return; + + // Handle results + if (res == actCopyCell && clickedIdx.isValid()) { + QString text = model->data(clickedIdx, Qt::DisplayRole).toString(); + QApplication::clipboard()->setText(text); + } else if (res == actCopyRow && clickedIdx.isValid()) { + int row = clickedIdx.row(); + QStringList cells; + for (int c = 0; c < model->columnCount(); ++c) + cells << model->data(model->index(row, c), Qt::DisplayRole).toString(); + QApplication::clipboard()->setText(cells.join(QChar('\t'))); + } else if (res == actCopyTSV) copySelection('\t'); + else if (res == actCopyCSV) copySelection(','); + else if (res == actDelete) deleteSelectedRows(); + else if (res == actInsertAbove) insertRows(numRows, minRow); + else if (res == actInsertBelow) insertRows(numRows, maxRow + 1); + else if (res == actPasteAbove) pasteSelectionAt(minRow); + else if (res == actPasteBelow) pasteSelectionAt(maxRow + 1); + else if (res == actFilters && m_filterRow) { + m_filterRow->setFilterVisible(!m_filterRow->isFilterVisible()); + } else if (res == actDarkTheme) { + ThemeManager::toggleTheme(window()); + } +} + +void EditableGridWidget::showColumnContextMenu(const QPoint &pos) +{ + QAbstractItemModel *model = m_view->model(); + if (!model) return; + + QMenu menu(this); + QAction *actCopy = nullptr, *actDelete = nullptr; + QAction *actInsertLeft = nullptr, *actInsertRight = nullptr; + QAction *actPasteLeft = nullptr, *actPasteRight = nullptr; + + int minCol = colCount(), maxCol = -1, numCols = 0; + QModelIndexList sel = m_view->selectionModel()->selectedIndexes(); + if (!sel.isEmpty()) { + QSet cols; + for (const auto &index : sel) { + cols.insert(index.column()); + if (index.column() < minCol) minCol = index.column(); + if (index.column() > maxCol) maxCol = index.column(); + } + numCols = cols.size(); + actCopy = menu.addAction("Copy Columns"); + menu.addSeparator(); + actDelete = menu.addAction("Delete Selected Columns"); + } else { + int clickedCol = m_view->columnAt(pos.x()); + if (clickedCol >= 0) { minCol = maxCol = clickedCol; numCols = 1; } + } + + if (numCols > 0) { + menu.addSeparator(); + QString colStr = (numCols == 1) ? "1 col" : QString("%1 cols").arg(numCols); + actInsertLeft = menu.addAction(QString("Insert %1 left").arg(colStr)); + actInsertRight = menu.addAction(QString("Insert %1 right").arg(colStr)); + if (!QApplication::clipboard()->text().isEmpty()) { + menu.addSeparator(); + actPasteLeft = menu.addAction("Insert from Clipboard left"); + actPasteRight = menu.addAction("Insert from Clipboard right"); + } + } + + QAction *res = menu.exec(m_view->horizontalHeader()->viewport()->mapToGlobal(pos)); + QTimer::singleShot(0, this, [this]() { m_fm->restoreViewFocus(); }); + if (!res) return; + + if (res == actCopy) copyColumnSelection('\t'); + else if (res == actDelete) deleteSelectedColumns(); + else if (res == actInsertLeft) insertColumns(numCols, minCol); + else if (res == actInsertRight) insertColumns(numCols, maxCol + 1); + else if (res == actPasteLeft) pasteColumnSelectionAt(minCol); + else if (res == actPasteRight) pasteColumnSelectionAt(maxCol + 1); +} + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/src/EncodingUtils.cpp b/wlx/wlxbase_wlqt/src/EncodingUtils.cpp new file mode 100644 index 0000000..9523459 --- /dev/null +++ b/wlx/wlxbase_wlqt/src/EncodingUtils.cpp @@ -0,0 +1,122 @@ +#include + +#include +#include +#include +#include +#include + +namespace QtWlPlugin { + +QString EncodingUtils::detectEncoding(const QByteArray &data, const QString &language) +{ + if (data.isEmpty()) + return {}; + + QString lang = language; + if (lang.isEmpty()) { + // Derive from current locale without changing it + const char *loc = setlocale(LC_ALL, nullptr); + if (loc && strlen(loc) >= 2) + lang = QString::fromLatin1(loc, 2); + else + lang = "__"; + } + + EncaAnalyser analyser = enca_analyser_alloc(lang.toStdString().c_str()); + if (!analyser) + return {}; + + enca_set_threshold(analyser, 1.38); + enca_set_multibyte(analyser, 1); + enca_set_ambiguity(analyser, 1); + enca_set_garbage_test(analyser, 1); + enca_set_filtering(analyser, 0); + + EncaEncoding encoding = enca_analyse(analyser, + (unsigned char *)data.data(), (size_t)data.size()); + + QString result; + if (encoding.charset > 0 && encoding.charset != 27) { + const char *name = enca_charset_name(encoding.charset, ENCA_NAME_STYLE_ICONV); + if (name) + result = QString::fromLatin1(name); + } + + enca_analyser_free(analyser); + return result; +} + +QString EncodingUtils::detectFileEncoding(const QString &filePath, const QString &language, + int sampleSize, bool readAll) +{ + QFile file(filePath); + if (!file.open(QFile::ReadOnly)) + return {}; + + QByteArray data = readAll ? file.readAll() : file.read(sampleSize); + file.close(); + + return detectEncoding(data, language); +} + +QByteArray EncodingUtils::toUtf8(const QByteArray &data, const QString &fromEncoding) +{ + if (fromEncoding.isEmpty() || fromEncoding.compare("UTF-8", Qt::CaseInsensitive) == 0) + return data; + + gsize len; + gchar *converted = g_convert_with_fallback( + data.data(), data.size(), + "UTF-8", fromEncoding.toStdString().c_str(), + NULL, NULL, &len, NULL); + + if (converted) { + QByteArray result(converted, len); + g_free(converted); + return result; + } + return data; +} + +QByteArray EncodingUtils::fromUtf8(const QString &text, const QString &toEncoding) +{ + if (toEncoding.isEmpty() || toEncoding.compare("UTF-8", Qt::CaseInsensitive) == 0) + return text.toUtf8(); + + QByteArray utf8 = text.toUtf8(); + gsize len; + gchar *converted = g_convert_with_fallback( + utf8.data(), utf8.size(), + toEncoding.toStdString().c_str(), "UTF-8", + NULL, NULL, &len, NULL); + + if (converted) { + QByteArray result(converted, len); + g_free(converted); + return result; + } + return utf8; +} + +QString EncodingUtils::decodeToString(const QByteArray &data, const QString &language) +{ + QString encoding = detectEncoding(data, language); + if (encoding.isEmpty()) + return QString::fromUtf8(data); + + QByteArray utf8 = toUtf8(data, encoding); + return QString::fromUtf8(utf8); +} + +bool EncodingUtils::isEncaAvailable() +{ + EncaAnalyser analyser = enca_analyser_alloc("__"); + if (analyser) { + enca_analyser_free(analyser); + return true; + } + return false; +} + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/src/FilterRowWidget.cpp b/wlx/wlxbase_wlqt/src/FilterRowWidget.cpp new file mode 100644 index 0000000..0e61cdc --- /dev/null +++ b/wlx/wlxbase_wlqt/src/FilterRowWidget.cpp @@ -0,0 +1,102 @@ +#include + +#include +#include +#include +#include +#include +#include + +namespace QtWlPlugin { + +FilterRowWidget::FilterRowWidget(QTableView *view, QWidget *parent) + : QWidget(parent) + , m_view(view) + , m_layout(new QHBoxLayout(this)) +{ + m_layout->setContentsMargins(0, 0, 0, 0); + m_layout->setSpacing(0); + setFixedHeight(24); + + // Track header geometry changes to sync widths + if (m_view->horizontalHeader()) + m_view->horizontalHeader()->installEventFilter(this); + + rebuildInputs(); +} + +void FilterRowWidget::rebuildInputs() +{ + // Clear existing + for (auto *input : m_inputs) + delete input; + m_inputs.clear(); + + QAbstractItemModel *model = m_view->model(); + if (!model) return; + + int cols = model->columnCount(); + for (int c = 0; c < cols; ++c) { + auto *input = new QLineEdit(this); + input->setPlaceholderText(QStringLiteral("Filter...")); + input->setMaximumHeight(22); + input->setFrame(true); + input->setClearButtonEnabled(true); + + int col = c; + connect(input, &QLineEdit::textChanged, this, [this, col](const QString &text) { + emit filterChanged(col, text); + }); + + m_layout->addWidget(input); + m_inputs.append(input); + } + + syncWidths(); +} + +void FilterRowWidget::syncWidths() +{ + QHeaderView *header = m_view->horizontalHeader(); + if (!header) return; + + for (int c = 0; c < m_inputs.size(); ++c) { + int w = header->sectionSize(c); + m_inputs[c]->setFixedWidth(w); + } +} + +void FilterRowWidget::setFilterVisible(bool visible) +{ + m_visible = visible; + setVisible(visible); +} + +bool FilterRowWidget::isFilterVisible() const +{ + return m_visible; +} + +void FilterRowWidget::clearFilters() +{ + for (auto *input : m_inputs) + input->clear(); +} + +void FilterRowWidget::syncToModel() +{ + rebuildInputs(); +} + +bool FilterRowWidget::eventFilter(QObject *obj, QEvent *event) +{ + if (obj == m_view->horizontalHeader()) { + if (event->type() == QEvent::Resize + || event->type() == QEvent::LayoutRequest) { + syncWidths(); + } + } + return QWidget::eventFilter(obj, event); +} + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/src/FilterableHeaderView.cpp b/wlx/wlxbase_wlqt/src/FilterableHeaderView.cpp new file mode 100644 index 0000000..f41e7c7 --- /dev/null +++ b/wlx/wlxbase_wlqt/src/FilterableHeaderView.cpp @@ -0,0 +1,173 @@ +#include + +#include +#include +#include +#include + +namespace QtWlPlugin { + +FilterableHeaderView::FilterableHeaderView(Qt::Orientation orientation, QWidget *parent) + : QHeaderView(orientation, parent) +{ + // Re-position filter inputs whenever sections change + connect(this, &QHeaderView::sectionResized, this, &FilterableHeaderView::adjustInputPositions); + connect(this, &QHeaderView::sectionMoved, this, &FilterableHeaderView::adjustInputPositions); + connect(this, &QHeaderView::geometriesChanged, this, &FilterableHeaderView::adjustInputPositions); +} + +void FilterableHeaderView::setFilterEnabled(bool enabled) +{ + if (m_filterEnabled == enabled) + return; + m_filterEnabled = enabled; + + if (m_filterEnabled) { + rebuildInputs(); + } else { + for (auto *input : m_inputs) + delete input; + m_inputs.clear(); + } + + // Force header to recalculate its size + updateGeometries(); + viewport()->update(); +} + +bool FilterableHeaderView::isFilterEnabled() const +{ + return m_filterEnabled; +} + +void FilterableHeaderView::clearFilters() +{ + for (auto *input : m_inputs) + input->clear(); +} + +QString FilterableHeaderView::filterText(int column) const +{ + if (column >= 0 && column < m_inputs.size()) + return m_inputs[column]->text(); + return {}; +} + +void FilterableHeaderView::setHeaderVisible(bool visible) +{ + if (m_headerVisible == visible) + return; + m_headerVisible = visible; + updateGeometries(); + viewport()->update(); +} + +bool FilterableHeaderView::isHeaderVisible() const +{ + return m_headerVisible; +} + +QSize FilterableHeaderView::sizeHint() const +{ + int h = 0; + if (m_headerVisible) { + h += QHeaderView::sizeHint().height(); + } + if (m_filterEnabled) { + h += m_filterRowHeight; + } + return QSize(QHeaderView::sizeHint().width(), h); +} + +void FilterableHeaderView::updateGeometries() +{ + int bottomMargin = 0; + if (m_filterEnabled && m_headerVisible) { + bottomMargin = m_filterRowHeight; + } + setViewportMargins(0, 0, 0, bottomMargin); + + QHeaderView::updateGeometries(); + + if (m_filterEnabled) + adjustInputPositions(); +} + +void FilterableHeaderView::paintSection(QPainter *painter, const QRect &rect, int logicalIndex) const +{ + if (!m_headerVisible) { + painter->save(); + QStyleOptionHeader opt; + initStyleOption(&opt); + opt.section = logicalIndex; + opt.rect = rect; + opt.text.clear(); + opt.icon = QIcon(); + style()->drawControl(QStyle::CE_HeaderSection, &opt, painter, this); + painter->restore(); + return; + } + QHeaderView::paintSection(painter, rect, logicalIndex); +} + +void FilterableHeaderView::adjustInputPositions() +{ + if (!m_filterEnabled || !model()) + return; + + int cols = model()->columnCount(); + + // Rebuild if column count changed + if (m_inputs.size() != cols) + rebuildInputs(); + + int labelHeight = m_headerVisible ? QHeaderView::sizeHint().height() : 0; + + for (int i = 0; i < m_inputs.size() && i < cols; ++i) { + int logicalIdx = logicalIndex(i); + if (logicalIdx < 0 || logicalIdx >= m_inputs.size()) + continue; + + int xPos = sectionViewportPosition(logicalIdx); + int w = sectionSize(logicalIdx); + + m_inputs[logicalIdx]->setGeometry(xPos, labelHeight, w, m_filterRowHeight); + m_inputs[logicalIdx]->setVisible(!isSectionHidden(logicalIdx)); + } +} + +void FilterableHeaderView::rebuildInputs() +{ + for (auto *input : m_inputs) + delete input; + m_inputs.clear(); + + if (!model() || !m_filterEnabled) + return; + + int cols = model()->columnCount(); + m_inputs.reserve(cols); + + for (int c = 0; c < cols; ++c) { + auto *input = new QLineEdit(this); + input->setPlaceholderText(QStringLiteral("Filter...")); + input->setFrame(true); + input->setClearButtonEnabled(true); + + // Use a small font to fit the compact row height + QFont f = input->font(); + f.setPointSize(f.pointSize() - 1); + input->setFont(f); + + int col = c; + connect(input, &QLineEdit::textChanged, this, [this, col](const QString &text) { + emit filterChanged(col, text); + }); + + m_inputs.append(input); + } + + adjustInputPositions(); +} + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/src/FindReplacePanel.cpp b/wlx/wlxbase_wlqt/src/FindReplacePanel.cpp new file mode 100644 index 0000000..409b71c --- /dev/null +++ b/wlx/wlxbase_wlqt/src/FindReplacePanel.cpp @@ -0,0 +1,151 @@ +#include +#include + +#include +#include +#include +#include +#include +#include + +namespace QtWlPlugin { + +FindReplacePanel::FindReplacePanel(FocusManager *fm, QWidget *parent) + : QWidget(parent) + , m_fm(fm) +{ + setObjectName("FindReplacePanel"); + setVisible(false); + setStyleSheet( + "QWidget#FindReplacePanel { background-color: palette(window); border-top: 1px solid palette(mid); }" + "QPushButton { border: 1px solid palette(mid); border-radius: 3px; padding: 2px 8px; background-color: palette(button); }" + "QPushButton:hover { background-color: palette(light); }" + "QPushButton:pressed { background-color: palette(midlight); }" + "QPushButton#CloseButton { border: none; background: transparent; }" + "QPushButton#CloseButton:hover { background-color: palette(light); }" + ); + + auto *panelLayout = new QVBoxLayout(this); + panelLayout->setContentsMargins(6, 6, 6, 6); + panelLayout->setSpacing(6); + + // --- Row 1: Find + Replace inputs --- + auto *row1 = new QHBoxLayout(); + row1->setSpacing(6); + + auto *lblFind = new QLabel("Find:", this); + m_txtFind = new QLineEdit(this); + m_txtFind->setPlaceholderText("Search query..."); + + m_lblReplace = new QLabel("Replace:", this); + m_txtReplace = new QLineEdit(this); + m_txtReplace->setPlaceholderText("Replacement text..."); + + row1->addWidget(lblFind); + row1->addWidget(m_txtFind, 1); + row1->addWidget(m_lblReplace); + row1->addWidget(m_txtReplace, 1); + + // --- Row 2: Options + actions --- + m_optionsRow = new QHBoxLayout(); + m_optionsRow->setSpacing(6); + + m_chkMatchCase = new QCheckBox("Match Case", this); + m_chkMatchEntire = new QCheckBox("Match Entire Cell", this); + m_chkRegex = new QCheckBox("Regular Expression", this); + + m_chkMatchCase->setFocusPolicy(Qt::NoFocus); + m_chkMatchEntire->setFocusPolicy(Qt::NoFocus); + m_chkRegex->setFocusPolicy(Qt::NoFocus); + + auto *btnFindPrev = new QPushButton("Find Previous", this); + auto *btnFindNext = new QPushButton("Find Next", this); + m_btnReplace = new QPushButton("Replace", this); + m_btnReplaceAll = new QPushButton("Replace All", this); + + btnFindPrev->setFocusPolicy(Qt::NoFocus); + btnFindNext->setFocusPolicy(Qt::NoFocus); + m_btnReplace->setFocusPolicy(Qt::NoFocus); + m_btnReplaceAll->setFocusPolicy(Qt::NoFocus); + + m_lblStatus = new QLabel(this); + m_lblStatus->setStyleSheet("color: palette(link); font-weight: bold;"); + + auto *btnClose = new QPushButton("\u2715", this); + btnClose->setObjectName("CloseButton"); + btnClose->setFixedWidth(30); + btnClose->setFlat(true); + btnClose->setFocusPolicy(Qt::NoFocus); + + m_optionsRow->addWidget(m_chkMatchCase); + m_optionsRow->addWidget(m_chkMatchEntire); + m_optionsRow->addWidget(m_chkRegex); + m_optionsRow->addWidget(btnFindPrev); + m_optionsRow->addWidget(btnFindNext); + m_optionsRow->addWidget(m_btnReplace); + m_optionsRow->addWidget(m_btnReplaceAll); + m_optionsRow->addWidget(m_lblStatus, 1); + m_optionsRow->addWidget(btnClose); + + panelLayout->addLayout(row1); + panelLayout->addLayout(m_optionsRow); + + // --- Connections --- + connect(btnFindNext, &QPushButton::clicked, this, [this]() { emit findRequested(true); }); + connect(btnFindPrev, &QPushButton::clicked, this, [this]() { emit findRequested(false); }); + connect(m_btnReplace, &QPushButton::clicked, this, &FindReplacePanel::replaceRequested); + connect(m_btnReplaceAll, &QPushButton::clicked, this, &FindReplacePanel::replaceAllRequested); + connect(btnClose, &QPushButton::clicked, this, [this]() { showPanel(false); }); + connect(m_txtFind, &QLineEdit::returnPressed, this, [this]() { emit findRequested(true); }); + connect(m_txtReplace, &QLineEdit::returnPressed, this, &FindReplacePanel::replaceRequested); + + // Register find/replace inputs as input widgets with FocusManager + fm->addInputWidget(m_txtFind); + fm->addInputWidget(m_txtReplace); + + // Register shortcuts (Always context — should work even when editing) + fm->registerShortcut(QKeySequence(Qt::CTRL | Qt::Key_F), FocusManager::Always, + [this]() { showPanel(!isPanelVisible()); return true; }); + fm->registerShortcut(QKeySequence(Qt::CTRL | Qt::Key_R), FocusManager::Always, + [this]() { showPanel(!isPanelVisible()); return true; }); +} + +void FindReplacePanel::setReplaceEnabled(bool enabled) +{ + m_lblReplace->setVisible(enabled); + m_txtReplace->setVisible(enabled); + m_btnReplace->setVisible(enabled); + m_btnReplaceAll->setVisible(enabled); +} + +QString FindReplacePanel::findText() const { return m_txtFind->text(); } +QString FindReplacePanel::replaceText() const { return m_txtReplace->text(); } +bool FindReplacePanel::matchCase() const { return m_chkMatchCase->isChecked(); } +bool FindReplacePanel::matchEntireCell() const { return m_chkMatchEntire->isChecked(); } +bool FindReplacePanel::useRegex() const { return m_chkRegex->isChecked(); } + +void FindReplacePanel::setStatusText(const QString &text) { m_lblStatus->setText(text); } + +void FindReplacePanel::showPanel(bool show) +{ + setVisible(show); + if (show) { + m_fm->setFocusProxy(m_txtFind); + m_txtFind->setFocus(Qt::OtherFocusReason); + m_txtFind->selectAll(); + m_lblStatus->clear(); + } else { + m_fm->resetFocusProxy(); + m_lblStatus->clear(); + m_fm->restoreViewFocus(); + emit panelClosed(); + } +} + +bool FindReplacePanel::isPanelVisible() const { return isVisible(); } + +FocusManager *FindReplacePanel::focusManager() const { return m_fm; } +QLabel *FindReplacePanel::statusLabel() const { return m_lblStatus; } +QHBoxLayout *FindReplacePanel::optionsRow() const { return m_optionsRow; } + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/src/FocusManager.cpp b/wlx/wlxbase_wlqt/src/FocusManager.cpp new file mode 100644 index 0000000..3343ec7 --- /dev/null +++ b/wlx/wlxbase_wlqt/src/FocusManager.cpp @@ -0,0 +1,301 @@ +#include + +#include +#include +#include +#include +#include +#include +#include + +namespace QtWlPlugin { + +FocusManager::FocusManager(QWidget *pluginRoot, QWidget *primaryView, QObject *parent) + : QObject(parent) + , m_pluginRoot(pluginRoot) + , m_primaryView(primaryView) + , m_isActive(false) + , m_undoStack(nullptr) + , m_nextShortcutId(1) +{ + installFocusGuard(); + + // Detect focus entering/leaving the plugin hierarchy + connect(qApp, &QApplication::focusChanged, this, [this](QWidget *old, QWidget *now) { + bool oldInside = old && (old == m_pluginRoot || m_pluginRoot->isAncestorOf(old)); + bool nowInside = now && (now == m_pluginRoot || m_pluginRoot->isAncestorOf(now)); + + if (m_isActive) { + if (oldInside && !nowInside) { + setActive(false); + } + } else { + if (nowInside && !oldInside) { + // Focus entering while inactive — bounce it back to the host + if (old) { + QPointer pOld(old); + QTimer::singleShot(0, this, [this, pOld]() { + if (pOld) { + QWidget *currentFocus = QApplication::focusWidget(); + if (currentFocus && (currentFocus == m_pluginRoot || + m_pluginRoot->isAncestorOf(currentFocus))) { + pOld->setFocus(Qt::OtherFocusReason); + } + } + }); + } else { + QTimer::singleShot(0, this, [this]() { + QWidget *currentFocus = QApplication::focusWidget(); + if (currentFocus && (currentFocus == m_pluginRoot || + m_pluginRoot->isAncestorOf(currentFocus))) { + restoreFocusToDC(); + } + }); + } + } + } + }); +} + +FocusManager::~FocusManager() +{ + if (qApp) + qApp->removeEventFilter(this); +} + +// --- Activation --- + +bool FocusManager::isActive() const { return m_isActive; } + +void FocusManager::setActive(bool active) +{ + if (m_isActive == active) + return; + + m_isActive = active; + + if (!active) { + m_activeInput = nullptr; + m_pluginRoot->clearFocus(); + if (m_pluginRoot->parentWidget()) + m_pluginRoot->parentWidget()->setFocus(Qt::OtherFocusReason); + emit deactivated(); + } else { + emit activated(); + } +} + +// --- Input widget tracking --- + +void FocusManager::addInputWidget(QWidget *w) +{ + if (w) + m_extraInputWidgets.insert(w); +} + +void FocusManager::removeInputWidget(QWidget *w) +{ + m_extraInputWidgets.remove(w); +} + +bool FocusManager::isInputWidget(QWidget *w) const +{ + if (!w) + return false; + if (m_extraInputWidgets.contains(w)) + return true; + // A descendant of primaryView (but not primaryView itself) is an input widget + // (e.g. a cell editor spawned inside a QTableWidget) + return w != m_primaryView && m_primaryView->isAncestorOf(w); +} + +QWidget *FocusManager::activeInput() const { return m_activeInput; } + +// --- Focus proxy --- + +void FocusManager::setFocusProxy(QWidget *proxy) +{ + m_pluginRoot->setFocusProxy(proxy); +} + +void FocusManager::resetFocusProxy() +{ + m_pluginRoot->setFocusProxy(m_primaryView); +} + +// --- Shortcut registration --- + +FocusManager::ShortcutId FocusManager::registerShortcut( + const QKeySequence &keys, ShortcutContext ctx, std::function handler) +{ + ShortcutId id = m_nextShortcutId++; + m_shortcuts.append({id, keys, ctx, std::move(handler)}); + return id; +} + +void FocusManager::unregisterShortcut(ShortcutId id) +{ + m_shortcuts.erase( + std::remove_if(m_shortcuts.begin(), m_shortcuts.end(), + [id](const RegisteredShortcut &s) { return s.id == id; }), + m_shortcuts.end()); +} + +// --- Optional undo/redo --- + +void FocusManager::setUndoStack(QUndoStack *stack) +{ + // Unregister previous undo shortcuts + for (ShortcutId id : m_undoShortcutIds) + unregisterShortcut(id); + m_undoShortcutIds.clear(); + + m_undoStack = stack; + + if (stack) { + // Ctrl+Z → undo + m_undoShortcutIds.append(registerShortcut( + QKeySequence(Qt::CTRL | Qt::Key_Z), WhenNoInput, + [stack]() { + if (stack->canUndo()) { stack->undo(); return true; } + return false; + })); + + // Ctrl+Shift+Z → redo + m_undoShortcutIds.append(registerShortcut( + QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_Z), WhenNoInput, + [stack]() { + if (stack->canRedo()) { stack->redo(); return true; } + return false; + })); + + // Ctrl+Y → redo + m_undoShortcutIds.append(registerShortcut( + QKeySequence(Qt::CTRL | Qt::Key_Y), WhenNoInput, + [stack]() { + if (stack->canRedo()) { stack->redo(); return true; } + return false; + })); + } +} + +QUndoStack *FocusManager::undoStack() const { return m_undoStack; } + +// --- Saved focus --- + +void FocusManager::saveFocusWidget(QWidget *w) { m_savedFocusWidget = w; } + +// --- Access --- + +QWidget *FocusManager::pluginRoot() const { return m_pluginRoot; } +QWidget *FocusManager::primaryView() const { return m_primaryView; } + +// --- Focus restoration --- + +void FocusManager::restoreViewFocus() +{ + m_primaryView->setFocus(Qt::OtherFocusReason); +} + +void FocusManager::restoreFocusToDC() +{ + if (m_savedFocusWidget) { + m_savedFocusWidget->setFocus(Qt::OtherFocusReason); + } else { + if (QWidget *fw = QApplication::focusWidget()) { + if (fw == m_pluginRoot || fw->isAncestorOf(m_pluginRoot) || + m_pluginRoot->isAncestorOf(fw)) + fw->clearFocus(); + } + } +} + +void FocusManager::installFocusGuard() +{ + if (qApp) + qApp->installEventFilter(this); + m_pluginRoot->setFocusProxy(m_primaryView); +} + +// --- Event filter (the critical focus/shortcut engine) --- + +bool FocusManager::eventFilter(QObject *obj, QEvent *event) +{ + QWidget *w = qobject_cast(obj); + + // --- Geometry-based click detection --- + if (event->type() == QEvent::MouseButtonPress) { + auto *me = static_cast(event); + const QPoint gp = me->globalPosition().toPoint(); + const QRect gr(m_pluginRoot->mapToGlobal(QPoint(0, 0)), m_pluginRoot->size()); + + if (m_isActive && !gr.contains(gp)) { + // Click outside plugin — deactivate + setActive(false); + return false; + } else if (!m_isActive && gr.contains(gp)) { + // Click inside plugin — activate + m_isActive = true; + emit activated(); + if (w && (w->focusPolicy() & Qt::ClickFocus)) { + w->setFocus(Qt::MouseFocusReason); + } else { + m_primaryView->setFocus(Qt::MouseFocusReason); + } + } + } + + // --- FocusIn tracking --- + if (event->type() == QEvent::FocusIn) { + if (w && (w == m_pluginRoot || m_pluginRoot->isAncestorOf(w))) { + auto *fe = static_cast(event); + if (!m_isActive && fe->reason() == Qt::OtherFocusReason) { + // Programmatic focus entry while inactive — don't activate + return false; + } + if (!m_isActive) { + m_isActive = true; + emit activated(); + } + if (isInputWidget(w)) { + m_activeInput = w; + emit inputWidgetEntered(w); + } + } + } + + // --- KeyPress: shortcut dispatch --- + if (event->type() == QEvent::KeyPress && m_isActive) { + auto *ke = static_cast(event); + QKeySequence pressed(ke->modifiers() | ke->key()); + + for (const auto &shortcut : m_shortcuts) { + if (shortcut.keys.count() != 1) + continue; + if (pressed[0] != shortcut.keys[0]) + continue; + + // Check context + if (shortcut.ctx == WhenNoInput && m_activeInput) + continue; + + if (shortcut.handler && shortcut.handler()) + return true; + } + } + + // --- ChildAdded: NoFocus enforcement --- + if (event->type() == QEvent::ChildAdded) { + if (w && (w == m_pluginRoot || m_pluginRoot->isAncestorOf(w))) { + auto *ce = static_cast(event); + if (auto *childWidget = qobject_cast(ce->child())) { + if (!isInputWidget(childWidget)) + childWidget->setFocusPolicy(Qt::NoFocus); + } + } + } + + return QObject::eventFilter(obj, event); +} + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/src/PluginSplitView.cpp b/wlx/wlxbase_wlqt/src/PluginSplitView.cpp new file mode 100644 index 0000000..cf02f26 --- /dev/null +++ b/wlx/wlxbase_wlqt/src/PluginSplitView.cpp @@ -0,0 +1,34 @@ +#include + +namespace QtWlPlugin { + +PluginSplitView::PluginSplitView(QWidget *leftPanel, QWidget *rightContent, + QWidget *parent) + : QSplitter(Qt::Horizontal, parent) + , m_left(leftPanel) + , m_right(rightContent) +{ + addWidget(m_left); + addWidget(m_right); + + m_left->setMinimumWidth(100); + m_left->setMaximumWidth(350); + + setStretchFactor(0, 0); // Left: fixed + setStretchFactor(1, 1); // Right: stretches + + setSizes({180, 600}); + setChildrenCollapsible(false); + + setHandleWidth(3); +} + +void PluginSplitView::setLeftWidth(int pixels) +{ + setSizes({pixels, width() - pixels}); +} + +QWidget *PluginSplitView::leftPanel() const { return m_left; } +QWidget *PluginSplitView::rightContent() const { return m_right; } + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/src/PluginStatusBar.cpp b/wlx/wlxbase_wlqt/src/PluginStatusBar.cpp new file mode 100644 index 0000000..d2be345 --- /dev/null +++ b/wlx/wlxbase_wlqt/src/PluginStatusBar.cpp @@ -0,0 +1,136 @@ +#include + +#include +#include +#include + +namespace QtWlPlugin { + +PluginStatusBar::PluginStatusBar(QWidget *parent) + : QWidget(parent) + , m_layout(new QHBoxLayout(this)) +{ + m_layout->setContentsMargins(4, 2, 4, 2); + m_layout->setSpacing(0); + setFixedHeight(22); + setStyleSheet(QStringLiteral( + "PluginStatusBar { border-top: 1px solid #c0c0c0; }" + ).replace(QStringLiteral("PluginStatusBar"), + QStringLiteral("QtWlPlugin--PluginStatusBar"))); + + QFont smallFont = font(); + smallFont.setPointSize(9); + + m_encodingLabel = new QLabel(this); + m_encodingLabel->setFont(smallFont); + + m_formatLabel = new QLabel(this); + m_formatLabel->setFont(smallFont); + + m_rowLabel = new QLabel(this); + m_rowLabel->setFont(smallFont); + + rebuild(); +} + +QFrame *PluginStatusBar::createSeparator() +{ + auto *sep = new QFrame(this); + sep->setFrameShape(QFrame::VLine); + sep->setFrameShadow(QFrame::Sunken); + sep->setFixedWidth(2); + return sep; +} + +void PluginStatusBar::rebuild() +{ + // Remove all items from layout (without deleting the labels themselves) + while (m_layout->count() > 0) { + QLayoutItem *item = m_layout->takeAt(0); + // Delete separators and spacers, keep our persistent labels + if (item->widget() + && item->widget() != m_encodingLabel + && item->widget() != m_formatLabel + && item->widget() != m_rowLabel + && !m_extras.values().contains(qobject_cast(item->widget()))) { + delete item->widget(); + } + delete item; + } + + // Add extras first (sorted by key) + QStringList keys = m_extras.keys(); + keys.sort(); + for (const auto &key : keys) { + if (m_layout->count() > 0) + m_layout->addWidget(createSeparator()); + m_layout->addWidget(m_extras[key]); + } + + // Encoding + if (!m_encodingLabel->text().isEmpty()) { + if (m_layout->count() > 0) + m_layout->addWidget(createSeparator()); + m_layout->addWidget(m_encodingLabel); + } + + // Format + if (!m_formatLabel->text().isEmpty()) { + if (m_layout->count() > 0) + m_layout->addWidget(createSeparator()); + m_layout->addWidget(m_formatLabel); + } + + // Spacer → row count on right + m_layout->addStretch(1); + + if (!m_rowLabel->text().isEmpty()) { + m_layout->addWidget(createSeparator()); + m_layout->addWidget(m_rowLabel); + } +} + +void PluginStatusBar::setEncoding(const QString &encoding) +{ + m_encodingLabel->setText(QStringLiteral(" %1 ").arg(encoding)); + rebuild(); +} + +void PluginStatusBar::setFormatInfo(const QString &info) +{ + m_formatLabel->setText(QStringLiteral(" %1 ").arg(info)); + rebuild(); +} + +void PluginStatusBar::setRowCount(int filtered, int total) +{ + if (filtered == total) + m_rowLabel->setText(QStringLiteral(" Rows: %1 ").arg(total)); + else + m_rowLabel->setText(QStringLiteral(" Rows: %1/%2 ").arg(filtered).arg(total)); + rebuild(); +} + +void PluginStatusBar::setExtraInfo(const QString &key, const QString &value) +{ + QLabel *label = m_extras.value(key, nullptr); + if (!label) { + QFont smallFont = font(); + smallFont.setPointSize(9); + label = new QLabel(this); + label->setFont(smallFont); + m_extras[key] = label; + } + label->setText(QStringLiteral(" %1: %2 ").arg(key, value)); + rebuild(); +} + +void PluginStatusBar::removeExtraInfo(const QString &key) +{ + if (m_extras.contains(key)) { + delete m_extras.take(key); + rebuild(); + } +} + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/src/PluginToolBar.cpp b/wlx/wlxbase_wlqt/src/PluginToolBar.cpp new file mode 100644 index 0000000..a21e153 --- /dev/null +++ b/wlx/wlxbase_wlqt/src/PluginToolBar.cpp @@ -0,0 +1,158 @@ +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +namespace QtWlPlugin { + +PluginToolBar::PluginToolBar(FocusManager *fm, QWidget *parent) + : QToolBar(parent) + , m_fm(fm) +{ + setFocusPolicy(Qt::NoFocus); + setStyleSheet( + "QToolBar { spacing: 2px; }" + "QToolButton { padding: 2px 4px; margin: 1px; }" + ); + enforceNoFocus(); +} + +static QIcon iconFromText(const QString &text, QWidget *parent) +{ + QPixmap pixmap(32, 32); + pixmap.fill(Qt::transparent); + QPainter painter(&pixmap); + + QFont font = parent ? parent->font() : QFont(); + font.setPixelSize(22); + painter.setFont(font); + + QColor color = Qt::black; + if (parent) { + color = parent->palette().color(QPalette::ButtonText); + } + painter.setPen(color); + painter.drawText(pixmap.rect(), Qt::AlignCenter, text); + painter.end(); + + return QIcon(pixmap); +} + +static QString getFallbackUnicodeIcon(const QString &systemIconName) +{ + if (systemIconName == QStringLiteral("document-save")) + return QStringLiteral("🖫"); + if (systemIconName == QStringLiteral("document-save-as")) + return QStringLiteral("🖪"); + if (systemIconName == QStringLiteral("edit-undo")) + return QStringLiteral("↶"); + if (systemIconName == QStringLiteral("edit-redo")) + return QStringLiteral("↷"); + if (systemIconName == QStringLiteral("document-print")) + return QString::fromUtf8("\xf0\x9f\x96\xa8\xef\xb8\x8e"); // 🖨︎ + if (systemIconName == QStringLiteral("view-refresh")) + return QStringLiteral("⟳"); + if (systemIconName == QStringLiteral("visibility")) + return QString::fromUtf8("\xf0\x9f\x91\x81\xef\xb8\x8e"); // 👁︎ + if (systemIconName == QStringLiteral("format-text-direction-ltr")) + return QString::fromUtf8("\xe2\x86\xa9\xef\xb8\x8e"); // ↩︎ + if (systemIconName == QStringLiteral("document-open")) + return QString::fromUtf8("\xe2\x86\x97\xef\xb8\x8e"); // ↗︎ + if (systemIconName == QStringLiteral("edit-find")) + return QString::fromUtf8("\xf0\x9f\x94\x8d\xef\xb8\x8e"); // 🔍︎ + return QString(); +} + +QAction *PluginToolBar::addToolAction(const QString &text, + const QKeySequence &shortcut, + int ctx, + const QString &systemIconName, + const QString &unicodeIcon, + ButtonDisplay display, + IconMode iconMode) +{ + QIcon icon; + QString resolvedUnicode = unicodeIcon; + if (resolvedUnicode.isEmpty() && !systemIconName.isEmpty()) { + resolvedUnicode = getFallbackUnicodeIcon(systemIconName); + } + + if (iconMode == IconMode::System) { + if (!systemIconName.isEmpty()) { + icon = QIcon::fromTheme(systemIconName); + } + if (icon.isNull() && !resolvedUnicode.isEmpty()) { + icon = iconFromText(resolvedUnicode, this); + } + } else { // IconMode::Unicode + if (!resolvedUnicode.isEmpty()) { + icon = iconFromText(resolvedUnicode, this); + } + } + + QAction *action = new QAction(text, this); + if (!icon.isNull()) { + action->setIcon(icon); + } + action->setProperty("buttonDisplay", static_cast(display)); + addAction(action); + + if (!shortcut.isEmpty()) { + action->setToolTip(text + " (" + shortcut.toString(QKeySequence::NativeText) + ")"); + + if (m_fm) { + m_fm->registerShortcut( + shortcut, static_cast(ctx), + [action]() { action->trigger(); return true; }); + } + } else { + action->setToolTip(text); + } + + // Restore focus to primary view after action trigger + connect(action, &QAction::triggered, this, [this]() { + QTimer::singleShot(0, this, [this]() { + if (m_fm) + m_fm->restoreViewFocus(); + }); + }); + + return action; +} + +void PluginToolBar::actionEvent(QActionEvent *event) +{ + QToolBar::actionEvent(event); + enforceNoFocus(); +} + +void PluginToolBar::enforceNoFocus() +{ + for (QAction *action : actions()) { + QWidget *w = widgetForAction(action); + if (w) { + w->setFocusPolicy(Qt::NoFocus); + if (auto *btn = qobject_cast(w)) { + QVariant val = action->property("buttonDisplay"); + if (val.isValid()) { + auto display = static_cast(val.toInt()); + if (display == ButtonDisplay::IconOnly) { + btn->setToolButtonStyle(Qt::ToolButtonIconOnly); + } else if (display == ButtonDisplay::TextOnly) { + btn->setToolButtonStyle(Qt::ToolButtonTextOnly); + } else { + btn->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); + } + } + } + } + } +} + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/src/ScopedFindReplacePanel.cpp b/wlx/wlxbase_wlqt/src/ScopedFindReplacePanel.cpp new file mode 100644 index 0000000..d611b08 --- /dev/null +++ b/wlx/wlxbase_wlqt/src/ScopedFindReplacePanel.cpp @@ -0,0 +1,34 @@ +#include +#include + +#include +#include +#include + +namespace QtWlPlugin { + +ScopedFindReplacePanel::ScopedFindReplacePanel(FocusManager *fm, QWidget *parent) + : FindReplacePanel(fm, parent) +{ + auto *lblScope = new QLabel("Scope:", this); + m_comboScope = new QComboBox(this); + m_comboScope->setFocusPolicy(Qt::NoFocus); + + // Insert at the beginning of the options row (before checkboxes) + QHBoxLayout *row = optionsRow(); + row->insertWidget(0, lblScope); + row->insertWidget(1, m_comboScope); +} + +void ScopedFindReplacePanel::setScopes(const QStringList &scopes) +{ + m_comboScope->clear(); + m_comboScope->addItems(scopes); +} + +QString ScopedFindReplacePanel::currentScope() const +{ + return m_comboScope->currentText(); +} + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/src/SequentialRowProxyModel.cpp b/wlx/wlxbase_wlqt/src/SequentialRowProxyModel.cpp new file mode 100644 index 0000000..e6aac0f --- /dev/null +++ b/wlx/wlxbase_wlqt/src/SequentialRowProxyModel.cpp @@ -0,0 +1,22 @@ +#include + +namespace QtWlPlugin { + +SequentialRowProxyModel::SequentialRowProxyModel(QObject *parent) + : QSortFilterProxyModel(parent) +{ +} + +SequentialRowProxyModel::~SequentialRowProxyModel() +{ +} + +QVariant SequentialRowProxyModel::headerData(int section, Qt::Orientation orientation, int role) const +{ + if (orientation == Qt::Vertical && role == Qt::DisplayRole) { + return section + 1; + } + return QSortFilterProxyModel::headerData(section, orientation, role); +} + +} // namespace QtWlPlugin diff --git a/wlx/wlxbase_wlqt/src/ThemeManager.cpp b/wlx/wlxbase_wlqt/src/ThemeManager.cpp new file mode 100644 index 0000000..4c4e407 --- /dev/null +++ b/wlx/wlxbase_wlqt/src/ThemeManager.cpp @@ -0,0 +1,259 @@ +#include + +#include + +namespace QtWlPlugin { + +ThemeManager::Theme ThemeManager::s_current = ThemeManager::Light; + +void ThemeManager::applyTheme(QWidget *root, Theme theme) +{ + s_current = theme; + + if (theme == Light) { + root->setStyleSheet(QString()); + } else { + root->setStyleSheet(darkStylesheet()); + } + + // Persist + QSettings settings(QStringLiteral("QtWlPlugin"), QStringLiteral("Preferences")); + settings.setValue(QStringLiteral("theme"), theme == Dark ? QStringLiteral("dark") : QStringLiteral("light")); +} + +ThemeManager::Theme ThemeManager::currentTheme() +{ + QSettings settings(QStringLiteral("QtWlPlugin"), QStringLiteral("Preferences")); + QString val = settings.value(QStringLiteral("theme"), QStringLiteral("light")).toString(); + s_current = (val == QStringLiteral("dark")) ? Dark : Light; + return s_current; +} + +void ThemeManager::toggleTheme(QWidget *root) +{ + applyTheme(root, s_current == Light ? Dark : Light); +} + +bool ThemeManager::isDark() +{ + return s_current == Dark; +} + +QString ThemeManager::darkStylesheet() +{ + return QStringLiteral(R"( + QWidget { + background-color: #1e1e1e; + color: #d4d4d4; + selection-background-color: #264f78; + selection-color: #ffffff; + } + + QTableView { + background-color: #1e1e1e; + alternate-background-color: #252526; + gridline-color: #3c3c3c; + border: 1px solid #3c3c3c; + } + + QHeaderView::section { + background-color: #333333; + color: #d4d4d4; + border: 1px solid #3c3c3c; + padding: 3px 5px; + font-weight: bold; + } + + QHeaderView::section:hover { + background-color: #404040; + } + + QTreeView { + background-color: #252526; + alternate-background-color: #2d2d2d; + border: 1px solid #3c3c3c; + } + + QTreeView::item:selected { + background-color: #264f78; + } + + QTreeView::item:hover { + background-color: #2a2d2e; + } + + QListWidget { + background-color: #252526; + border: 1px solid #3c3c3c; + } + + QListWidget::item:selected { + background-color: #264f78; + } + + QListWidget::item:hover { + background-color: #2a2d2e; + } + + QToolBar { + background-color: #333333; + border-bottom: 1px solid #3c3c3c; + spacing: 2px; + } + + QToolBar QLabel { + color: #d4d4d4; + } + + QToolButton { + background-color: transparent; + color: #d4d4d4; + border: 1px solid transparent; + padding: 3px 6px; + border-radius: 3px; + } + + QToolButton:hover { + background-color: #404040; + border-color: #505050; + } + + QToolButton:checked { + background-color: #264f78; + border-color: #3a7bd5; + } + + QLineEdit { + background-color: #3c3c3c; + color: #d4d4d4; + border: 1px solid #555555; + padding: 2px 4px; + border-radius: 2px; + } + + QLineEdit:focus { + border-color: #007acc; + } + + QComboBox { + background-color: #3c3c3c; + color: #d4d4d4; + border: 1px solid #555555; + padding: 2px 4px; + border-radius: 2px; + } + + QComboBox::drop-down { + border-left: 1px solid #555555; + } + + QComboBox QAbstractItemView { + background-color: #252526; + color: #d4d4d4; + selection-background-color: #264f78; + } + + QMenu { + background-color: #252526; + color: #d4d4d4; + border: 1px solid #3c3c3c; + } + + QMenu::item:selected { + background-color: #264f78; + } + + QMenu::separator { + height: 1px; + background: #3c3c3c; + margin: 4px 8px; + } + + QTabWidget::pane { + border: 1px solid #3c3c3c; + background-color: #1e1e1e; + } + + QTabBar::tab { + background-color: #2d2d2d; + color: #969696; + border: 1px solid #3c3c3c; + padding: 4px 12px; + margin-right: 1px; + } + + QTabBar::tab:selected { + background-color: #1e1e1e; + color: #d4d4d4; + border-bottom-color: #1e1e1e; + } + + QTabBar::tab:hover { + background-color: #353535; + } + + QPlainTextEdit { + background-color: #1e1e1e; + color: #d4d4d4; + border: 1px solid #3c3c3c; + font-family: "Cascadia Code", "Fira Code", "Source Code Pro", monospace; + } + + QSplitter::handle { + background-color: #3c3c3c; + } + + QSplitter::handle:hover { + background-color: #007acc; + } + + QScrollBar:vertical { + background-color: #1e1e1e; + width: 12px; + border: none; + } + + QScrollBar::handle:vertical { + background-color: #424242; + min-height: 20px; + border-radius: 3px; + margin: 2px; + } + + QScrollBar::handle:vertical:hover { + background-color: #555555; + } + + QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical { + height: 0px; + } + + QScrollBar:horizontal { + background-color: #1e1e1e; + height: 12px; + border: none; + } + + QScrollBar::handle:horizontal { + background-color: #424242; + min-width: 20px; + border-radius: 3px; + margin: 2px; + } + + QScrollBar::handle:horizontal:hover { + background-color: #555555; + } + + QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal { + width: 0px; + } + + /* Status bar */ + QFrame[frameShape="5"] { + color: #555555; + } + )"); +} + +} // namespace QtWlPlugin