removed obsolete compile-time check for GLIB >= 2.3.5.

2004-07-19  Michael Natterer  <mitch@gimp.org>

	* app/plug-in/plug-in.h (struct _PlugIn): removed obsolete
	compile-time check for GLIB >= 2.3.5.
This commit is contained in:
Michael Natterer
2004-07-19 12:20:27 +00:00
committed by Michael Natterer
parent 894de83e12
commit 086d0b5470
3 changed files with 5 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2004-07-19 Michael Natterer <mitch@gimp.org>
* app/plug-in/plug-in.h (struct _PlugIn): removed obsolete
compile-time check for GLIB >= 2.3.5.
2004-07-19 Shlomi Fish <shlomif@iglu.org.il>
* ChangeLog: Fixed a copy-and-paste error with the dates of my commits.

View File

@ -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 */

View File

@ -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 */