Sun, 30 Nov 2025 10:14:33 +0100
run compiler detection before trying to correct libdir + check TOOLCHAIN_WSIZE before setting 64bit libdir
package de.unixwork.uwproj; import org.w3c.dom.Element; public class PkgConfigPackage { private final String id; private final String name; private final String atleast; private final String exact; private final String max; public PkgConfigPackage(Element e) { name = Util.getContent(e); id = Util.shId(name); atleast = e.getAttribute("atleast"); exact = e.getAttribute("exact"); max = e.getAttribute("max"); } public String getId() { return id; } public String getName() { return name; } public String getAtleast() { return atleast; } public String getMax() { return max; } public String getExact() { return exact; } }