]> granicus.if.org Git - graphviz/commitdiff
remove the need to have lib/circogen in include paths
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 23 Aug 2020 19:11:40 +0000 (12:11 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 5 Oct 2020 14:31:00 +0000 (07:31 -0700)
lib/circogen/block.h
lib/circogen/blockpath.h
lib/circogen/blocktree.h
lib/circogen/circpos.h
lib/circogen/circular.h

index 49d03ab4848d742eca2505a5fa4e7ad2a374f46f..13237688ab76a3c6b390beb91c6e776ce308fe68 100644 (file)
@@ -18,7 +18,7 @@ extern "C" {
 #ifndef BLOCK_H
 #define BLOCK_H
 
-#include  <nodelist.h>
+#include  <circogen/nodelist.h>
 
     typedef struct block block_t;
 
index 7ab227027283ef7d569000c0d5c6080be6ad4f4f..1a422d84f2991fb56995529e8ef0a11a61e673b0 100644 (file)
@@ -18,7 +18,7 @@ extern "C" {
 #ifndef BLOCKPATH_H
 #define BLOCKPATH_H
 
-#include <circular.h>
+#include <circogen/circular.h>
 
     extern nodelist_t *layout_block(Agraph_t * g, block_t * sn, double);
     extern int cmpNodeDegree(Dt_t *, Agnode_t **, Agnode_t **, Dtdisc_t *);
index 454eb12138124faef2b011254345d3cd0bd937de..6308d67efa1713ea7811e26967ccab6f4e7e85cd 100644 (file)
@@ -19,7 +19,7 @@ extern "C" {
 #define BLOCKTREE_H
 
 #include <render.h>
-#include <circular.h>
+#include <circogen/circular.h>
 
     extern block_t *createBlocktree(Agraph_t * g, circ_state * state);
     extern void freeBlocktree(block_t *);
index 558c97af48c4be3728a02a72cc51c83bd80e08a2..6a337956c5dd000643e58c3dd875d6493b466431 100644 (file)
@@ -19,7 +19,7 @@ extern "C" {
 #define CIRCPOS_H
 
 #include <render.h>
-#include <circular.h>
+#include <circogen/circular.h>
 
     extern void circPos(Agraph_t * g, block_t * sn, circ_state *);
 
index f5c02423c04d00437a1f1b9f664cd109758e74ab..042c609c9e9d34d4e0cf8c8e4bac35f17d37738f 100644 (file)
@@ -15,7 +15,7 @@
 #define CIRCULAR_H
 
 #include "render.h"
-#include "block.h"
+#include <circogen/block.h>
 
 typedef struct {
     blocklist_t bl;
@@ -124,7 +124,7 @@ typedef struct {
 
 #define DEGREE(n) (ND_order(n))
 
-#include <circo.h>
+#include <circogen/circo.h>
 
 #ifdef __cplusplus
 extern "C" {