summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2018-03-01 14:30:39 -0500
committerAdam Jackson <ajax@redhat.com>2018-03-01 14:30:39 -0500
commit609ae66f161bd4304e4b5c5e48eff795b6e85b28 (patch)
tree44458d01ab5e89d441c40018b55299b456da8c41
parente4917e1b3f52b0ec5279fc46d568b9fa5e6b5025 (diff)
Deprecate pmprotoHEADmaster
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r--Makefile.am21
-rwxr-xr-xautogen.sh14
-rw-r--r--configure.ac12
3 files changed, 4 insertions, 43 deletions
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index 4781d1f..0000000
--- a/Makefile.am
+++ /dev/null
@@ -1,21 +0,0 @@
-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/autogen.sh b/autogen.sh
index 904cd67..1facbd4 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,12 +1,6 @@
-#! /bin/sh
+#!/bin/sh
-srcdir=`dirname $0`
-test -z "$srcdir" && srcdir=.
+echo "This module has been deprecated. Use xorgproto instead:"
+echo "git clone git://anongit.freedesktop.org/git/xorg/proto/xorgproto"
-ORIGDIR=`pwd`
-cd $srcdir
-
-autoreconf -v --install || exit 1
-cd $ORIGDIR || exit $?
-
-$srcdir/configure --enable-maintainer-mode "$@"
+exit 1
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index 966bc5d..0000000
--- a/configure.ac
+++ /dev/null
@@ -1,12 +0,0 @@
-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])