diff --git a/ChangeLog b/ChangeLog index 407e2df120..deef8b4552 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,9 +5,9 @@ 1999-05-28 Tor Lillqvist Merge in Win32 changes to plug-ins. Small Win32-related changes - to app and libgimp. + to app, libgimp and modules. - * configure.in: Check for mmap. + * configure.in acconfig.h: Check for mmap. * app/makefile.msc: Depend on gimpi.lib. @@ -104,6 +104,12 @@ g_strescape() for strings being passed to Scheme. Some Win32-only stuff. + * modules/colorsel_triangle.c: No need to include gdkx.h. Define + M_PI if necessary. + + * modules/makefile.msc: Update GLib and GTk+ version paths to + current preferences. + Thu May 27 22:04:49 1999 Jay Cox (jaycox@earthlink.net) * app/channel.c: applied fix for the channel_bounds bug from diff --git a/acconfig.h b/acconfig.h index 2aabdad6af..24de765cc9 100644 --- a/acconfig.h +++ b/acconfig.h @@ -22,6 +22,7 @@ #undef HAVE_GETTEXT #undef HAVE_IPC_H #undef HAVE_LC_MESSAGES +#undef HAVE_MMAP #undef HAVE_NDIR_H #undef HAVE_PROGRESSIVE_JPEG #undef HAVE_PUTENV diff --git a/modules/colorsel_triangle.c b/modules/colorsel_triangle.c index f7aadff71d..0b4ef62c51 100644 --- a/modules/colorsel_triangle.c +++ b/modules/colorsel_triangle.c @@ -24,11 +24,14 @@ #include #include #include -#include + #include #include #include +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif /* prototypes */ static GtkWidget * colorsel_triangle_new (int, int, int, diff --git a/modules/makefile.msc b/modules/makefile.msc index 7b611e9709..b25977aa10 100644 --- a/modules/makefile.msc +++ b/modules/makefile.msc @@ -18,13 +18,13 @@ TOUCH = copy makefile.msc+nul GIMP_VER = 1.1 GTK_VER = 1.3 -GLIB_VER = 1.2 +GLIB_VER = 1.3 -GLIB = ..\..\glib-$(GLIB_VER) +GLIB = ..\..\glib GMODULE = $(GLIB)\gmodule -GTK = ..\..\gtk-plus +GTK = ..\..\gtk+ -CFLAGS = -DHAVE_CONFIG_H -DMODULE_COMPILATION -I. -I.. -I$(GLIB) -I$(GMODULE) -I$(GTK) +CFLAGS = -DHAVE_CONFIG_H -DMODULE_COMPILATION -I. -I.. -I$(GLIB) -I$(GMODULE) -I$(GTK)\gdk\win32 -I$(GTK) MODULES = colorsel_gtk.dll \ colorsel_triangle.dll