xref: /OK3568_Linux_fs/buildroot/package/libcdaudio/0001-libcdaudio-enable-autoreconf.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1From 9c2873b1d9292bcf43c862b6777d41c40521424c Mon Sep 17 00:00:00 2001
2From: Peter Seiderer <ps.report@gmx.net>
3Date: Sun, 13 Jan 2019 22:27:42 +0100
4Subject: [PATCH] libcdaudio: enable autoreconf
5
6Fixes the following two autoreconf errors (by simple removing of the
7two offending lines):
8
9  configure.ac:20: error: automatic de-ANSI-fication support has been removed
10
11  Makefile.am:2: error: automatic de-ANSI-fication support has been removed
12
13Signed-off-by: Peter Seiderer <ps.report@gmx.net>
14---
15 Makefile.am  | 1 -
16 configure.ac | 1 -
17 2 files changed, 2 deletions(-)
18
19diff --git a/Makefile.am b/Makefile.am
20index f639dd8..a32cfe6 100644
21--- a/Makefile.am
22+++ b/Makefile.am
23@@ -1,5 +1,4 @@
24 ## Process this file with automake to produce Makefile.in
25-AUTOMAKE_OPTIONS = ansi2knr
26 SUBDIRS = src
27
28 bin_SCRIPTS = libcdaudio-config
29diff --git a/configure.ac b/configure.ac
30index bbdd42d..6699ceb 100644
31--- a/configure.ac
32+++ b/configure.ac
33@@ -17,7 +17,6 @@ AM_CONFIG_HEADER(config.h)
34 AC_PROG_AWK
35 AC_PROG_CC
36 AC_PROG_CPP
37-AM_C_PROTOTYPES
38 AM_PROG_CC_STDC
39 AC_PROG_INSTALL
40 AC_PROG_LN_S
41--
422.20.1
43
44