1From 2fcf2b164e25c4b2523dea4b04094916e57ba19e Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Andr=C3=A9=20Draszik?= <git@andred.net>
3Date: Thu, 3 Nov 2016 20:53:26 +0000
4Subject: [PATCH 2/3] build: don't ignore CPPFLAGS from environment
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Upstream-Status: Inappropriate [no upstream activity for 7+ years]
10Signed-off-by: André Draszik <git@andred.net>
11---
12 configure.ac | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/configure.ac b/configure.ac
16index 96300d6..1600c88 100644
17--- a/configure.ac
18+++ b/configure.ac
19@@ -56,7 +56,7 @@ AC_ARG_WITH(curses,
20   [  --with-curses(=XXX) compile curses front-end (XXX is curses (default), ncurses, ncursesw, pdcurses or slang)])
21
22
23-CPPFLAGS="-D__UNIX__"
24+CPPFLAGS="$CPPFLAGS -D__UNIX__"
25 AC_SUBST(CPPFLAGS)
26
27
28--
292.10.1
30
31