Wireshark-bugs: [Wireshark-bugs] [Bug 13018] abi-compliance-checker isn't finding glib.h in the
Balint Reczey
changed
bug 13018
What |
Removed |
Added |
Status |
UNCONFIRMED
|
CONFIRMED
|
CC |
|
balint@balintreczey.hu
|
Ever confirmed |
|
1
|
Comment # 1
on bug 13018
from Balint Reczey
No, the proper include paths are always collected in abi-descriptor.xml.
I have fixed this step, but now I'm seeing issues with the header files.
I'm trying to fix the headers up, too, but this patch solved the missing header
problem:
diff --git a/Makefile.am.inc b/Makefile.am.inc
index 49c5579..c19ed62 100644
--- a/Makefile.am.inc
+++ b/Makefile.am.inc
@@ -80,8 +80,8 @@ am__v_YACC_0 = @echo " YACC " $@;
$(AM_V_RUNLEX)$(RUNLEX) "$(LEX)" "$(SED)" -o$@ $<
# abi-compliance-checker descriptor
-abi_incdirs = $(subst -I,NEWLINE,$(filter -I%,$(WS_CFLAGS) -I$(abs_top_srcdir)
-I$(abs_srcdir)))
-abi_sysdirs = $(subst -isystem,NEWLINE,$(filter -isystem%,$(WS_CFLAGS)))
+abi_incdirs = $(subst -I,NEWLINE,$(filter -I%,$(AM_CPPFLAGS)
-I$(abs_top_srcdir) -I$(abs_srcdir)))
+abi_sysdirs = $(subst -isystem,NEWLINE,$(filter -isystem%,$(AM_CPPFLAGS)))
abi_includes = $(abi_incdirs) $(abi_sysdirs)
abi-descriptor.xml: ../abi-descriptor.template
$(AM_V_SED)$(SED) \
You are receiving this mail because:
- You are watching all bug changes.