mirror of https://github.com/GNOME/gimp.git
#include <sys/types.h> for ipc/shm headers. (Bug #106461)
2003-02-18 Manish Singh <yosh@gimp.org> * app/plug-in/plug-in-shm.c: #include <sys/types.h> for ipc/shm headers. (Bug #106461) * app/plug-in/plug-in.c: remove unneeded includes of ipc/shm headers.
This commit is contained in:
parent
45e801ef8b
commit
3b486eb09c
|
@ -1,3 +1,10 @@
|
|||
2003-02-18 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* app/plug-in/plug-in-shm.c: #include <sys/types.h> for ipc/shm
|
||||
headers. (Bug #106461)
|
||||
|
||||
* app/plug-in/plug-in.c: remove unneeded includes of ipc/shm headers.
|
||||
|
||||
2003-02-18 Sven Neumann <sven@gimp.org>
|
||||
|
||||
Applied patches from David Necas <yeti@physics.muni.cz> that fix
|
||||
|
|
|
@ -68,14 +68,6 @@
|
|||
#define _P_NOWAIT P_NOWAIT
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_IPC_H
|
||||
#include <sys/ipc.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_SHM_H
|
||||
#include <sys/shm.h>
|
||||
#endif
|
||||
|
||||
#include "libgimpbase/gimpbase.h"
|
||||
#include "libgimpbase/gimpprotocol.h"
|
||||
#include "libgimpbase/gimpwire.h"
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
#ifdef HAVE_IPC_H
|
||||
#include <sys/ipc.h>
|
||||
#endif
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
#ifdef HAVE_IPC_H
|
||||
#include <sys/ipc.h>
|
||||
#endif
|
||||
|
|
|
@ -68,14 +68,6 @@
|
|||
#define _P_NOWAIT P_NOWAIT
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_IPC_H
|
||||
#include <sys/ipc.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_SHM_H
|
||||
#include <sys/shm.h>
|
||||
#endif
|
||||
|
||||
#include "libgimpbase/gimpbase.h"
|
||||
#include "libgimpbase/gimpprotocol.h"
|
||||
#include "libgimpbase/gimpwire.h"
|
||||
|
|
Loading…
Reference in New Issue