blob: 76523fb99738f3f71f33a24f5dcc8427480d1b5b [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001From 1bafadf2502334a3e972ff667061469316d0d2ca Mon Sep 17 00:00:00 2001
2From: Tudor Florea <tudor.florea@enea.com>
3Date: Tue, 4 Aug 2015 02:46:39 +0200
4Subject: [PATCH] Remove hardcoded /usr/local includes from configure.ac
5
6Upstream-Status: Inappropriate [config]
7
8Signed-off-by: Yauhen Kharuzhy <yauhen.kharuzhy@promwad.com>
9Signed-off-by: Tudor Florea <tudor.florea@enea.com>
10---
11 configure.ac | 12 ------------
12 1 file changed, 12 deletions(-)
13
14diff --git a/configure.ac b/configure.ac
15index 6c78e8c..851d45d 100644
16--- a/configure.ac
17+++ b/configure.ac
18@@ -100,18 +100,6 @@ AC_ARG_VAR(PYTHON,local path to the python interpreter)
19 python_possible_path="/usr/bin:/usr/local/bin:/bin:/opt/python/bin:/opt/python/usr/bin:/opt/python/usr/local/bin"
20 AC_PATH_PROG(PYTHON,python,/usr/bin/env python,$python_possible_path)
21
22-if test -d /usr/local/include; then
23- CPPFLAGS="$CPPFLAGS -I/usr/local/include"
24-fi
25-
26-if test -d /usr/kerberos/include; then
27- CPPFLAGS="$CPPFLAGS -I/usr/kerberos/include"
28-fi
29-
30-if test -d /usr/local/lib; then
31- LDFLAGS="$LDFLAGS -L/usr/local/lib"
32-fi
33-
34 CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"
35
36 dnl Checks for header files
37--
381.9.1
39