Skip to content
Snippets Groups Projects
Commit 014dd002 authored by Christopher J. Morrone's avatar Christopher J. Morrone
Browse files

AIX has a macro "func_data" that conflicts with func_data variable

names in gtk.h.  This fix undef's the func_data macro before including
gtk.h.
parent d404a4e0
No related branches found
No related tags found
No related merge requests found
...@@ -55,6 +55,9 @@ ...@@ -55,6 +55,9 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#if defined(HAVE_AIX)
#undef func_data
#endif
#include <gtk/gtk.h> #include <gtk/gtk.h>
#include "src/common/bitstring.h" #include "src/common/bitstring.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment