~ubuntu-branches/ubuntu/natty/libgpg-error/natty

« back to all changes in this revision

Viewing changes to README

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Meurer
  • Date: 2010-12-16 12:55:05 UTC
  • mfrom: (1.1.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: james.westby@ubuntu.com-20101216125505-zmdtr4zdfnwu5pox
Tags: 1.10-0.1
* Non-maintainer upload.
* New upstream release 1.10. (Closes: #554234)
* Upload to experimental due to squeeze deep freeze
* Add debian/watch file.
* debian/control:
  + Move source package to section libs.
  + Add misc Depends for debhelper.
  + Update short description for libgpg-error-dev
  + Bump standards-version to 3.9.1, no changes required
  + Add Homepage header
  + Set Priority=standard for source package
* debian/rules:
  + Remove unused dpatch patch system implementation and patches
  + Remove unneeded 'chmod +x configure' from configure-stamp target
  + Move libgpg-error0 library to /lib. (Closes: #604945)
  + Fix targets to always depend on target-stamp, add install-stamp
  + Remove '-V 'libgpg-error0 (>= 1.6-1)'' from dh_makeshlibs
* move debian/doc to debian/libgpg-error0.doc:
  + ship NEWS and README in library package, not in dev package
* debian/libgpg-error-dev.install:
  + don't install unavailable libgpg-error.a
* debian/gpg-error(-config).1:
  + Fix manpages, thanks to lintian
* debian/copyright:
  + refer to versioned LGPL 2.1, thanks to lintian

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
 
75
75
   Now check that this checksum is _exactly_ the same as the one
76
76
   published via the announcement list and probably via Usenet.
 
77
 
 
78
 
 
79
Hints
 
80
-----
 
81
 
 
82
To build for Windows you you may use the convenience command:
 
83
 
 
84
   ./autogen.sh --build-w32
 
85
 
 
86
which runs configure with suitable options.  For WindowsCE the command
 
87
is:
 
88
 
 
89
   ./autogen.sh --build-w32ce
 
90
 
 
91
 
 
92
Known Problems
 
93
--------------
 
94
 
 
95
On Windows, WSA Error Codes can be provided as system error codes and
 
96
will be transparently converted to the corresponding gpg error codes.
 
97
There are two problems with this support:
 
98
 
 
99
* Not all error codes corresponding to WSA Error codes have a detailed
 
100
  description when printed with gpg_strerror.  Some will default to
 
101
  "Unknown error" for pretty printing.  For example, WSAEHOSTDOWN will
 
102
  be translated to GPG_ERR_EHOSTDOWN, but there is no corresponding
 
103
  EHOSTDOWN in Windows and thus gpg_strerror will default to "Unknown
 
104
  error" as printed by the system's strerror function for the argument
 
105
  WSAEHOSTDOWN.  (This could be fixed by adding our own error strings
 
106
  replacing or extending the system error strings, including their
 
107
  translations).
 
108
 
 
109
* The translation to a gpg error code and back to a system error code
 
110
  in some cases does not preserve information.  For example, the error code
 
111
  WSAEACCES translates to GPG_ERR_EACCES, which translates back to
 
112
  EACCES.
 
113
 
 
114
Any WSA Error code has either the first problem or the second (but not
 
115
both), depending on if there is a corresponding Windows error code.