From bd78782e2e949b94f7386149dacde4d05dc2d4f2 Mon Sep 17 00:00:00 2001 From: Lawrence D'Anna Date: Sun, 22 Mar 2015 03:36:10 -0700 Subject: [PATCH] tmux: build fix: don't -I /usr/local/include Tmux is forcing -I /usr/local/include on the compiler. Obviously, this is not good for cross compiles. God only knows why they put it here in the first place. Signed-off-by: Lawrence D'Anna --- utils/tmux/patches/200-usr-local.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 utils/tmux/patches/200-usr-local.patch diff --git a/utils/tmux/patches/200-usr-local.patch b/utils/tmux/patches/200-usr-local.patch new file mode 100644 index 0000000000..07336deb88 --- /dev/null +++ b/utils/tmux/patches/200-usr-local.patch @@ -0,0 +1,14 @@ +--- a/Makefile.in ++++ b/Makefile.in +@@ -101,9 +101,9 @@ bin_PROGRAMS = tmux$(EXEEXT) + @IS_DEBUG_TRUE@@IS_GCC_TRUE@ -Wdeclaration-after-statement + @IS_DEBUG_TRUE@@IS_GCC_TRUE@am__append_4 = -DDEBUG + @IS_DEBUG_FALSE@@IS_GCC_TRUE@am__append_5 = -O2 +-@IS_GCC4_TRUE@@IS_GCC_TRUE@am__append_6 = -iquote. -I/usr/local/include ++@IS_GCC4_TRUE@@IS_GCC_TRUE@am__append_6 = -iquote. + @IS_DEBUG_TRUE@@IS_GCC4_TRUE@@IS_GCC_TRUE@am__append_7 = -Wno-pointer-sign +-@IS_GCC4_FALSE@@IS_GCC_TRUE@am__append_8 = -I. -I- -I/usr/local/include ++@IS_GCC4_FALSE@@IS_GCC_TRUE@am__append_8 = -I. -I- + + # Set flags for Solaris. + @IS_GCC_TRUE@@IS_SUNOS_TRUE@am__append_9 = -D_XPG6 -D__EXTENSIONS__ -D_POSIX_PTHREAD_SEMANTICS