forked from pool/graphviz
d8cc6f818a
- 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
14 lines
496 B
Diff
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;
|