We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7693898 commit 0e8be5cCopy full SHA for 0e8be5c
gnatcoll.gpr
@@ -256,12 +256,9 @@ project GnatColl is
256
end case;
257
258
case OS is
259
- when "unix" =>
260
- for Specification ("GNATCOLL.OS.Libc_Constants")
261
- use "gnatcoll-os-libc_constants__linux.ads";
262
- when "osx" =>
+ when "unix" | "osx" =>
263
for Specification ("GNATCOLL.OS.Libc_Constants")
264
- use "gnatcoll-os-libc_constants__osx.ads";
+ use "gnatcoll-os-libc_constants__" & OS & ".ads";
265
when "windows" =>
266
null;
267
src/os/unix/gnatcoll-os-libc_constants__linux.ads renamed to src/os/unix/gnatcoll-os-libc_constants__unix.ads
0 commit comments