summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* osproc fix for AndroidYuriy Glukhov2016-01-041-2/+2
|
* Merge pull request #3667 from yglukhov/fix-lineinfo-gettypeAndreas Rumpf2016-01-011-8/+8
|\ | | | | Fixed lineinfo in getType
| * Fixed lineinfo in getTypeYuriy Glukhov2015-12-251-8/+8
| |
* | new db_sqlite requires deadCodeElim:on because not every sqlite3_column_nameAndreas Rumpf2015-12-292-7/+2
| |
* | do not print spurious warnings when dlopen fails; can be re-enabled with ↵Andreas Rumpf2015-12-291-3/+4
| | | | | | | | -d:nimDebugDlOpen
* | Merge branch 'devel' of github.com:nim-lang/Nim into develDominik Picheta2015-12-292-3/+3
|\ \
| * \ Merge pull request #3663 from def-/netbsd-fixDominik Picheta2015-12-251-2/+2
| |\ \ | | | | | | | | Fix osproc compilation on NetBSD, use workaround for missing execvpe
| | * | Fix osproc compilation on NetBSD, use workaround for missing execvpedef2015-12-231-2/+2
| | | |
| * | | Merge pull request #3662 from def-/openbsd-fixDominik Picheta2015-12-241-1/+1
| |\ \ \ | | |_|/ | |/| | Fix nativesockets compilation on OpenBSD
| | * | Fix nativesockets compilation on OpenBSD and NetBSDdef2015-12-231-1/+1
| | |/
* | / Fixes incorrect Host header when using httpclient with proxy.Dominik Picheta2015-12-291-5/+5
|/ /
* | Task proc in nimscript module will now export the proc it creates.Dominik Picheta2015-12-241-1/+1
| |
* | Merge pull request #3666 from trustable-code/PR10Andreas Rumpf2015-12-242-4/+20
|\ \ | |/ |/| Fix multimethods issue #3550
| * fix issue #3550trustable-code2015-12-242-4/+20
|/
* Merge pull request #3651 from jangko/vm_'excl'Andreas Rumpf2015-12-212-1/+28
|\ | | | | fixed compile time `excl ` cause SIGSEGV #3639
| * fixed compile time `excl ` cause SIGSEGV #3639jangko2015-12-172-1/+28
| |
* | Merge pull request #3654 from jangko/vm_uinttouint64convAndreas Rumpf2015-12-212-1/+85
|\ \ | | | | | | fixed #2514 unable to echo uint8-32 at compile time
| * | fixed VM touint conversion #2514jangko2015-12-192-1/+85
| |/
* | Merge pull request #3657 from oderwat/fix-excl-regressionAndreas Rumpf2015-12-211-1/+1
|\ \ | | | | | | Fix regression in set.excl code generation.
| * | Fix regression in set.excl code generation.Hans Raaf2015-12-211-1/+1
|/ /
* | profiling doesn't require call to enableProfilingAndreas Rumpf2015-12-181-0/+1
| |
* | modified the integrated profiler to hopefully produce more reliable resultsAndreas Rumpf2015-12-182-28/+35
| |
* | implements column information retrival for db_sqliteAndreas Rumpf2015-12-171-0/+33
| |
* | fixes InstantRow decl; implements column information retrival for db_mysqlAndreas Rumpf2015-12-171-5/+88
| |
* | added column_table_name procAndreas Rumpf2015-12-171-0/+2
| |
* | added more column information fieldsAndreas Rumpf2015-12-171-1/+6
| |
* | Merge pull request #3653 from oderwat/mysql-fields-sizeof-fixAndreas Rumpf2015-12-171-0/+1
|\ \ | |/ |/| Fixing mysql_field.
| * Fixing mysql_field.Hans Raaf2015-12-171-0/+1
|/ | | | FIELD had the wrong size which made mysql.fetch_fields() useless.
* updated db*.nim modulesAndreas Rumpf2015-12-164-53/+36
|
* big update for the db*.nim modules; uses new db_common.nimAndreas Rumpf2015-12-164-143/+188
|
* Merge pull request #3635 from jlp765/odbcsql1Andreas Rumpf2015-12-162-1/+517
|\ | | | | odbcsql.nim and db_odbc.nim
| * add SQLErr (mapped to SQLError in odbc lib)JamesP2015-12-091-1/+37
| | | | | | | | | | | | Add some SQLGetInfo consts Fix SQLSetEnvAttr parameter
| * add db_odbc library moduleJamesP2015-12-091-0/+480
| |
* | Merge pull request #3649 from yglukhov/nil-seq-copyDominik Picheta2015-12-161-7/+12
|\ \ | | | | | | Fixed copying of nil seq in JS
| * | Fixed copying of nil seq in JSYuriy Glukhov2015-12-161-7/+12
| | |
* | | Merge pull request #3647 from rbehrends/fix-tnimtypeAndreas Rumpf2015-12-162-9/+15
|\ \ \ | |/ / |/| | Fix code generation issues with TNimType.
| * | Fix code generation issues with TNimType.Reimer Behrends2015-12-152-9/+15
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is an alternative attempt to fix issue #2841 in a way that does not rely on non-standard C compiler behavior. The underlying problem is that the typeinfo module includes system/hti.nim, but system/hti.nim is also included by system.nim. The result is that the compiler at any given point has two instances of TNimType with the same external name and will generate code either for one or both of them. Code generation for the second version is normally suppressed by using {.importc.}, but that results in a missing type declaration for modules that only use the second version. This happens for modules that import typeinfo, because the the second component of typeinfo.Any has type PNimType = ptr TNimType, which generates a "TNimType *" struct member. The previous solution was to have a typedef for TNimType in nimbase.h; however, this results in duplicate typedefs (specifically, but not only for the code generated for typeinfo.nim). Duplicate typedefs with the same type name are allowed in C++ and C11, but are explicitly forbidden in C89 and C99. Modern versions of gcc and clang accept them anyway, but this is not standard-compliant and may break for other C compilers or older versions of gcc and clang. This patch attempts to fix the issue by making the second component of typeinfo.Nim a pointer instead of a PNimType and casting back and forth as needed. Thus, the second version of TNimType occurs only within the code for typeinfo.nim, where it can be safely omitted.
* | disabled appveyor tests since they die with a timeoutAndreas Rumpf2015-12-151-36/+0
| |
* | fixes a critical bug concerning a[^1] rewritingsAndreas Rumpf2015-12-141-1/+1
| |
* | Merge pull request #3641 from qio-io/patch-1Dominik Picheta2015-12-141-5/+5
|\ \ | | | | | | Explicit socket close, and importing the net module
| * | Fixing too many open files on quit command with an explicit socket close, ↵qio-io2015-12-131-5/+5
|/ / | | | | | | and importing the net module
* | Merge pull request #3638 from yglukhov/patch-2Andreas Rumpf2015-12-101-0/+14
|\ \ | |/ |/| Added a few notes regarding JavaScript
| * Added a few notes regarding JavaScriptYuriy Glukhov2015-12-091-0/+14
|/
* Merge pull request #3631 from yglukhov/getaddrinfo-androidDominik Picheta2015-12-081-1/+2
|\ | | | | Fixed getAddrInfo on android
| * Fixed getAddrInfo on androidYuriy Glukhov2015-12-081-1/+2
|/
* Merge pull request #3627 from xiongxin/develDennis Felsing2015-12-071-1/+1
|\ | | | | 7 div 5 == 1
| * 7 div 5 == 1xiongxin2015-12-081-1/+1
|/ | | 7 div 5 == 1
* fixes #3622Andreas Rumpf2015-12-044-6/+7
|
* Merge pull request #3570 from juanfra684/patch-1Dominik Picheta2015-12-041-1/+3
|\ | | | | OpenBSD doesn't support AI_V4MAPPED
| * OpenBSD doesn't support AI_V4MAPPEDJuan Francisco Cantero Hurtado2015-11-231-1/+3
| | | | | | Related to #3534