summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <sandmann@daimi.au.dk>2005-05-17 20:53:58 +0000
committerSøren Sandmann Pedersen <sandmann@daimi.au.dk>2005-05-17 20:53:58 +0000
commitcae06ca0ce523eeb9a667ce3ae5bff066cf6ecd7 (patch)
tree174d7e146a09b088085b2983e94629a546f9acd5
parent9dd90f8f8e29bb1dd6fe84b4b1d2d75ef91bc336 (diff)
downloadxorg-lib-libICE-XORG-6_8_99_10.tar.gz
- Conditionally include config.h in the ICE source.XORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_10
- Add ICE to symlink.sh
-rw-r--r--src/accept.c3
-rw-r--r--src/authutil.c3
-rw-r--r--src/connect.c3
-rw-r--r--src/error.c3
-rw-r--r--src/getauth.c3
-rw-r--r--src/iceauth.c3
-rw-r--r--src/listen.c3
-rw-r--r--src/listenwk.c3
-rw-r--r--src/locking.c3
-rw-r--r--src/misc.c3
-rw-r--r--src/ping.c3
-rw-r--r--src/process.c3
-rw-r--r--src/protosetup.c3
-rw-r--r--src/register.c3
-rw-r--r--src/replywait.c3
-rw-r--r--src/setauth.c3
-rw-r--r--src/shutdown.c3
-rw-r--r--src/watch.c3
18 files changed, 54 insertions, 0 deletions
diff --git a/src/accept.c b/src/accept.c
index eea5389..3fefa7f 100644
--- a/src/accept.c
+++ b/src/accept.c
@@ -27,6 +27,9 @@ in this Software without prior written authorization from The Open Group.
Author: Ralph Mor, X Consortium
******************************************************************************/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
#include <X11/Xtrans.h>
diff --git a/src/authutil.c b/src/authutil.c
index 2ef893f..997e9b8 100644
--- a/src/authutil.c
+++ b/src/authutil.c
@@ -29,6 +29,9 @@ Author: Ralph Mor, X Consortium
******************************************************************************/
/* $XFree86: authutil.c,v 3.9 2002/05/31 18:45:41 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
#include <X11/ICE/ICEutil.h>
diff --git a/src/connect.c b/src/connect.c
index e2eb7ad..4a92e15 100644
--- a/src/connect.c
+++ b/src/connect.c
@@ -28,6 +28,9 @@ Author: Ralph Mor, X Consortium
******************************************************************************/
/* $XFree86: xc/lib/ICE/connect.c,v 3.9 2001/12/14 19:53:35 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
#include <X11/Xtrans.h>
diff --git a/src/error.c b/src/error.c
index 09fbbb2..49b164b 100644
--- a/src/error.c
+++ b/src/error.c
@@ -28,6 +28,9 @@ Author: Ralph Mor, X Consortium
******************************************************************************/
/* $XFree86: xc/lib/ICE/error.c,v 1.5 2001/10/28 03:32:28 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
#include <stdio.h>
diff --git a/src/getauth.c b/src/getauth.c
index 15db492..73fcd8a 100644
--- a/src/getauth.c
+++ b/src/getauth.c
@@ -28,6 +28,9 @@ Author: Ralph Mor, X Consortium
******************************************************************************/
/* $XFree86: xc/lib/ICE/getauth.c,v 1.2 2001/10/28 03:32:28 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
#include <X11/ICE/ICEutil.h>
diff --git a/src/iceauth.c b/src/iceauth.c
index c3e78a3..01c73ce 100644
--- a/src/iceauth.c
+++ b/src/iceauth.c
@@ -28,6 +28,9 @@ Author: Ralph Mor, X Consortium
******************************************************************************/
/* $XFree86: xc/lib/ICE/iceauth.c,v 3.5 2001/12/14 19:53:36 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
#include <X11/ICE/ICEutil.h>
diff --git a/src/listen.c b/src/listen.c
index cee141f..2a9a40d 100644
--- a/src/listen.c
+++ b/src/listen.c
@@ -27,6 +27,9 @@ in this Software without prior written authorization from The Open Group.
Author: Ralph Mor, X Consortium
******************************************************************************/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
#include <X11/Xtrans.h>
diff --git a/src/listenwk.c b/src/listenwk.c
index ee08723..fb3f72d 100644
--- a/src/listenwk.c
+++ b/src/listenwk.c
@@ -30,6 +30,9 @@ in this Software without prior written authorization from The Open Group.
/* Author: Ralph Mor, X Consortium */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
#include <X11/Xtrans.h>
diff --git a/src/locking.c b/src/locking.c
index c16c3a1..5108030 100644
--- a/src/locking.c
+++ b/src/locking.c
@@ -27,6 +27,9 @@ in this Software without prior written authorization from The Open Group.
Author: Ralph Mor, X Consortium
******************************************************************************/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
diff --git a/src/misc.c b/src/misc.c
index 0ed9bc3..a5b3e49 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -31,6 +31,9 @@ Author: Ralph Mor, X Consortium
#ifdef WIN32
#define _WILLWINSOCK_
#endif
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
#include <X11/Xtrans.h>
diff --git a/src/ping.c b/src/ping.c
index bee042a..45329b6 100644
--- a/src/ping.c
+++ b/src/ping.c
@@ -27,6 +27,9 @@ in this Software without prior written authorization from The Open Group.
Author: Ralph Mor, X Consortium
******************************************************************************/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
diff --git a/src/process.c b/src/process.c
index 37f97d7..a6823e9 100644
--- a/src/process.c
+++ b/src/process.c
@@ -28,6 +28,9 @@ Author: Ralph Mor, X Consortium
******************************************************************************/
/* $XFree86: xc/lib/ICE/process.c,v 3.9tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
diff --git a/src/protosetup.c b/src/protosetup.c
index fa36319..7a21e2e 100644
--- a/src/protosetup.c
+++ b/src/protosetup.c
@@ -28,6 +28,9 @@ Author: Ralph Mor, X Consortium
******************************************************************************/
/* $XFree86: xc/lib/ICE/protosetup.c,v 1.2 2001/10/28 03:32:28 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
diff --git a/src/register.c b/src/register.c
index 45ec62c..20e60df 100644
--- a/src/register.c
+++ b/src/register.c
@@ -27,6 +27,9 @@ in this Software without prior written authorization from The Open Group.
Author: Ralph Mor, X Consortium
******************************************************************************/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
diff --git a/src/replywait.c b/src/replywait.c
index 2c816f2..e00eb92 100644
--- a/src/replywait.c
+++ b/src/replywait.c
@@ -27,6 +27,9 @@ in this Software without prior written authorization from The Open Group.
Author: Ralph Mor, X Consortium
******************************************************************************/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
diff --git a/src/setauth.c b/src/setauth.c
index 1811384..4fd7718 100644
--- a/src/setauth.c
+++ b/src/setauth.c
@@ -28,6 +28,9 @@ Author: Ralph Mor, X Consortium
******************************************************************************/
/* $XFree86: xc/lib/ICE/setauth.c,v 1.4 2001/12/14 19:53:36 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
#include <X11/ICE/ICEutil.h>
diff --git a/src/shutdown.c b/src/shutdown.c
index 103aa47..734d64e 100644
--- a/src/shutdown.c
+++ b/src/shutdown.c
@@ -28,6 +28,9 @@ Author: Ralph Mor, X Consortium
******************************************************************************/
/* $XFree86: xc/lib/ICE/shutdown.c,v 3.3 2001/08/01 00:44:37 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"
#include <X11/Xtrans.h>
diff --git a/src/watch.c b/src/watch.c
index 6c33192..ec90d78 100644
--- a/src/watch.c
+++ b/src/watch.c
@@ -27,6 +27,9 @@ in this Software without prior written authorization from The Open Group.
Author: Ralph Mor, X Consortium
******************************************************************************/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/ICE/ICElib.h>
#include "ICElibint.h"