diff options
author | Søren Sandmann Pedersen <sandmann@daimi.au.dk> | 2005-05-17 20:52:35 +0000 |
---|---|---|
committer | Søren Sandmann Pedersen <sandmann@daimi.au.dk> | 2005-05-17 20:52:35 +0000 |
commit | 9dd90f8f8e29bb1dd6fe84b4b1d2d75ef91bc336 (patch) | |
tree | 50a571e47266ea64884c87561775450d4cd0bac8 /src | |
parent | d1cfe2a6d4a392f64b6b9d9255ec329fb2a6a39a (diff) |
Add ICE directory + build system.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 40 | ||||
-rw-r--r-- | src/icetrans.c | 33 |
2 files changed, 73 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..6944647 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,40 @@ +lib_LTLIBRARIES=libICE.la + +AM_CFLAGS= -I${top_srcdir}/include $(ICE_CFLAGS) $(XTRANS_CFLAGS) + +libICE_la_LDFLAGS = -version-number 6:4:1 -no-undefined + +libICE_la_LIBADD = $(ICE_LIBS) $(XTRANS_LIBS) + +libICE_la_SOURCES = \ + ICElibint.h \ + accept.c \ + authutil.c \ + connect.c \ + error.c \ + getauth.c \ + globals.h \ + iceauth.c \ + icetrans.c \ + listen.c \ + listenwk.c \ + locking.c \ + misc.c \ + ping.c \ + process.c \ + protosetup.c \ + register.c \ + replywait.c \ + setauth.c \ + shutdown.c \ + watch.c + +iceincludedir=$(includedir)/X11/ICE +iceinclude_HEADERS=\ + $(top_srcdir)/include/X11/ICE/ICE.h \ + $(top_srcdir)/include/X11/ICE/ICEconn.h \ + $(top_srcdir)/include/X11/ICE/ICElib.h \ + $(top_srcdir)/include/X11/ICE/ICEmsg.h \ + $(top_srcdir)/include/X11/ICE/ICEproto.h \ + $(top_srcdir)/include/X11/ICE/ICEutil.h + diff --git a/src/icetrans.c b/src/icetrans.c new file mode 100644 index 0000000..32ffad7 --- /dev/null +++ b/src/icetrans.c @@ -0,0 +1,33 @@ +/* + * $Id$ + * + * Copyright © 2003 Keith Packard + * + * Permission to use, copy, modify, distribute, and sell this software and its + * documentation for any purpose is hereby granted without fee, provided that + * the above copyright notice appear in all copies and that both that + * copyright notice and this permission notice appear in supporting + * documentation, and that the name of Keith Packard not be used in + * advertising or publicity pertaining to distribution of the software without + * specific, written prior permission. Keith Packard makes no + * representations about the suitability of this software for any purpose. It + * is provided "as is" without express or implied warranty. + * + * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO + * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR + * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, + * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#define ICE_t +#define TRANS_CLIENT +#define TRANS_SERVER + +#include <X11/transport.c> |