2003-06-01 05:51:21 +08:00
|
|
|
For pre-built binary packages of GLib, GTK etc, see
|
|
|
|
http://www.gimp.org/win32/downloads.html . No pre-built GIMP 1.3
|
|
|
|
packages, though.
|
1999-03-08 00:24:44 +08:00
|
|
|
|
2003-06-01 05:49:30 +08:00
|
|
|
Building GIMP on Win32
|
|
|
|
======================
|
1999-03-08 00:24:44 +08:00
|
|
|
|
2003-06-01 05:49:30 +08:00
|
|
|
There are two ways to build GIMP for Win32:
|
2000-08-25 01:53:43 +08:00
|
|
|
|
2003-06-01 05:49:30 +08:00
|
|
|
1) Use the autoconf-generated configure script, and the resulting
|
|
|
|
Makefiles (which use libtool and gcc to do the compilation). I use
|
|
|
|
this myself, but it might be hell to setup correctly. Doesn't work
|
|
|
|
correctly in all directories, for instance in the po* directories it
|
|
|
|
is much easier to use the makefile.mingw files.
|
1999-08-16 12:59:48 +08:00
|
|
|
|
2003-06-01 05:49:30 +08:00
|
|
|
2) Use the Microsoft compiler, cl and Make, nmake. Say nmake -f
|
|
|
|
makefile.msc in various directories. These makefiles are maintained by
|
|
|
|
Hans Breuer <hans@breuer.org>. They presumably will not generate the
|
|
|
|
same name DLLs and import libraries as the autoconfiscated libtool
|
|
|
|
build does, nor necesarily use the same named GLib, GTK etc import
|
|
|
|
libraries as those distributed from the web site mentioned above.
|
Win32 portability changes:
* config.h.win32, README.win32: Small changes.
* tools/pdbgen/pdb/*.pdb: Include <string.h>.
* app/*_cmds.c: Autogenerated files reflect above changes.
* libgimp/makefile.msc app/makefile.msc: Various updates,
including new object files. Gtk+ directory now should be called
gtk+ (not gtk-plus). Use win32-specific gdk subdir. Glib directory
now should be called just glib.
* libgimp/gimp.def: Updates.
* libgimp/gimpfeatures.h.win32: Made current with
gimpfeatures.h.in.
* libgimp/gimpfileselection.c: Define S_ISDIR and S_ISREG if
necessary.
* tools/pdbgen/pdb/fileops.pdb: Must have a
statement (even an empty one) after a label.
* app/fileops_cmds.c: Autogenerated file reflects above changes.
* app/crop.c: Include <string.h>.
* app/{app_procs,batch,fileops,datafiles,errorconsole,general,
plug_in,temp_buf,tile_swap}.c: Test NATIVE_WIN32, not
_MSC_VER. (NATIVE_WIN32 means we are using the Microsoft C
runtime, even if we might be compiling with gcc.)
* app/fileops.c: Don't include <process.h> here.
* app/fileops.h: Do include <process.h> here.
* app/gimpparasite.c: Include config.h, guard inclusion of
<unistd.h>. (Is the inclusion of unistd.h in source files all over
the place really necessary?)
* app/ink.c: MSC doesn't handle conversion from unsigned __int64
to double, so cast to signed.
* app/lut_funcs.c: Include config.h, and define rint() if necessary.
* app/pixel_processor.c: Include config.h without "..", like in
all the other places. Include <string.h>
* app/text_tool.c: Guard the "POINTS" identifier that clashes with
<windows.h>, sigh.
1999-05-05 05:32:17 +08:00
|
|
|
|
1999-03-08 00:24:44 +08:00
|
|
|
--Tor Lillqvist <tml@iki.fi>
|