From e6443cf2d16a842e3dcefadbfb7be50484ee2f47 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sat, 18 Jun 2005 07:49:39 +0000 Subject: autotool xhost --- AUTHORS | 3 +++ COPYING | 32 ++++++++++++++++++++++++++++++++ ChangeLog | 0 Makefile.am | 9 +++++++++ NEWS | 0 README | 0 configure.ac | 26 ++++++++++++++++++++++++++ 7 files changed, 70 insertions(+) create mode 100644 AUTHORS create mode 100644 COPYING create mode 100644 ChangeLog create mode 100644 Makefile.am create mode 100644 NEWS create mode 100644 README create mode 100644 configure.ac diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..6388c16 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,3 @@ +Original authors: + Bob Scheifler, MIT Laboratory for Computer Science + Jim Gettys, MIT Project Athena (DEC) \ No newline at end of file diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..e871188 --- /dev/null +++ b/COPYING @@ -0,0 +1,32 @@ +Copyright 1985, 1986, 1987, 1998 The Open Group +Copyright 2004 Sun Microsystems, Inc. + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR 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. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. + +X Window System is a trademark of The Open Group. + diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..0941df2 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,9 @@ +bin_PROGRAMS = xhost + +xhost_SOURCES = xhost.c + +xhost_CFLAGS = @XHOST_CFLAGS@ + +xhost_LDADD = @XHOST_LIBS@ + +man_MANS = xhost.man \ No newline at end of file diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/README b/README new file mode 100644 index 0000000..e69de29 diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..11e40a8 --- /dev/null +++ b/configure.ac @@ -0,0 +1,26 @@ +# $XdotOrg: $ + +AC_PREREQ([2.57]) +AC_INIT(xhost,[7.0], [xorg@freedestkop.org],xhost) +AM_INIT_AUTOMAKE([dist-bzip2]) +AM_MAINTAINER_MODE + +AM_CONFIG_HEADER(config.h) + +AC_PROG_CC +AC_PROG_INSTALL + +AC_TYPE_SIGNAL + +# Checks for pkg-config packages +PKG_CHECK_MODULES(XHOST, x11 xmu) +AC_SUBST(XHOST_CFLAGS) +AC_SUBST(XHOST_LIBS) + +# Transport selection macro from xtrans.m4 +XTRANS_CONNECTION_FLAGS + +# Secure RPC detection macro from xtrans.m4 +XTRANS_SECURE_RPC_FLAGS + +AC_OUTPUT([Makefile]) \ No newline at end of file -- cgit v1.2.3