File: known-problems-13

package info (click to toggle)
libgnatcoll 1.7gpl2015-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 17,280 kB
  • ctags: 1,124
  • sloc: ada: 134,072; python: 4,017; cpp: 1,397; ansic: 1,234; makefile: 368; sh: 152; xml: 31; sql: 6
file content (79 lines) | stat: -rw-r--r-- 2,966 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
==============================
Known Problems in Gnatcoll 1.3
==============================

Copyright (C) 2011, AdaCore

KP-13-KB03-030 Quoted-printable encoding inserts extra spaces

  Problem:    When encoding a long string (not an email header) into
              quoted-printable (see GNATCOLL.Email.Utils), extra white
              spaces are inserted. Instead, they should be soft line breaks
              ("=" & ASCII.LF).

  Status:     This was fixed in 1.4 on 2011-11-08

  Workaround: Use Base64-encoding instead.

KP-13-KA25-034 Parameter mismatch in GNATCOLL.Traces.Log

  Problem:    The call to Post_Decorator is performed in the wrong order,
              using Message/Location/Entity instead of Location/Entity/Message

  Status:     This was fixed in 1.4 on 2011-10-26

  Workaround: Modify the call to Post_Decorator in gnatcoll-traces.adb.

KP-13-KA04-041 GNATCOLL.SQL.Postgres.Gnade no longer private

  Problem:    This package was marked as private, preventing users from
              using this low-level API in their own application, and thus
              making it more difficult to do a transition to the higher
              level API for existing applications.

  Status:     This was fixed in 1.4 on 2011-10-06

  Workaround: Remove the "private" keyword in the specs of this package,
              and recompile gnatcoll.

KP-13-K712-015 GNATCOLL.Projects.Register_New_Attribute has no effect

  Problem:    If this procedure is called before any project has been
              loaded, it has no effect (the newly created package is
              simply ignored by the project manager).

  Status:     This was fixed in 1.4 on 2011-08-24

  Workaround: First load a project (for instance an empty one), then
              register the new attribute, and finally load your actual
              project.

KP-13-K304-032 Configure does not detect postgreSQL on Mac OS X

  Problem:    Configure fails to detect postgreSQL on Mac OS X.

  Status:     This was fixed in 1.4 on 2011-03-07

  Workaround: After running configure, manually edit gnatcoll_shared.gpr
              and change the variables Postgres_dir and Postgres.

KP-13-K303-032 Configure doesn't find gmp.h

  Problem:    If the GMP library is installed in a non-standard directory,
              configure doesn't match to properly detect it.

  Status:     This was fixed in 1.4 on 2011-03-03

  Workaround: Make sure that gmp.h can be found by the C compiler.

KP-13-K302-015 Gnatcoll.projects and separate units

  Problem:    The information returned by Info does not distinguish between
              bodies and separate units.

  Status:     This was fixed in 1.4 on 2011-03-07

  Workaround: Most of the time, it is safe to treat separates as bodies,
              except when you need to compile them, since the compiler will
              always return an error for separates. You should be prepared
              to handle such errors in your application.