summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am19
-rwxr-xr-xautogen.sh14
-rw-r--r--configure.ac12
3 files changed, 4 insertions, 41 deletions
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index a3c3ccf..0000000
--- a/Makefile.am
+++ /dev/null
@@ -1,19 +0,0 @@
-xf86rushdir = $(includedir)/X11/extensions
-xf86rush_HEADERS = \
- xf86rush.h \
- xf86rushstr.h
-
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = xf86rushproto.pc
-
-EXTRA_DIST = xf86rushproto.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 5606f90..0000000
--- a/configure.ac
+++ /dev/null
@@ -1,12 +0,0 @@
-AC_PREREQ([2.57])
-AC_INIT([XF86RushProto], [1.1.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
-AM_INIT_AUTOMAKE([foreign dist-bzip2])
-
-# Require xorg-macros: XORG_CHANGELOG
-m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])])
-XORG_MACROS_VERSION(1.2)
-XORG_RELEASE_VERSION
-XORG_CHANGELOG
-
-AC_OUTPUT([Makefile
- xf86rushproto.pc])