diff --git a/ChangeLog b/ChangeLog index 39bde4eb47..45dced9591 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-07-19 Michael Natterer + + * app/plug-in/plug-in.h (struct _PlugIn): removed obsolete + compile-time check for GLIB >= 2.3.5. + 2004-07-19 Shlomi Fish * ChangeLog: Fixed a copy-and-paste error with the dates of my commits. diff --git a/app/plug-in/gimpplugin.h b/app/plug-in/gimpplugin.h index 07ff7c6ac2..113c49f88c 100644 --- a/app/plug-in/gimpplugin.h +++ b/app/plug-in/gimpplugin.h @@ -40,11 +40,7 @@ struct _PlugIn guint init : 1; /* Are we initialing the plug-in? */ guint synchronous : 1; /* Is the plug-in running synchronously? */ -#if GLIB_CHECK_VERSION(2,3,5) GPid pid; /* Plug-in's process id */ -#else - pid_t pid; /* Plug-in's process id */ -#endif gchar *name; /* Plug-in's name */ gchar *prog; /* Plug-in's full path name */ diff --git a/app/plug-in/plug-in.h b/app/plug-in/plug-in.h index 07ff7c6ac2..113c49f88c 100644 --- a/app/plug-in/plug-in.h +++ b/app/plug-in/plug-in.h @@ -40,11 +40,7 @@ struct _PlugIn guint init : 1; /* Are we initialing the plug-in? */ guint synchronous : 1; /* Is the plug-in running synchronously? */ -#if GLIB_CHECK_VERSION(2,3,5) GPid pid; /* Plug-in's process id */ -#else - pid_t pid; /* Plug-in's process id */ -#endif gchar *name; /* Plug-in's name */ gchar *prog; /* Plug-in's full path name */