summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2018-03-01 14:30:43 -0500
committerAdam Jackson <ajax@redhat.com>2018-03-01 14:30:43 -0500
commitc69a3129350c86c2cd6b2a63e16ba51afa170fd6 (patch)
treeb5f82390b97edfe8b0fd230a1e12cfd8d4c5ae64
parent708fcc7b25bdb25cf63b8ab582b74d8bc287d4da (diff)
downloadxorg-proto-videoproto-master.tar.gz
Deprecate videoprotoHEADmaster
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r--Makefile.am25
-rwxr-xr-xautogen.sh19
-rw-r--r--configure.ac21
3 files changed, 4 insertions, 61 deletions
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index 6064e46..0000000
--- a/Makefile.am
+++ /dev/null
@@ -1,25 +0,0 @@
-videodir = $(includedir)/X11/extensions
-video_HEADERS = \
- vldXvMC.h \
- Xv.h \
- XvMC.h \
- XvMCproto.h \
- Xvproto.h
-
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = videoproto.pc
-
-dist_doc_DATA = xv-protocol-v2.txt
-
-
-MAINTAINERCLEANFILES = ChangeLog INSTALL
-
-.PHONY: ChangeLog INSTALL
-
-INSTALL:
- $(INSTALL_CMD)
-
-ChangeLog:
- $(CHANGELOG_CMD)
-
-dist-hook: ChangeLog INSTALL
diff --git a/autogen.sh b/autogen.sh
index 9348097..1facbd4 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,17 +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 $?
-
-git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
- git config --local format.subjectPrefix "PATCH videoproto"
-
-if test -z "$NOCONFIGURE"; then
- exec "$srcdir"/configure "$@"
-fi
+exit 1
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index b4bf1f0..0000000
--- a/configure.ac
+++ /dev/null
@@ -1,21 +0,0 @@
-dnl
-dnl Process this file with autoconf to create configure.
-
-# Initialize Autoconf
-AC_PREREQ([2.60])
-AC_INIT([VideoProto], [2.3.3],
- [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
-AC_CONFIG_SRCDIR([Makefile.am])
-
-# Initialize Automake
-AM_INIT_AUTOMAKE([foreign dist-bzip2])
-
-# Require xorg-macros: 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_CONFIG_FILES([Makefile
- videoproto.pc])
-AC_OUTPUT