Just check for nimdistros instead of adding an additional define.
This commit is contained in:
parent
fcbb3de783
commit
b629048249
4 changed files with 2 additions and 6 deletions
|
|
@ -22,7 +22,7 @@ srcDir = "src"
|
|||
|
||||
requires "nim >= 0.13.0", "compiler#head"
|
||||
|
||||
when defined(nimbledistros):
|
||||
when defined(nimdistros):
|
||||
import distros
|
||||
if detectOs(Ubuntu):
|
||||
foreignDep "libssl-dev"
|
||||
|
|
|
|||
|
|
@ -590,7 +590,7 @@ As an example, to specify a dependency on openssl you may put this in your
|
|||
.nimble file:
|
||||
|
||||
```nim
|
||||
when defined(nimbledistros):
|
||||
when defined(nimdistros):
|
||||
import distros
|
||||
if detectOs(Ubuntu):
|
||||
foreignDep "libssl-dev"
|
||||
|
|
|
|||
|
|
@ -22,9 +22,6 @@ var
|
|||
foreignDeps*: seq[string] = @[] ## The foreign dependencies. Only
|
||||
## exported for 'distros.nim'.
|
||||
|
||||
when defined(nimdistros) and defined(nimblesupportsdistros):
|
||||
const nimbledistros = true
|
||||
|
||||
proc requires*(deps: varargs[string]) =
|
||||
## Call this to set the list of requirements of your Nimble
|
||||
## package.
|
||||
|
|
|
|||
|
|
@ -241,7 +241,6 @@ proc execScript(scriptName: string, flags: StringTableRef,
|
|||
defineSymbol("nimscript")
|
||||
defineSymbol("nimconfig")
|
||||
defineSymbol("nimble")
|
||||
defineSymbol("nimblesupportsdistros")
|
||||
registerPass(semPass)
|
||||
registerPass(evalPass)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue