summaryrefslogtreecommitdiff
path: root/debian/patches/12-643587-attr-autoconf-version-check.patch
blob: 6941ea04f043e320cc450d9b714e6cdc7892aaef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=643587

Description: Fix for incompatibility with autoconf2.13
 This package will not build if autconf2.13 is installed.
 Adding AC_PREREQ allows the automatic checks to run the correct
 version of autconf, whichever is installed, or to get a clear error
 message about the problem.
 
Author: Wookey <wookey@linaro.org>

--- attr-2.4.44.orig/configure.in
+++ attr-2.4.44/configure.in
@@ -13,6 +13,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
+AC_PREREQ([2.59])
 AC_INIT(include/attributes.h)
 AC_CONFIG_AUX_DIR([.])
 AC_CONFIG_MACRO_DIR([m4])