POSIX.1 National Language Support API for MinGW
リビジョン | dd0c830c8583dcf5442977a2f89d0a4279a21386 (tree) |
---|---|
日時 | 2008-01-10 07:13:58 |
作者 | Keith Marshall <keithmarshall@user...> |
コミッター | Keith Marshall |
* README: Some minor wording improvements. Update copyright notice to include new year. Add additional notes regarding deployment of the pre-compiled development kit.
@@ -1,5 +1,12 @@ | ||
1 | 1 | 2008-01-09 Keith Marshall <keithmarshall@users.sourceforge.net> |
2 | 2 | |
3 | + * README: Some minor wording improvements. | |
4 | + Update copyright notice to include new year. | |
5 | + Add additional notes regarding deployment of the pre-compiled | |
6 | + development kit. | |
7 | + | |
8 | +2008-01-09 Keith Marshall <keithmarshall@users.sourceforge.net> | |
9 | + | |
3 | 10 | Retain `.exe' file name extension, if present, in program identity |
4 | 11 | banner displayed by `-help' and `-version' options. |
5 | 12 |
@@ -1,10 +1,10 @@ | ||
1 | 1 | MinGW catgets README |
2 | 2 | $Id$ |
3 | 3 | |
4 | -Copyright (C) 2007, Keith Marshall | |
4 | +Copyright (C) 2007, 2008, Keith Marshall | |
5 | 5 | |
6 | 6 | Written by Keith Marshall <keithmarshall@users.sourceforge.net> |
7 | -Last modification: 20-Dec-2007 | |
7 | +Last modification: 09-Jan-2008 | |
8 | 8 | |
9 | 9 | This package provides a native Win32 implementation of the POSIX National |
10 | 10 | Language Support API, conforming generally to IEEE standard 1003.1-2001, |
@@ -15,7 +15,7 @@ import library for dynamic linking, with supporting nl_types.h header file, | ||
15 | 15 | delivering Win32 implementations of the catopen(), catgets() and catclose() |
16 | 16 | functions, as required by the POSIX National Language Support API; this is |
17 | 17 | accompanied by a suitable, standards conformant `gencat' utility program, |
18 | -which is used to generate the message catalogue files, which are bound to | |
18 | +which is used to generate the message catalogue files for deployment with | |
19 | 19 | user applications making use of these library functions. |
20 | 20 | |
21 | 21 | The MinGW catgets package is free software It is provided AS IS, in the |
@@ -53,6 +53,19 @@ full text of this README file is included with each):-- | ||
53 | 53 | the `-lcatgets' option, specified *after* the dependent object modules, |
54 | 54 | on the linking command line. |
55 | 55 | |
56 | + Note that this development kit is specifically intended for native use | |
57 | + on a Win32 platform. To deploy it, you must also have libiconv-2.dll, | |
58 | + installed in a directory named in your $PATH; you may build this from | |
59 | + the mingwPORT, as noted in the following section, `Prerequisites for | |
60 | + Building from Source', or you may download a precompiled version from | |
61 | + the `MSYS Supplementary Tools' collection, on the MinGW download page | |
62 | + on Sourceforge. | |
63 | + | |
64 | + If you wish to develop `catgets' dependent MinGW applications, using | |
65 | + a cross-compiler suite hosted on a non-Win32 platform, then you can | |
66 | + not use this development kit; you should install the requisite tools | |
67 | + as described in the later section, `Building for Cross-Hosted Use'. | |
68 | + | |
56 | 69 | 3) mingw-catgets-<version>-src.tar.gz |
57 | 70 | |
58 | 71 | Provides the full source code from which the above two packages have |
@@ -220,8 +233,7 @@ chain, (which is identified by the prefix `i586-mingw32'):-- | ||
220 | 233 | been initiated in the cross-build subdirectory... |
221 | 234 | |
222 | 235 | cd cross-build |
223 | - make | |
224 | - make bindist | |
236 | + make && make bindist devdist | |
225 | 237 | |
226 | 238 | |
227 | 239 | Linking MinGW Applications to use Message Catalogues |