Description: fix building with GCC 6
 Upstream handles GCC versions separately in their Makefile
 but didn't consider version 6. Cloning settings for GCC 5 to use
 with GCC 6, works.
 Same for gcc 7 (Gert Wollny, <gewo@debian.org>
Author: Sascha Steinbiss <satta@debian.org>
--- trinityrnaseq.orig/Chrysalis/Makefile
+++ trinityrnaseq/Chrysalis/Makefile
@@ -180,6 +180,12 @@
   ifdef MAKEDEPEND_STATUS
     $(warning Done.)
   endif
+  ifeq ($(GPP_MAJOR_VERSION),6)
+       SYS_INCS        = -iquote . $(XERCES_INC)
+  endif
+  ifeq ($(GPP_MAJOR_VERSION),7)
+       SYS_INCS        = -iquote . $(XERCES_INC)
+  endif
 endif
 
 ## This part should be removed before distribution ^^^ ##
