Skip to content

Commit

Permalink
Restore lost variable in gnoga
Browse files Browse the repository at this point in the history
  • Loading branch information
mosteo committed May 30, 2024
1 parent 717cf5b commit 124a41d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
5 changes: 5 additions & 0 deletions index/gn/gnoga/gnoga-2.1.2.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ gnat = ">=2021 | (>=12 & <2000)"
simple_components = "^4.62.0"
uxstrings = "~0.4.0+alpha-20220803"

[gpr-set-externals.'case(os)']
linux = { PRJ_TARGET = "Linux" }
windows = { PRJ_TARGET = "Windows" }
macos = { PRJ_TARGET = "OSX" }

[origin]
commit = "5f127c56986a7a1a562b405d7934eabf8e624c25"
url = "git+https://github.com/Blady-Com/gnoga.git"
Expand Down
20 changes: 7 additions & 13 deletions index/si/simple_components/simple_components-4.68.0.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,15 @@ Target_OS = ["Windows", "Windows_NT", "Linux", "UNIX", "OSX", "FreeBSD", "auto"]
Tasking = ["Multiple", "Single"] # Default Multiple
Traced_Objects = ["Off", "On"] # Default Off

[gpr-set-externals."case(os)".freebsd]
Target_OS = "FreeBSD"
[gpr-set-externals."case(os)".linux]
Target_OS = "Linux"
odbc = "unixODBC"
[gpr-set-externals."case(os)".macos]
Target_OS = "OSX"
[gpr-set-externals."case(os)".windows]
Target_OS = "Windows"
odbc = "ODBC32"
[gpr-set-externals."case(os)"]
freebsd = { Target_OS = "FreeBSD" }
linux = { Target_OS = "Linux", odbc = "unixODBC" }
macos = { Target_OS = "OSX" }
windows = { Target_OS = "Windows", odbc = "ODBC32" }

[gpr-set-externals."case(word-size)".bits-32]
arch = "i686"
[gpr-set-externals."case(word-size)".bits-64]
arch = "x86_64"
bits-32 = { arch = "i686" }
bits-64 = { arch = "x86_64" }

[origin]
commit = "da9b0f3a3d56a2e60490fa5f23ca510862c252cd"
Expand Down

0 comments on commit 124a41d

Please sign in to comment.