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 e5136ca commit 1987417Copy full SHA for 1987417
gnatcoll.gpr
@@ -252,12 +252,11 @@ project GnatColl is
252
end case;
253
254
case OS is
255
- when "unix" =>
256
- for Specification ("GNATCOLL.OS.Libc_Constants")
257
- use "gnatcoll-os-libc_constants__linux.ads";
258
- when "osx" =>
+ when "unix" | "osx" =>
259
for Specification ("GNATCOLL.OS.Libc_Constants")
260
- use "gnatcoll-os-libc_constants__osx.ads";
+ use "gnatcoll-os-libc_constants__" & OS & ".ads";
+ when "windows" =>
+ null;
261
262
end Naming;
263
src/os/unix/gnatcoll-os-libc_constants__linux.ads renamed to src/os/unix/gnatcoll-os-libc_constants__unix.ads
0 commit comments