diff options
author | Keith Packard <keithp@keithp.com> | 2017-12-13 15:12:26 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-12-13 15:12:26 -0800 |
commit | 6039a6e094be992735a90788ed37e7126bc8c4b4 (patch) | |
tree | dedf367e983b35139c5c61a54fb0f7f8868b41b8 /pmproto | |
parent | ff6788773350194cbbec8681a29b83bacc462542 (diff) |
Move common pmproto files out of the way
Diffstat (limited to 'pmproto')
-rw-r--r-- | pmproto/.gitignore | 14 | ||||
-rw-r--r-- | pmproto/COPYING | 24 | ||||
-rw-r--r-- | pmproto/Makefile.am | 21 | ||||
-rw-r--r-- | pmproto/README | 26 | ||||
-rwxr-xr-x | pmproto/autogen.sh | 12 | ||||
-rw-r--r-- | pmproto/configure.ac | 12 |
6 files changed, 109 insertions, 0 deletions
diff --git a/pmproto/.gitignore b/pmproto/.gitignore new file mode 100644 index 0000000..21be2ee --- /dev/null +++ b/pmproto/.gitignore @@ -0,0 +1,14 @@ +Makefile +Makefile.in +aclocal.m4 +autom4te.cache +config.log +config.status +configure +install-sh +missing +xproxymngproto.pc +*~ +xproxymanagementprotocol-*.tar.* +ChangeLog +tags diff --git a/pmproto/COPYING b/pmproto/COPYING new file mode 100644 index 0000000..3ce03b5 --- /dev/null +++ b/pmproto/COPYING @@ -0,0 +1,24 @@ +Copyright 1996, 1998 The Open Group + +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. + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +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. + +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/pmproto/Makefile.am b/pmproto/Makefile.am new file mode 100644 index 0000000..4781d1f --- /dev/null +++ b/pmproto/Makefile.am @@ -0,0 +1,21 @@ +xproxymngdir = $(includedir)/X11/PM +xproxymng_HEADERS = \ + PM.h \ + PMproto.h + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = xproxymngproto.pc + +dist_doc_DATA = PM_spec + +EXTRA_DIST = xproxymngproto.pc.in + +EXTRA_DIST += ChangeLog +MAINTAINERCLEANFILES = ChangeLog + +.PHONY: ChangeLog + +ChangeLog: + $(CHANGELOG_CMD) + +dist-hook: ChangeLog diff --git a/pmproto/README b/pmproto/README new file mode 100644 index 0000000..95b17af --- /dev/null +++ b/pmproto/README @@ -0,0 +1,26 @@ +The Proxy Management Protocol is an ICE based protocol that provides a way +for application servers to easily locate proxy services available to them. + +All questions regarding this software should be directed at the +Xorg mailing list: + + http://lists.freedesktop.org/mailman/listinfo/xorg + +Please submit bug reports to the Xorg bugzilla: + + https://bugs.freedesktop.org/enter_bug.cgi?product=xorg + +The master development code repository can be found at: + + git://anongit.freedesktop.org/git/xorg/proto/pmproto + + http://cgit.freedesktop.org/xorg/proto/pmproto + +For patch submission instructions, see: + + http://www.x.org/wiki/Development/Documentation/SubmittingPatches + +For more information on the git code manager, see: + + http://wiki.x.org/wiki/GitPage + diff --git a/pmproto/autogen.sh b/pmproto/autogen.sh new file mode 100755 index 0000000..904cd67 --- /dev/null +++ b/pmproto/autogen.sh @@ -0,0 +1,12 @@ +#! /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 "$@" diff --git a/pmproto/configure.ac b/pmproto/configure.ac new file mode 100644 index 0000000..966bc5d --- /dev/null +++ b/pmproto/configure.ac @@ -0,0 +1,12 @@ +AC_PREREQ([2.57]) +AC_INIT([XProxyManagementProtocol], [1.0.3], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) + +# Require xorg-macros 1.3 or later: XORG_DEFAULT_OPTIONS +m4_ifndef([XORG_MACROS_VERSION], + [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.3) +XORG_DEFAULT_OPTIONS + +AC_OUTPUT([Makefile + xproxymngproto.pc]) |