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 5e612e4 commit c56c77aCopy full SHA for c56c77a
gnatcoll.gpr
@@ -289,12 +289,9 @@ project GnatColl is
289
end case;
290
291
case OS is
292
- when "unix" =>
293
- for Specification ("GNATCOLL.OS.Libc_Constants")
294
- use "gnatcoll-os-libc_constants__linux.ads";
295
- when "osx" =>
+ when "unix" | "osx" =>
296
for Specification ("GNATCOLL.OS.Libc_Constants")
297
- use "gnatcoll-os-libc_constants__osx.ads";
+ use "gnatcoll-os-libc_constants__" & OS & ".ads";
298
when "windows" =>
299
null;
300
src/os/unix/gnatcoll-os-libc_constants__linux.ads renamed to src/os/unix/gnatcoll-os-libc_constants__unix.ads
0 commit comments