Control: tags -1 + patch This issue is caused by the removal of the symlinks in /usr/lib/jvm/java-8-openjdk-*/include (#760301). It can be fixed by adding $(JAVA_HOME)/include/linux to the include path:
--- a/debian/rules +++ b/debian/rules @@ -14,8 +14,8 @@ DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/buildflags.mk -cflags = -g -Os -I$(JAVA_HOME)/include $(CFLAGS) -cxxflags = -g -Os -I$(JAVA_HOME)/include $(CXXFLAGS) +cflags = -g -Os -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux $(CFLAGS) +cxxflags = -g -Os -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux $(CXXFLAGS) ldflags = $(LDFLAGS) confflags = --prefix=/usr \ -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

