SHA256
1
0
forked from pool/graphviz
graphviz/graphviz-fix-includes.patch
Ismail Dönmez d8cc6f818a Accepting request 213573 from openSUSE:Factory:PowerLE
- graphviz-fix-includes.patch: Use #include "cgraph.h", not <cgraph.h>
  in graphviz/types.h.

OBS-URL: https://build.opensuse.org/request/show/213573
OBS-URL: https://build.opensuse.org/package/show/graphics/graphviz?expand=0&rev=75
2014-01-11 12:05:32 +00:00

14 lines
496 B
Diff

Index: lib/common/types.h.in
===================================================================
--- lib/common/types.h.in.orig 2013-09-07 03:11:41.000000000 +0200
+++ lib/common/types.h.in 2013-12-11 17:12:07.000000000 +0100
@@ -46,7 +46,7 @@ extern "C" {
typedef int (*bsearch_cmpf) (const void *, const void *);
#ifdef WITH_CGRAPH
-#include <cgraph.h>
+#include "cgraph.h"
typedef struct Agraph_s graph_t;
typedef struct Agnode_s node_t;
typedef struct Agedge_s edge_t;