]> granicus.if.org Git - graphviz/commitdiff
disambiguate plugin/webp #includes
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 29 Aug 2020 22:53:29 +0000 (15:53 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 22 Sep 2020 14:55:28 +0000 (07:55 -0700)
Related to #1785.

plugin/webp/Makefile.am
plugin/webp/gvdevice_webp.c
plugin/webp/gvloadimage_webp.c
plugin/webp/gvplugin_webp.c

index 63e6e2fff5ccad450a602853348549b7b7de5517..92004a23f319a9e3dd9a89df89de09f72ea56672 100644 (file)
@@ -2,6 +2,7 @@
 ## Process this file with automake to produce Makefile.in
 
 AM_CPPFLAGS = \
+       -I$(top_srcdir)/lib \
        -I$(top_srcdir)/lib/common \
        -I$(top_srcdir)/lib/pathplan \
        -I$(top_srcdir)/lib/gvc \
index 1b903348943a606134cebbb798a140a2e7e739ce..ac77281415c8bfab4f1a1d76473f5bb488b835fc 100644 (file)
@@ -13,8 +13,8 @@
 
 #include "config.h"
 
-#include "gvplugin_device.h"
-#include "gvio.h"
+#include <gvc/gvplugin_device.h>
+#include <gvc/gvio.h>
 
 #ifdef HAVE_WEBP
 #include "webp/encode.h"
index 5c828290570b19b0583b59df1b88b53ba72bba77..be32fd7b4705f1e4d1e65b67e56b738ac7e36aa1 100644 (file)
@@ -16,8 +16,8 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include "gvplugin_loadimage.h"
-#include "gvio.h"
+#include <gvc/gvplugin_loadimage.h>
+#include <gvc/gvio.h>
 
 #ifdef HAVE_WEBP
 #ifdef HAVE_PANGOCAIRO
index 0aad26cb9c66ed7ce510736cfe31d35880c911f7..b0b1cad3592ecdc86230e248037e9697259f2d78 100644 (file)
@@ -11,7 +11,7 @@
  * Contributors: See CVS logs. Details at http://www.graphviz.org/
  *************************************************************************/
 
-#include "gvplugin.h"
+#include <gvc/gvplugin.h>
 
 extern gvplugin_installed_t gvdevice_webp_types[];
 extern gvplugin_installed_t gvloadimage_webp_types[];