diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-09-15 17:05:33 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-09-15 17:05:33 +0000 |
commit | dd9a0a4cb85188d898894f8e4972ec8dabe030f6 (patch) | |
tree | 07a7c1fd2c8b0d8b7a6e2de2f429b70167187b45 | |
parent | d3899468c8214501036700e0538e566d9db73384 (diff) |
xinit 1.0.6
-rw-r--r-- | app/xinit/COPYING | 25 | ||||
-rw-r--r-- | app/xinit/autogen.sh | 13 |
2 files changed, 30 insertions, 8 deletions
diff --git a/app/xinit/COPYING b/app/xinit/COPYING index 7f33cbfd2..8db1bec36 100644 --- a/app/xinit/COPYING +++ b/app/xinit/COPYING @@ -1,12 +1,21 @@ -This is a stub file. This package has not yet had its complete licensing -information compiled. Please see the individual source files for details on -your rights to use and modify this software. +Copyright 1986, 1988, 1993, 1998 The Open Group -Please submit updated COPYING files to the Xorg bugzilla: +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. -https://bugs.freedesktop.org/enter_bug.cgi?product=xorg +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -All licensing questions regarding this software should be directed at the -Xorg mailing list: +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. IN NO EVENT SHALL THE +OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -http://lists.freedesktop.org/mailman/listinfo/xorg +Except as contained in this notice, the name of The Open Group shall not be +used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from The Open Group. diff --git a/app/xinit/autogen.sh b/app/xinit/autogen.sh new file mode 100644 index 000000000..e81f98910 --- /dev/null +++ b/app/xinit/autogen.sh @@ -0,0 +1,13 @@ +#! /bin/sh + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd $srcdir + +autoreconf -v --install || exit 1 +cd $ORIGDIR || exit $? + +$srcdir/configure --enable-maintainer-mode "$@" + |