summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-06-18 07:49:39 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-06-18 07:49:39 +0000
commite6443cf2d16a842e3dcefadbfb7be50484ee2f47 (patch)
treebd8cb49921d82bbe75135c947a9931a42fcf627d
parentbeba11cfe89a04a5c315d6b9b48201204af31a18 (diff)
downloadxhost-e6443cf2d16a842e3dcefadbfb7be50484ee2f47.tar.gz
xhost-e6443cf2d16a842e3dcefadbfb7be50484ee2f47.tar.bz2
xhost-e6443cf2d16a842e3dcefadbfb7be50484ee2f47.zip
autotool xhost
-rw-r--r--AUTHORS3
-rw-r--r--COPYING32
-rw-r--r--ChangeLog0
-rw-r--r--Makefile.am9
-rw-r--r--NEWS0
-rw-r--r--README0
-rw-r--r--configure.ac26
7 files changed, 70 insertions, 0 deletions
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
--- /dev/null
+++ b/ChangeLog
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
--- /dev/null
+++ b/NEWS
diff --git a/README b/README
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/README
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