37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
From 224507bc4b6e58f7a6e445bfebfb59d6b8d78bd6 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Fri, 2 Dec 2016 17:38:51 -0800
|
|
Subject: [PATCH] make relies GNU extentions
|
|
|
|
We get errors like
|
|
`%'-style pattern rules are a GNU make extension
|
|
|
|
Disable this warning, since we use gmake with OE
|
|
anyway
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -3,7 +3,7 @@ AC_PREREQ([2.61])
|
|
AC_INIT([zbar], [0.10], [spadix@users.sourceforge.net])
|
|
AC_CONFIG_AUX_DIR(config)
|
|
AC_CONFIG_MACRO_DIR(config)
|
|
-AM_INIT_AUTOMAKE([1.10 -Wall -Werror foreign subdir-objects std-options dist-bzip2])
|
|
+AM_INIT_AUTOMAKE([1.10 -Wall -Wno-error foreign subdir-objects std-options dist-bzip2])
|
|
AC_CONFIG_HEADERS([include/config.h])
|
|
AC_CONFIG_SRCDIR(zbar/scanner.c)
|
|
LT_PREREQ([2.2])
|
|
@@ -47,7 +47,7 @@ AC_DEFINE_UNQUOTED([LIB_VERSION_REVISION
|
|
[Library revision])
|
|
|
|
AM_CPPFLAGS="-I$srcdir/include"
|
|
-AM_CFLAGS="-Wall -Wno-parentheses -Werror"
|
|
+AM_CFLAGS="-Wall -Wno-parentheses"
|
|
AM_CXXFLAGS="$AM_CFLAGS"
|
|
AC_SUBST([AM_CPPFLAGS])
|
|
AC_SUBST([AM_CFLAGS])
|