diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-06-18 07:49:39 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-06-18 07:49:39 +0000 |
commit | e6443cf2d16a842e3dcefadbfb7be50484ee2f47 (patch) | |
tree | bd8cb49921d82bbe75135c947a9931a42fcf627d | |
parent | beba11cfe89a04a5c315d6b9b48201204af31a18 (diff) |
autotool xhost
-rw-r--r-- | AUTHORS | 3 | ||||
-rw-r--r-- | COPYING | 32 | ||||
-rw-r--r-- | ChangeLog | 0 | ||||
-rw-r--r-- | Makefile.am | 9 | ||||
-rw-r--r-- | NEWS | 0 | ||||
-rw-r--r-- | README | 0 | ||||
-rw-r--r-- | configure.ac | 26 |
7 files changed, 70 insertions, 0 deletions
@@ -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 @@ -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/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 |