diff options
Diffstat (limited to 'lib/newwrap')
-rwxr-xr-x | lib/newwrap/libcurl.nim | 2 | ||||
-rwxr-xr-x | lib/newwrap/postgres.nim | 2 | ||||
-rwxr-xr-x | lib/newwrap/tcl.nim | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/lib/newwrap/libcurl.nim b/lib/newwrap/libcurl.nim index 38e76a033..875f1cbc8 100755 --- a/lib/newwrap/libcurl.nim +++ b/lib/newwrap/libcurl.nim @@ -16,6 +16,8 @@ # website for this. # +{.deadCodeElim: on.} + import times diff --git a/lib/newwrap/postgres.nim b/lib/newwrap/postgres.nim index cdb4a7283..84e7d5abc 100755 --- a/lib/newwrap/postgres.nim +++ b/lib/newwrap/postgres.nim @@ -6,6 +6,8 @@ # connection-protocol. # +{.deadCodeElim: on.} + when defined(windows): const dllName = "pq.dll" diff --git a/lib/newwrap/tcl.nim b/lib/newwrap/tcl.nim index c7be03cdb..f2ecf558d 100755 --- a/lib/newwrap/tcl.nim +++ b/lib/newwrap/tcl.nim @@ -32,6 +32,8 @@ # *********************************************************************** # +{.deadCodeElim: on.} + when defined(WIN32): const dllName = "tcl(85|84|83|82|81|80).dll" |