summaryrefslogtreecommitdiff
path: root/app-misc/evtest/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-misc/evtest/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-misc/evtest/files')
-rw-r--r--app-misc/evtest/files/evtest-1.30-autoconf.patch33
-rw-r--r--app-misc/evtest/files/evtest-1.30-xml.patch40
2 files changed, 0 insertions, 73 deletions
diff --git a/app-misc/evtest/files/evtest-1.30-autoconf.patch b/app-misc/evtest/files/evtest-1.30-autoconf.patch
deleted file mode 100644
index 940c1316fd6f..000000000000
--- a/app-misc/evtest/files/evtest-1.30-autoconf.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From d3864018ef09ef38e1733110e2643735067bc02f Mon Sep 17 00:00:00 2001
-From: Mike Frysinger <vapier@gentoo.org>
-Date: Sun, 6 Jan 2013 14:49:40 -0500
-Subject: [PATCH] use newer config headers macro
-
-With newer automake, it throws an error:
-configure.ac:5: error: 'AM_CONFIG_HEADER': this macro is obsolete.
- You should use the 'AC_CONFIG_HEADERS' macro instead.
-
-The newer macro has been around a long time, so there's no need to
-worry about backwards compat here.
-
-Signed-off-by: Mike Frysinger <vapier@gentoo.org>
----
- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index ebf657f..9980c5a 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -2,7 +2,7 @@ AC_PREREQ([2.57])
- AC_INIT(evtest,[1.30], [https://bugzilla.freedesktop.org/enter_bug.cgi?product=evtest], evtest)
- AM_INIT_AUTOMAKE([foreign dist-bzip2])
-
--AM_CONFIG_HEADER(config.h)
-+AC_CONFIG_HEADERS(config.h)
- AC_PROG_CC
- AC_PROG_INSTALL
-
---
-1.8.0.2
-
diff --git a/app-misc/evtest/files/evtest-1.30-xml.patch b/app-misc/evtest/files/evtest-1.30-xml.patch
deleted file mode 100644
index 1fe3e6c7c34b..000000000000
--- a/app-misc/evtest/files/evtest-1.30-xml.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 92ecfec7b0a9c1f8d952d20e8a0cde5930f9264f Mon Sep 17 00:00:00 2001
-From: Mike Frysinger <vapier@gentoo.org>
-Date: Sun, 6 Jan 2013 15:09:26 -0500
-Subject: [PATCH] add a configure flag to control xml behavior
-
-The default behavior (autodetection) is unchanged.
-This adds a knob for distros to control directly.
-
-Signed-off-by: Mike Frysinger <vapier@gentoo.org>
----
- configure.ac | 12 ++++++++----
- 1 file changed, 8 insertions(+), 4 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 9980c5a..e973733 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -5,11 +5,15 @@ AM_INIT_AUTOMAKE([foreign dist-bzip2])
- AC_CONFIG_HEADERS(config.h)
- AC_PROG_CC
- AC_PROG_INSTALL
-+PKG_PROG_PKG_CONFIG
-
--PKG_CHECK_MODULES(XML, libxml-2.0, [HAVE_LIBXML=yes], [HAVE_LIBXML=no])
--if test x$HAVE_LIBXML = "xno"; then
-- AC_MSG_WARN([libxml headers not available. Cannot build evtest-capture.])
--fi
-+AC_ARG_ENABLE([xml], [AS_HELP_STRING([--disable-xml], [Disable support for xml (evtest-capture)])])
-+AS_IF([test "x$enable_xml" != "xno"], [
-+ PKG_CHECK_MODULES(XML, libxml-2.0, [HAVE_LIBXML=yes], [HAVE_LIBXML=no])
-+ AS_IF([test "x$enable_xml$HAVE_LIBXML" = "xyesno"], [
-+ AC_MSG_ERROR([libxml headers not available. Cannot build evtest-capture.])
-+ ])
-+])
- AM_CONDITIONAL(HAVE_LIBXML, [test "x$HAVE_LIBXML" = "xyes"])
-
- AC_PATH_PROG(XSLTPROC, [xsltproc])
---
-1.8.0.2
-