summary refs log tree commit diff stats
path: root/lib/deprecated
Commit message (Collapse)AuthorAgeFilesLines
* remove deprecated modules (#10215)Miran2019-01-076-386/+6
| | | | | | | | | | | | | | | | | | * removed from `compiler`: * lists (deprecated 2 years ago) * removed from `lib` (all deprecated 3 years ago): * ssl * matchers * httpserver * removed from `lib/deprecated`: * unsigned * actors (and three accompanying tests) * parseurl * moved to `lib/deprecated`: * securehash (the reason for not directly removing - it was deprecated (only) one year ago)
* Merge remote-tracking branch 'upstream/devel' into record-caseNeelesh Chandola2018-12-131-4/+0
|\
| * Give error when case has an else branch even though all cases are already ↵Neelesh Chandola2018-12-131-4/+0
| | | | | | | | | | | | | | | | | | covered (#9930) * Give error when case has an else branch even though all cases are already covered. * Don't check for invalid else for type tyFloat..tyFloat128, tyString, tyError * Remove unnecessary else in unittest.nim * Fix sockets.nim
* | Fix ftpclient.nimNeelesh Chandola2018-12-131-1/+0
|/
* Fixes #9671 (#9750)Randy Smith2018-11-191-0/+21
|
* removes deprecated T/P typesAraq2018-11-165-22/+0
|
* stdlib: documenation updates, the exception names have been changedAndreas Rumpf2018-10-252-19/+19
|
* Convert *_family fields to cushortLemonBoy2018-09-191-9/+9
| | | | Fixes #9008
* Merge branch 'devel' into araq-miscAndreas Rumpf2018-08-161-0/+2
|\
| * Haiku support for Nim (#8542)alaviss2018-08-141-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * posix_other: Haiku now has spawn.h This is added per https://dev.haiku-os.org/ticket/13446 * posix_other: Add Haiku specific Dirent members * cpuinfo: Add an implementation for Haiku * distros: Add basic Haiku support * encodings: update Haiku support * fenv, math: Haiku now provides libm * times: Add Haiku struct members * ansi_c, osalloc: Add Haiku constants * threads: Add Haiku support * testament: Haiku uses LIBRARY_PATH * nim.cfg: Update Haiku support libnetwork should only be linked if network functions are used * threads: Haiku does not support -pthread switch * tworkingdir: Haiku's env is in /bin * posix_other: add SIGKILLTHR for Haiku * sockets: link with libnetwork on Haiku * coro: correct ucontext.h location http://pubs.opengroup.org/onlinepubs/009696699/basedefs/ucontext.h.html * coro: ucontext backend is not available on Haiku Haiku doesn't provide the <ucontext.h> header, as it was removed from POSIX * coro: fix setjmp backend The compiler does not allow statements after a noreturn function * nativesockets: Haiku doesn't support AI_V4MAPPED * system: hostOS can contains "haiku" * os: add support for Haiku's packagefs packagefs is read-only, but there are writable holes to the underlying file system as well * os: update constant for Haiku
* | fixes more nil handling regressionsAraq2018-08-131-2/+1
|/
* Fix undefined PObject referenceJoey Yakimowich-Payne2018-07-121-1/+1
|
* remove deprecated stuff from the stdlib; introduce better deprecation warningsAraq2018-05-051-1/+1
|
* remove dead code elimination option (#7669)Jacek Sieka2018-04-231-1/+1
|
* Change type of `Timeval.tv_sec` to `posix.Time` (#7646)Oscar Nihlgård2018-04-182-6/+14
|
* Trim remaining expr/stmt from stdlib (#6742)Lynn C. Rees2017-11-151-2/+2
|
* make tests green againAndreas Rumpf2017-11-021-1/+1
|
* make tests green againAndreas Rumpf2017-10-291-2/+2
|
* more replacements for the deprecated '<'Andreas Rumpf2017-10-291-3/+3
|
* Fix compilation of the deprecated sockets module hackishly.Dominik Picheta2017-08-111-2/+4
|
* Remove expr/stmt (#5857)Arne Döring2017-07-251-17/+16
|
* Posix from detect (#5697)Jacek Sieka2017-04-121-1/+1
| | | | | | | | | | * refactor posix.nim * types move to separate files for platform-specifc and generic ("other') * consts move to separate files that get autogenerated by detect.nim * proc's stay where they are for now, though in a second stage might move as well * fix missing when
* make tests green againAndreas Rumpf2016-08-231-2/+2
|
* Added 'android4' define support that declares a different gethostbyaddr. ↵Ruslan Mustakov2016-06-221-2/+7
| | | | Fixes #4376
* Define ports as uint16s to fix #3484Josep Sanjuas2016-03-271-2/+14
|
* Revert two deprecation changesdef2016-01-261-1/+1
|
* Fix a few deprecation warningsdef2016-01-252-3/+2
|
* docs now build againAraq2015-10-121-178/+0
|
* Rename rawsockets module to nativesocketsAdam Strzelecki2015-10-033-3/+17
| | | | | | | | | | This change was done to avoid confusion with TCP/IP raw sockets. Native sockets module represents handling native system low level socket API in general and is not just limited anyhow to TCP/IP raw sockets. A stub lib/deprecated/pure/rawsockets.nim module has been added as compatibility layer for old code using rawsockets, so this change will not break existing code.
* Move deprecated modules into lib/deprecated/Adam Strzelecki2015-09-308-0/+3679
This gives clear indication what modules are now deprecated and reduce clutter in non-deprecated module directories.