#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:
Manish Singh 2003-02-18 22:47:13 +00:00 committed by Manish Singh
parent 45e801ef8b
commit 3b486eb09c
5 changed files with 11 additions and 16 deletions

View File

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

View File

@ -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"

View File

@ -18,6 +18,8 @@
#include "config.h"
#include <sys/types.h>
#ifdef HAVE_IPC_H
#include <sys/ipc.h>
#endif

View File

@ -18,6 +18,8 @@
#include "config.h"
#include <sys/types.h>
#ifdef HAVE_IPC_H
#include <sys/ipc.h>
#endif

View File

@ -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"