* README.win32: Update gcc instructions. Remove warning about gettext being GPL, as the GIMP is GPL, too, of course, and it thus doesn't matter. * user_install.bat: Rename the template user gtkrc to gtkrc_user, to reduce user confusion. * app/main.c: Small change for gcc on Win32 compilation. * */makefile.cygwin * app/module_db.c: With newest gcc-2.95 -fnative-struct on Win32, no need to have differently named DLLs (including modules) for (built by) gcc and MSVC. * app/module_db.c: Use g_strdup_printf() instead of strlen(), g_malloc() and g_snprintf() * libgimp/Makefile.am: No need to distribute gimpfeatures.h.win32, the suitable gimpfeatures.h is built when making the dist. * libgimp/gimpfeatures.h.win32: Removed. * libgimp/makefile.cygwin * libgimp/makefile.msc: Remove gimpfeatures.h.win32. * libgimp/gimp.h: Win32 startup code changed a bit. * plug-ins/makefile.cygwin * plug-ins/makefile.msc: Add the winsnap unofficial plug-in. * plug-ins/common/animationplay.c * plug-ins/common/gz.c: (Win32) Hack aroung WinMain getting clashing declarations because these guys include gdkx.h (which includes windows.h), and gimp.h also declares WinMain on its own.
31 lines
1.4 KiB
Text
31 lines
1.4 KiB
Text
This is an unstable version of the GIMP, intended for developers
|
|
only. Even more so the Win32 port.
|
|
|
|
For more information about the port or GLib, GTk+ and the GIMP to
|
|
native Windows, and pre-built binary packages, see
|
|
http://www.iki.fi/tml/gimp/win32/ or
|
|
http://www.gimp.org/~tml/gimp/win32/
|
|
|
|
To build the GIMP on Win32, you can use either the Microsoft compiler
|
|
or gcc without the produced executables depending on the cygwin dll
|
|
(gcc -mno-cygwin). For more information about the preparation
|
|
necessary for building with gcc, what version you want and where to
|
|
get it, etc, read README.win32 in the GLib 1.3 distribution.
|
|
|
|
The GIMP wants to be built with the GNU gettext library for
|
|
internationalisation (i18n). Get the version ported to Win32 (not a
|
|
very big deal) from tml's web site mentioned above. If you don't want
|
|
any i18n stuff, undefine ENABLE_NLS in the config.h.win32 file, and
|
|
remove references to the gnu-intl library from the makefiles.
|
|
|
|
First, build in the libgimp directory, then in tools/gcg, then in app,
|
|
plug-ins, and finally in modules. Check the makefile.msc or
|
|
makefile.cygwin files in said directories.
|
|
|
|
The current build setup for Windows is a mess, with complex
|
|
hand-maintained makefiles. I know. Adding parallel makefiles for gcc
|
|
didn't make it any cleaner. On the other hand, I don't think using the
|
|
Unix style configuration mechanism (under cygwin) is quite feasible,
|
|
either.
|
|
|
|
--Tor Lillqvist <tml@iki.fi>
|