diff options
author | Tor Lillqvist <tml@iki.fi> | 2003-06-15 23:20:14 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2003-06-15 23:20:14 +0000 |
commit | 06781ec8ad456ac09ff6d86c4844b9e11b36518b (patch) | |
tree | ffb3b6ec968e8ab7d74329e2a22a694fd6b508eb /README.win32 | |
parent | 94fed3f988660b53e196404c448a980c6b629869 (diff) |
Test where the DLLs actually are.
2003-06-15 Tor Lillqvist <tml@iki.fi>
* glib-zip.in (DLLDIR): Test where the DLLs actually are.
* README.win32: Point to FSF's binary Win32 distributions of
libiconv and gettext-runtime.
Diffstat (limited to 'README.win32')
-rw-r--r-- | README.win32 | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/README.win32 b/README.win32 index cd31e180d..d2819927d 100644 --- a/README.win32 +++ b/README.win32 @@ -72,17 +72,19 @@ Building GLib Again, first decide whether you really want to do this. -Before building GLib you must also have the libiconv library, either -from the same website mentioned above, or from it's homepage at -http://clisp.cons.org/~haible/packages-libiconv.html. Libiconv has -makefiles for building with MS Visual C only, but as it is one source -file only, building it "by hand" with gcc isn't hard. +Before building GLib you must also have the libiconv library and GNU +gettext. Get prebuilt binaries of libiconv (1.9.1 or newer), and +gettext-runtime (0.12.1 or newer) from your nearest GNU ftp mirror. If +you use gcc, you will also have to edit the libintl.h file from +gettext a tiny bit: Change the -You must also have the "intl" library from GNU tettext 0.10.40 (or -later). Get a prebuilt version from the website mentioned above. +# if __GNUC__ >= 2 && !defined __APPLE_CC__ && (defined __STDC__ || defined __cplusplus) -Edit the correct paths to those libraries in build/win32/module.defs -as appropriate. +line to + +# if __GNUC__ >= 2 && !defined __APPLE_CC__ && !defined __MINGW32__ && (defined __STDC__ || defined __cplusplus) + +around line 102. Where are the makefiles? ======================== |