summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2018-03-01 14:30:46 -0500
committerAdam Jackson <ajax@redhat.com>2018-03-01 14:30:46 -0500
commit847ed2e8bc3f77b964025d497bf07756d390daee (patch)
treeab873494992e0d2ff329d4fe80e035575366abdd
parent6a5a93b338d808ce64e55a25f36e047152376418 (diff)
downloadxorg-proto-xf86dgaproto-master.tar.gz
Deprecate xf86dgaprotoHEADmaster
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r--Makefile.am25
-rwxr-xr-xautogen.sh19
-rw-r--r--configure.ac13
3 files changed, 4 insertions, 53 deletions
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index f110254..0000000
--- a/Makefile.am
+++ /dev/null
@@ -1,25 +0,0 @@
-xf86dgadir = $(includedir)/X11/extensions
-xf86dga_HEADERS = \
- xf86dga.h \
- xf86dga1const.h \
- xf86dga1str.h \
- xf86dga1proto.h \
- xf86dgaconst.h \
- xf86dgaproto.h \
- xf86dgastr.h
-
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = xf86dgaproto.pc
-
-
-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 b6c908f..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 xf86dgaproto"
-
-if test -z "$NOCONFIGURE"; then
- exec "$srcdir"/configure "$@"
-fi
+exit 1
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index 205090b..0000000
--- a/configure.ac
+++ /dev/null
@@ -1,13 +0,0 @@
-AC_PREREQ([2.60])
-AC_INIT([XF86DGAProto], [2.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
-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
- xf86dgaproto.pc])
-AC_OUTPUT